From c127d1ce7ca0b0f763a6a7935f1cc73c40286623 Mon Sep 17 00:00:00 2001 From: Caleb White Date: Wed, 21 Feb 2024 12:23:17 -0600 Subject: [PATCH] chore: generate --- php/src/grammar.json | 139 +- php/src/parser.c | 111817 +++++++++++++++++------------------ php_only/src/grammar.json | 139 +- php_only/src/parser.c | 16571 +++--- 4 files changed, 64327 insertions(+), 64339 deletions(-) diff --git a/php/src/grammar.json b/php/src/grammar.json index 6947f67c..35c4efe0 100644 --- a/php/src/grammar.json +++ b/php/src/grammar.json @@ -98,8 +98,15 @@ } }, { - "type": "PATTERN", - "value": "[^\\s<][^<]*" + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\\s<][^<]*" + } + } } ] } @@ -7332,10 +7339,14 @@ "string_value": { "type": "TOKEN", "content": { - "type": "REPEAT1", + "type": "PREC", + "value": 1, "content": { - "type": "PATTERN", - "value": "\\\\?[^'\\\\]" + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "\\\\?[^'\\\\]" + } } } }, @@ -9019,71 +9030,67 @@ "comment": { "type": "TOKEN", "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "//" - }, - { - "type": "PATTERN", - "value": "#[^?\\[?\\r?\\n]" - } - ] - }, - { - "type": "REPEAT", - "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { "type": "PATTERN", - "value": "[^?\\r?\\n]|\\?[^>\\r\\n]" + "value": "#[^?\\[?\\r?\\n]" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\?\\r?\\n" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": "#" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/*" - }, - { + ] + }, + { + "type": "REPEAT", + "content": { "type": "PATTERN", - "value": "[^*]*\\*+([^/*][^*]*\\*+)*" - }, - { - "type": "STRING", - "value": "/" + "value": "[^?\\r?\\n]|\\?[^>\\r\\n]" } - ] - } - ] - } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "\\?\\r?\\n" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { + "type": "PATTERN", + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + { + "type": "STRING", + "value": "/" + } + ] + } + ] } }, "_semicolon": { diff --git a/php/src/parser.c b/php/src/parser.c index 41d88e2d..20edccf0 100644 --- a/php/src/parser.c +++ b/php/src/parser.c @@ -6683,91 +6683,91 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(78); - if (lookahead == '!') ADVANCE(149); - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(288); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '%') ADVANCE(242); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '\'') ADVANCE(204); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(237); - if (lookahead == '+') ADVANCE(141); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(144); - if (lookahead == '.') ADVANCE(235); - if (lookahead == '/') ADVANCE(240); - if (lookahead == '0') ADVANCE(131); - if (lookahead == ':') ADVANCE(108); - if (lookahead == ';') ADVANCE(95); - if (lookahead == '<') ADVANCE(223); - if (lookahead == '=') ADVANCE(101); - if (lookahead == '>') ADVANCE(224); - if (lookahead == '?') ADVANCE(113); - if (lookahead == '@') ADVANCE(150); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(104); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(282); - if (lookahead == '`') ADVANCE(205); - if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(119); - if (lookahead == '}') ADVANCE(106); - if (lookahead == '~') ADVANCE(147); + if (eof) ADVANCE(76); + if (lookahead == '!') ADVANCE(145); + if (lookahead == '"') ADVANCE(196); + if (lookahead == '#') ADVANCE(284); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '%') ADVANCE(238); + if (lookahead == '&') ADVANCE(94); + if (lookahead == '\'') ADVANCE(200); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '*') ADVANCE(233); + if (lookahead == '+') ADVANCE(137); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(140); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(236); + if (lookahead == '0') ADVANCE(127); + if (lookahead == ':') ADVANCE(104); + if (lookahead == ';') ADVANCE(91); + if (lookahead == '<') ADVANCE(219); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(220); + if (lookahead == '?') ADVANCE(109); + if (lookahead == '@') ADVANCE(146); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(100); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(210); + if (lookahead == '_') ADVANCE(278); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '{') ADVANCE(101); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(102); + if (lookahead == '~') ADVANCE(143); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(270); + lookahead == 'a') ADVANCE(266); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(243); + lookahead == 'b') ADVANCE(239); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); + lookahead == 'e') ADVANCE(242); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(247); + lookahead == 'f') ADVANCE(243); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(265); + lookahead == 'i') ADVANCE(261); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(280); + lookahead == 'n') ADVANCE(276); if (lookahead == 'S' || - lookahead == 's') ADVANCE(273); + lookahead == 's') ADVANCE(269); if (lookahead == 'T' || - lookahead == 't') ADVANCE(269); + lookahead == 't') ADVANCE(265); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(263); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + lookahead == 'u') ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(129); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(74) + lookahead == 65279) SKIP(70) if (('C' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(285); + if (lookahead == '\n') ADVANCE(281); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(285); + if (lookahead == '\n') ADVANCE(281); if (lookahead == '\r') ADVANCE(1); if (lookahead != 0 && - lookahead != '>') ADVANCE(286); + lookahead != '>') ADVANCE(282); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(201); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '<') ADVANCE(45); - if (lookahead == '?') ADVANCE(41); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '{') ADVANCE(105); + if (lookahead == '\n') ADVANCE(197); + if (lookahead == '\r') ADVANCE(197); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '-') ADVANCE(35); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '<') ADVANCE(41); + if (lookahead == '?') ADVANCE(37); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == '{') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6776,18 +6776,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(4) END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(201); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '<') ADVANCE(45); - if (lookahead == '?') ADVANCE(41); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(46); - if (lookahead == '{') ADVANCE(105); + if (lookahead == '\n') ADVANCE(197); + if (lookahead == '\r') ADVANCE(197); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '-') ADVANCE(35); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '<') ADVANCE(41); + if (lookahead == '?') ADVANCE(37); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '{') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6796,11 +6796,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(4) END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(202); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '?') ADVANCE(43); + if (lookahead == '\n') ADVANCE(198); + if (lookahead == '\r') ADVANCE(198); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '?') ADVANCE(39); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6809,53 +6809,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(5) END_STATE(); case 6: - if (lookahead == '!') ADVANCE(149); - if (lookahead == '"') ADVANCE(186); - if (lookahead == '#') ADVANCE(288); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '%') ADVANCE(241); - if (lookahead == '&') ADVANCE(97); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(238); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(235); - if (lookahead == '/') ADVANCE(239); - if (lookahead == '0') ADVANCE(131); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(95); - if (lookahead == '<') ADVANCE(220); - if (lookahead == '=') ADVANCE(38); - if (lookahead == '>') ADVANCE(225); - if (lookahead == '?') ADVANCE(117); - if (lookahead == '@') ADVANCE(150); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(213); - if (lookahead == '_') ADVANCE(282); - if (lookahead == '`') ADVANCE(205); - if (lookahead == '|') ADVANCE(120); - if (lookahead == '}') ADVANCE(106); - if (lookahead == '~') ADVANCE(147); + if (lookahead == '!') ADVANCE(145); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(284); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '%') ADVANCE(237); + if (lookahead == '&') ADVANCE(93); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '*') ADVANCE(234); + if (lookahead == '+') ADVANCE(136); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(139); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(235); + if (lookahead == '0') ADVANCE(127); + if (lookahead == ':') ADVANCE(103); + if (lookahead == ';') ADVANCE(91); + if (lookahead == '<') ADVANCE(216); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(221); + if (lookahead == '?') ADVANCE(113); + if (lookahead == '@') ADVANCE(146); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(99); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(209); + if (lookahead == '_') ADVANCE(278); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(102); + if (lookahead == '~') ADVANCE(143); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(270); + lookahead == 'a') ADVANCE(266); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(244); + lookahead == 'b') ADVANCE(240); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); + lookahead == 'e') ADVANCE(242); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(248); + lookahead == 'f') ADVANCE(244); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(280); + lookahead == 'n') ADVANCE(276); if (lookahead == 'S' || - lookahead == 's') ADVANCE(278); + lookahead == 's') ADVANCE(274); if (lookahead == 'T' || - lookahead == 't') ADVANCE(269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + lookahead == 't') ADVANCE(265); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(129); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6864,47 +6864,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(6) if (('C' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(148); - if (lookahead == '"') ADVANCE(186); - if (lookahead == '#') ADVANCE(288); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(127); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '0') ADVANCE(131); - if (lookahead == '<') ADVANCE(36); - if (lookahead == '?') ADVANCE(43); - if (lookahead == '@') ADVANCE(150); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '_') ADVANCE(282); - if (lookahead == '`') ADVANCE(205); - if (lookahead == '~') ADVANCE(147); + if (lookahead == '!') ADVANCE(144); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(284); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '+') ADVANCE(136); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(139); + if (lookahead == '.') ADVANCE(123); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(127); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '?') ADVANCE(39); + if (lookahead == '@') ADVANCE(146); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(99); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '_') ADVANCE(278); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '~') ADVANCE(143); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(270); + lookahead == 'a') ADVANCE(266); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(244); + lookahead == 'b') ADVANCE(240); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); + lookahead == 'e') ADVANCE(242); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(248); + lookahead == 'f') ADVANCE(244); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(280); + lookahead == 'n') ADVANCE(276); if (lookahead == 'S' || - lookahead == 's') ADVANCE(278); + lookahead == 's') ADVANCE(274); if (lookahead == 'T' || - lookahead == 't') ADVANCE(269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + lookahead == 't') ADVANCE(265); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(129); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6914,47 +6914,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(148); - if (lookahead == '"') ADVANCE(186); - if (lookahead == '#') ADVANCE(288); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '(') ADVANCE(110); - if (lookahead == '+') ADVANCE(140); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '0') ADVANCE(131); - if (lookahead == '<') ADVANCE(36); - if (lookahead == '?') ADVANCE(43); - if (lookahead == '@') ADVANCE(150); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == '_') ADVANCE(282); - if (lookahead == '`') ADVANCE(205); - if (lookahead == '~') ADVANCE(147); + if (lookahead == '!') ADVANCE(144); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(284); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '(') ADVANCE(106); + if (lookahead == '+') ADVANCE(136); + if (lookahead == '-') ADVANCE(139); + if (lookahead == '.') ADVANCE(124); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(127); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '?') ADVANCE(39); + if (lookahead == '@') ADVANCE(146); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(99); + if (lookahead == '_') ADVANCE(278); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '~') ADVANCE(143); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(270); + lookahead == 'a') ADVANCE(266); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(243); + lookahead == 'b') ADVANCE(239); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); + lookahead == 'e') ADVANCE(242); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(247); + lookahead == 'f') ADVANCE(243); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(265); + lookahead == 'i') ADVANCE(261); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(280); + lookahead == 'n') ADVANCE(276); if (lookahead == 'S' || - lookahead == 's') ADVANCE(273); + lookahead == 's') ADVANCE(269); if (lookahead == 'T' || - lookahead == 't') ADVANCE(269); + lookahead == 't') ADVANCE(265); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(263); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + lookahead == 'u') ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(129); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6964,181 +6964,194 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(37); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '%') ADVANCE(241); - if (lookahead == '&') ADVANCE(97); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(238); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(146); - if (lookahead == '.') ADVANCE(234); - if (lookahead == '/') ADVANCE(239); - if (lookahead == ':') ADVANCE(108); - if (lookahead == ';') ADVANCE(95); - if (lookahead == '<') ADVANCE(222); - if (lookahead == '=') ADVANCE(38); - if (lookahead == '>') ADVANCE(225); - if (lookahead == '?') ADVANCE(115); - if (lookahead == '[') ADVANCE(169); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(213); - if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(120); - if (lookahead == '}') ADVANCE(106); + if (lookahead == '!') ADVANCE(33); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '%') ADVANCE(237); + if (lookahead == '&') ADVANCE(93); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '*') ADVANCE(234); + if (lookahead == '+') ADVANCE(135); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '.') ADVANCE(230); + if (lookahead == '/') ADVANCE(235); + if (lookahead == ':') ADVANCE(104); + if (lookahead == ';') ADVANCE(91); + if (lookahead == '<') ADVANCE(218); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(221); + if (lookahead == '?') ADVANCE(111); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(209); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '{') ADVANCE(101); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(102); if (lookahead == 'S' || - lookahead == 's') ADVANCE(278); + lookahead == 's') ADVANCE(274); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(9) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || + lookahead == 65279) SKIP(10) + if (('A' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(37); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '%') ADVANCE(242); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(237); - if (lookahead == '+') ADVANCE(141); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(144); - if (lookahead == '.') ADVANCE(236); - if (lookahead == '/') ADVANCE(240); - if (lookahead == ':') ADVANCE(108); - if (lookahead == ';') ADVANCE(95); - if (lookahead == '<') ADVANCE(221); - if (lookahead == '=') ADVANCE(101); - if (lookahead == '>') ADVANCE(224); - if (lookahead == '?') ADVANCE(114); - if (lookahead == '[') ADVANCE(169); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(119); - if (lookahead == '}') ADVANCE(106); + if (lookahead == '!') ADVANCE(33); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '%') ADVANCE(237); + if (lookahead == '&') ADVANCE(93); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '*') ADVANCE(234); + if (lookahead == '+') ADVANCE(135); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '.') ADVANCE(230); + if (lookahead == '/') ADVANCE(235); + if (lookahead == ':') ADVANCE(104); + if (lookahead == ';') ADVANCE(91); + if (lookahead == '<') ADVANCE(218); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(221); + if (lookahead == '?') ADVANCE(111); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(209); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '{') ADVANCE(101); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(102); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(274); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(10) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || + if (('A' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(37); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '%') ADVANCE(241); - if (lookahead == '&') ADVANCE(97); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(238); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(145); - if (lookahead == '.') ADVANCE(234); - if (lookahead == '/') ADVANCE(239); - if (lookahead == ':') ADVANCE(108); - if (lookahead == ';') ADVANCE(95); - if (lookahead == '<') ADVANCE(222); - if (lookahead == '=') ADVANCE(38); - if (lookahead == '>') ADVANCE(225); - if (lookahead == '?') ADVANCE(115); - if (lookahead == '[') ADVANCE(169); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(213); - if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(120); - if (lookahead == '}') ADVANCE(106); + if (lookahead == '!') ADVANCE(33); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '%') ADVANCE(237); + if (lookahead == '&') ADVANCE(93); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '*') ADVANCE(234); + if (lookahead == '+') ADVANCE(135); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '.') ADVANCE(230); + if (lookahead == '/') ADVANCE(235); + if (lookahead == '0') ADVANCE(132); + if (lookahead == ':') ADVANCE(104); + if (lookahead == ';') ADVANCE(91); + if (lookahead == '<') ADVANCE(218); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(221); + if (lookahead == '?') ADVANCE(111); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(99); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(209); + if (lookahead == '{') ADVANCE(101); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(102); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(11) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || + if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(37); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '%') ADVANCE(241); - if (lookahead == '&') ADVANCE(97); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(238); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(146); - if (lookahead == '.') ADVANCE(234); - if (lookahead == '/') ADVANCE(239); - if (lookahead == ':') ADVANCE(108); - if (lookahead == ';') ADVANCE(95); - if (lookahead == '<') ADVANCE(222); - if (lookahead == '=') ADVANCE(101); - if (lookahead == '>') ADVANCE(225); - if (lookahead == '?') ADVANCE(115); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(213); - if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(120); - if (lookahead == '}') ADVANCE(106); + if (lookahead == '!') ADVANCE(33); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '%') ADVANCE(237); + if (lookahead == '&') ADVANCE(93); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '*') ADVANCE(234); + if (lookahead == '+') ADVANCE(135); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(138); + if (lookahead == '.') ADVANCE(230); + if (lookahead == '/') ADVANCE(235); + if (lookahead == ':') ADVANCE(103); + if (lookahead == ';') ADVANCE(91); + if (lookahead == '<') ADVANCE(218); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(221); + if (lookahead == '?') ADVANCE(113); + if (lookahead == '\\') ADVANCE(99); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(209); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(102); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(12) - if (('A' <= lookahead && lookahead <= '_') || + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(37); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '%') ADVANCE(241); - if (lookahead == '&') ADVANCE(97); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(238); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(234); - if (lookahead == '/') ADVANCE(239); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(95); - if (lookahead == '<') ADVANCE(222); - if (lookahead == '=') ADVANCE(38); - if (lookahead == '>') ADVANCE(225); - if (lookahead == '?') ADVANCE(117); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(213); - if (lookahead == '|') ADVANCE(120); - if (lookahead == '}') ADVANCE(106); + if (lookahead == '!') ADVANCE(33); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '%') ADVANCE(237); + if (lookahead == '&') ADVANCE(93); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '*') ADVANCE(234); + if (lookahead == '+') ADVANCE(136); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(141); + if (lookahead == '.') ADVANCE(230); + if (lookahead == '/') ADVANCE(235); + if (lookahead == ':') ADVANCE(104); + if (lookahead == ';') ADVANCE(91); + if (lookahead == '<') ADVANCE(218); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(221); + if (lookahead == '?') ADVANCE(111); + if (lookahead == '[') ADVANCE(165); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(209); + if (lookahead == '{') ADVANCE(101); + if (lookahead == '|') ADVANCE(116); + if (lookahead == '}') ADVANCE(102); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7149,933 +7162,873 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(200); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '\'') ADVANCE(204); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(32); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '0') ADVANCE(136); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(95); - if (lookahead == '=') ADVANCE(40); - if (lookahead == '?') ADVANCE(116); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == '{') ADVANCE(105); - if (lookahead == '}') ADVANCE(106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(22) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + if (lookahead == '"') ADVANCE(181); + if (lookahead == '\'') ADVANCE(183); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(185); - if (lookahead == '\'') ADVANCE(187); - END_STATE(); - case 16: - if (lookahead == '"') ADVANCE(186); - if (lookahead == '#') ADVANCE(288); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '(') ADVANCE(110); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '<') ADVANCE(36); - if (lookahead == '?') ADVANCE(43); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(284); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '(') ADVANCE(106); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '?') ADVANCE(39); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(99); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(270); + lookahead == 'a') ADVANCE(266); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(244); + lookahead == 'b') ADVANCE(240); if (lookahead == 'S' || - lookahead == 's') ADVANCE(278); + lookahead == 's') ADVANCE(274); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(16) + lookahead == 65279) SKIP(15) if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); - case 17: - if (lookahead == '"') ADVANCE(186); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '0') ADVANCE(136); - if (lookahead == ':') ADVANCE(108); - if (lookahead == '<') ADVANCE(36); - if (lookahead == '?') ADVANCE(31); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '{') ADVANCE(105); - if (lookahead == '}') ADVANCE(106); + case 16: + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '(') ADVANCE(106); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(132); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '?') ADVANCE(39); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(99); + if (lookahead == '}') ADVANCE(102); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(270); + lookahead == 'a') ADVANCE(266); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(244); + lookahead == 'b') ADVANCE(240); if (lookahead == 'S' || - lookahead == 's') ADVANCE(278); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); + lookahead == 's') ADVANCE(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(17) + lookahead == 65279) SKIP(16) if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); - END_STATE(); - case 18: - if (lookahead == '"') ADVANCE(186); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '0') ADVANCE(131); - if (lookahead == '<') ADVANCE(36); - if (lookahead == '?') ADVANCE(43); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '_') ADVANCE(67); - if (lookahead == '`') ADVANCE(205); - if (lookahead == '{') ADVANCE(105); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(15); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(50); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(60); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(57); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(19) + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); - case 19: - if (lookahead == '"') ADVANCE(186); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '0') ADVANCE(131); - if (lookahead == '<') ADVANCE(36); - if (lookahead == '?') ADVANCE(43); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(46); - if (lookahead == '_') ADVANCE(67); - if (lookahead == '`') ADVANCE(205); - if (lookahead == '{') ADVANCE(105); + case 17: + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '.') ADVANCE(124); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(127); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '?') ADVANCE(39); + if (lookahead == '_') ADVANCE(63); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(15); + lookahead == 'b') ADVANCE(14); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); + lookahead == 'e') ADVANCE(45); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(50); + lookahead == 'f') ADVANCE(46); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(60); + lookahead == 'n') ADVANCE(56); if (lookahead == 'T' || - lookahead == 't') ADVANCE(57); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + lookahead == 't') ADVANCE(53); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(129); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(19) + lookahead == 65279) SKIP(17) END_STATE(); - case 20: - if (lookahead == '#') ADVANCE(288); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '.') ADVANCE(32); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '?') ADVANCE(116); - if (lookahead == '\\') ADVANCE(103); + case 18: + if (lookahead == '#') ADVANCE(284); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '.') ADVANCE(28); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '?') ADVANCE(112); + if (lookahead == '\\') ADVANCE(99); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(20) + lookahead == 65279) SKIP(18) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); - case 21: - if (lookahead == '#') ADVANCE(288); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '?') ADVANCE(43); - if (lookahead == '}') ADVANCE(106); + case 19: + if (lookahead == '#') ADVANCE(284); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '?') ADVANCE(39); + if (lookahead == '}') ADVANCE(102); if (lookahead == 'S' || - lookahead == 's') ADVANCE(278); + lookahead == 's') ADVANCE(274); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(21) + lookahead == 65279) SKIP(19) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); - case 22: - if (lookahead == '#') ADVANCE(289); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(32); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '0') ADVANCE(136); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(95); - if (lookahead == '=') ADVANCE(40); - if (lookahead == '?') ADVANCE(116); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == '{') ADVANCE(105); - if (lookahead == '}') ADVANCE(106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); + case 20: + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '(') ADVANCE(106); + if (lookahead == '.') ADVANCE(28); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '?') ADVANCE(112); + if (lookahead == '\\') ADVANCE(99); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(22) + lookahead == 65279) SKIP(20) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); - case 23: - if (lookahead == '#') ADVANCE(289); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '<') ADVANCE(45); - if (lookahead == '?') ADVANCE(41); - if (lookahead == '\\') ADVANCE(64); - if (lookahead == '{') ADVANCE(105); + case 21: + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '<') ADVANCE(41); + if (lookahead == '?') ADVANCE(37); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == '{') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(24) + lookahead == 65279) SKIP(22) END_STATE(); - case 24: - if (lookahead == '#') ADVANCE(289); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '<') ADVANCE(45); - if (lookahead == '?') ADVANCE(41); - if (lookahead == '\\') ADVANCE(46); - if (lookahead == '{') ADVANCE(105); + case 22: + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '<') ADVANCE(41); + if (lookahead == '?') ADVANCE(37); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '{') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(24) + lookahead == 65279) SKIP(22) END_STATE(); - case 25: - if (lookahead == '#') ADVANCE(289); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(27); - if (lookahead == ':') ADVANCE(108); - if (lookahead == '?') ADVANCE(31); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == '{') ADVANCE(105); + case 23: + if (lookahead == '#') ADVANCE(193); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '/') ADVANCE(188); + if (lookahead == '?') ADVANCE(191); + if (lookahead == '\\') ADVANCE(44); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(25) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + lookahead == 65279) ADVANCE(187); + if (lookahead != 0) ADVANCE(194); + END_STATE(); + case 24: + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(282); + END_STATE(); + case 25: + if (lookahead == '*') ADVANCE(25); + if (lookahead == '/') ADVANCE(281); + if (lookahead != 0) ADVANCE(26); END_STATE(); case 26: - if (lookahead == '#') ADVANCE(197); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '/') ADVANCE(192); - if (lookahead == '?') ADVANCE(195); - if (lookahead == '\\') ADVANCE(48); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(191); - if (lookahead != 0) ADVANCE(198); + if (lookahead == '*') ADVANCE(25); + if (lookahead != 0) ADVANCE(26); END_STATE(); case 27: - if (lookahead == '*') ADVANCE(29); - if (lookahead == '/') ADVANCE(286); + if (lookahead == '*') ADVANCE(189); + if (lookahead == '\'' || + lookahead == '\\') ADVANCE(26); + if (lookahead != 0) ADVANCE(190); END_STATE(); case 28: - if (lookahead == '*') ADVANCE(28); - if (lookahead == '/') ADVANCE(285); - if (lookahead != 0) ADVANCE(29); + if (lookahead == '.') ADVANCE(30); END_STATE(); case 29: - if (lookahead == '*') ADVANCE(28); - if (lookahead != 0) ADVANCE(29); + if (lookahead == '.') ADVANCE(124); + if (lookahead == '_') ADVANCE(63); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(29); END_STATE(); case 30: - if (lookahead == '*') ADVANCE(193); - if (lookahead == '\'' || - lookahead == '\\') ADVANCE(29); - if (lookahead != 0) ADVANCE(194); + if (lookahead == '.') ADVANCE(108); END_STATE(); case 31: - if (lookahead == '-') ADVANCE(42); - if (lookahead == '>') ADVANCE(81); + if (lookahead == '<') ADVANCE(195); END_STATE(); case 32: - if (lookahead == '.') ADVANCE(34); + if (lookahead == '<') ADVANCE(31); END_STATE(); case 33: - if (lookahead == '.') ADVANCE(128); - if (lookahead == '_') ADVANCE(67); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (lookahead == '=') ADVANCE(212); END_STATE(); case 34: - if (lookahead == '.') ADVANCE(112); + if (lookahead == '=') ADVANCE(211); + if (lookahead == '>') ADVANCE(105); END_STATE(); case 35: - if (lookahead == '<') ADVANCE(199); + if (lookahead == '>') ADVANCE(163); END_STATE(); case 36: - if (lookahead == '<') ADVANCE(35); + if (lookahead == '>') ADVANCE(105); END_STATE(); case 37: - if (lookahead == '=') ADVANCE(216); + if (lookahead == '>') ADVANCE(180); END_STATE(); case 38: - if (lookahead == '=') ADVANCE(215); - if (lookahead == '>') ADVANCE(109); + if (lookahead == '>') ADVANCE(164); END_STATE(); case 39: - if (lookahead == '>') ADVANCE(167); + if (lookahead == '>') ADVANCE(79); END_STATE(); case 40: - if (lookahead == '>') ADVANCE(109); + if (lookahead == '?') ADVANCE(78); END_STATE(); case 41: - if (lookahead == '>') ADVANCE(184); + if (lookahead == '?') ADVANCE(179); END_STATE(); case 42: - if (lookahead == '>') ADVANCE(168); + if (lookahead == 'u') ADVANCE(176); END_STATE(); case 43: - if (lookahead == '>') ADVANCE(81); + if (lookahead == '}') ADVANCE(172); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 44: - if (lookahead == '?') ADVANCE(80); + if (lookahead == '\'' || + lookahead == '\\') ADVANCE(184); + if (lookahead != 0) ADVANCE(194); END_STATE(); case 45: - if (lookahead == '?') ADVANCE(183); + if (lookahead == '+' || + lookahead == '-') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); END_STATE(); case 46: - if (lookahead == 'u') ADVANCE(180); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(49); END_STATE(); case 47: - if (lookahead == '}') ADVANCE(176); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(169); END_STATE(); case 48: - if (lookahead == '\'' || - lookahead == '\\') ADVANCE(188); - if (lookahead != 0) ADVANCE(198); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(52); END_STATE(); case 49: - if (lookahead == '+' || - lookahead == '-') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(54); END_STATE(); case 50: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(53); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(167); END_STATE(); case 51: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(173); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(50); END_STATE(); case 52: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(56); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(77); END_STATE(); case 53: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(58); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(55); END_STATE(); case 54: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(171); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(47); END_STATE(); case 55: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(54); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(47); END_STATE(); case 56: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(79); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(51); END_STATE(); case 57: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(59); + if (lookahead == '0' || + lookahead == '1') ADVANCE(130); END_STATE(); case 58: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(51); + if (lookahead == '8' || + lookahead == '9') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(128); END_STATE(); case 59: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(133); END_STATE(); case 60: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(55); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(172); + if (lookahead == 'u') ADVANCE(177); + if (lookahead == 'x') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(174); END_STATE(); case 61: - if (lookahead == '0' || - lookahead == '1') ADVANCE(134); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); END_STATE(); case 62: - if (lookahead == '8' || - lookahead == '9') ADVANCE(33); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); case 63: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(29); END_STATE(); case 64: - if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(176); - if (lookahead == 'u') ADVANCE(181); - if (lookahead == 'x') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); END_STATE(); case 65: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(134); END_STATE(); case 66: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); - END_STATE(); - case 67: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); - END_STATE(); - case 68: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); - END_STATE(); - case 69: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(138); - END_STATE(); - case 70: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(131); END_STATE(); - case 71: + case 67: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(179); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(175); END_STATE(); - case 72: + case 68: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); - case 73: + case 69: if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(198); + lookahead != '\\') ADVANCE(194); END_STATE(); - case 74: - if (eof) ADVANCE(78); - if (lookahead == '!') ADVANCE(149); - if (lookahead == '"') ADVANCE(186); - if (lookahead == '#') ADVANCE(288); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '%') ADVANCE(242); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(237); - if (lookahead == '+') ADVANCE(141); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(144); - if (lookahead == '.') ADVANCE(235); - if (lookahead == '/') ADVANCE(240); - if (lookahead == '0') ADVANCE(131); - if (lookahead == ':') ADVANCE(108); - if (lookahead == ';') ADVANCE(95); - if (lookahead == '<') ADVANCE(223); - if (lookahead == '=') ADVANCE(101); - if (lookahead == '>') ADVANCE(224); - if (lookahead == '?') ADVANCE(113); - if (lookahead == '@') ADVANCE(150); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(104); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(214); - if (lookahead == '_') ADVANCE(282); - if (lookahead == '`') ADVANCE(205); - if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(119); - if (lookahead == '}') ADVANCE(106); - if (lookahead == '~') ADVANCE(147); + case 70: + if (eof) ADVANCE(76); + if (lookahead == '!') ADVANCE(145); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(284); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '%') ADVANCE(238); + if (lookahead == '&') ADVANCE(94); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '*') ADVANCE(233); + if (lookahead == '+') ADVANCE(137); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(140); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(236); + if (lookahead == '0') ADVANCE(127); + if (lookahead == ':') ADVANCE(104); + if (lookahead == ';') ADVANCE(91); + if (lookahead == '<') ADVANCE(219); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(220); + if (lookahead == '?') ADVANCE(109); + if (lookahead == '@') ADVANCE(146); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(100); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(210); + if (lookahead == '_') ADVANCE(278); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '{') ADVANCE(101); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(102); + if (lookahead == '~') ADVANCE(143); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(270); + lookahead == 'a') ADVANCE(266); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(243); + lookahead == 'b') ADVANCE(239); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); + lookahead == 'e') ADVANCE(242); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(247); + lookahead == 'f') ADVANCE(243); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(265); + lookahead == 'i') ADVANCE(261); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(280); + lookahead == 'n') ADVANCE(276); if (lookahead == 'S' || - lookahead == 's') ADVANCE(273); + lookahead == 's') ADVANCE(269); if (lookahead == 'T' || - lookahead == 't') ADVANCE(269); + lookahead == 't') ADVANCE(265); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(263); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + lookahead == 'u') ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(129); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(74) + lookahead == 65279) SKIP(70) if (('C' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); - case 75: - if (eof) ADVANCE(78); - if (lookahead == '!') ADVANCE(148); - if (lookahead == '"') ADVANCE(186); - if (lookahead == '#') ADVANCE(288); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '0') ADVANCE(131); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(95); - if (lookahead == '<') ADVANCE(36); - if (lookahead == '=') ADVANCE(40); - if (lookahead == '?') ADVANCE(43); - if (lookahead == '@') ADVANCE(150); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '_') ADVANCE(282); - if (lookahead == '`') ADVANCE(205); - if (lookahead == '{') ADVANCE(105); - if (lookahead == '}') ADVANCE(106); - if (lookahead == '~') ADVANCE(147); + case 71: + if (eof) ADVANCE(76); + if (lookahead == '!') ADVANCE(144); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(284); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '+') ADVANCE(136); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(139); + if (lookahead == '.') ADVANCE(124); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(127); + if (lookahead == ':') ADVANCE(103); + if (lookahead == ';') ADVANCE(91); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '=') ADVANCE(36); + if (lookahead == '?') ADVANCE(39); + if (lookahead == '@') ADVANCE(146); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(99); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '_') ADVANCE(278); + if (lookahead == '`') ADVANCE(201); + if (lookahead == '{') ADVANCE(101); + if (lookahead == '}') ADVANCE(102); + if (lookahead == '~') ADVANCE(143); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(270); + lookahead == 'a') ADVANCE(266); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(244); + lookahead == 'b') ADVANCE(240); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); + lookahead == 'e') ADVANCE(242); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(248); + lookahead == 'f') ADVANCE(244); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(280); + lookahead == 'n') ADVANCE(276); if (lookahead == 'S' || - lookahead == 's') ADVANCE(278); + lookahead == 's') ADVANCE(274); if (lookahead == 'T' || - lookahead == 't') ADVANCE(269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + lookahead == 't') ADVANCE(265); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(129); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(75) + lookahead == 65279) SKIP(71) if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); - case 76: - if (eof) ADVANCE(78); - if (lookahead == '"') ADVANCE(186); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '\'') ADVANCE(182); - if (lookahead == '(') ADVANCE(110); - if (lookahead == ')') ADVANCE(111); - if (lookahead == ',') ADVANCE(100); - if (lookahead == '.') ADVANCE(32); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '0') ADVANCE(136); - if (lookahead == ':') ADVANCE(108); - if (lookahead == ';') ADVANCE(95); - if (lookahead == '<') ADVANCE(44); - if (lookahead == '=') ADVANCE(102); - if (lookahead == '?') ADVANCE(116); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '{') ADVANCE(105); - if (lookahead == '|') ADVANCE(118); - if (lookahead == '}') ADVANCE(106); + case 72: + if (eof) ADVANCE(76); + if (lookahead == '!') ADVANCE(33); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '%') ADVANCE(238); + if (lookahead == '&') ADVANCE(94); + if (lookahead == '\'') ADVANCE(178); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '*') ADVANCE(233); + if (lookahead == '+') ADVANCE(137); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(140); + if (lookahead == '.') ADVANCE(232); + if (lookahead == '/') ADVANCE(236); + if (lookahead == '0') ADVANCE(132); + if (lookahead == ':') ADVANCE(104); + if (lookahead == ';') ADVANCE(91); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(220); + if (lookahead == '?') ADVANCE(110); + if (lookahead == '[') ADVANCE(165); + if (lookahead == '\\') ADVANCE(99); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '^') ADVANCE(210); + if (lookahead == '{') ADVANCE(101); + if (lookahead == '|') ADVANCE(115); + if (lookahead == '}') ADVANCE(102); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(72) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || + (128 <= lookahead && lookahead <= 55295) || + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); + END_STATE(); + case 73: + if (eof) ADVANCE(76); + if (lookahead == '"') ADVANCE(196); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '\'') ADVANCE(200); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '.') ADVANCE(28); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '=') ADVANCE(98); + if (lookahead == '?') ADVANCE(112); + if (lookahead == '\\') ADVANCE(99); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '{') ADVANCE(101); + if (lookahead == '|') ADVANCE(114); if (lookahead == 'S' || - lookahead == 's') ADVANCE(278); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); + lookahead == 's') ADVANCE(274); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(76) + lookahead == 65279) SKIP(75) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); - case 77: - if (eof) ADVANCE(78); - if (lookahead == '#') ADVANCE(93); - if (lookahead == '/') ADVANCE(88); - if (lookahead == '<') ADVANCE(84); - if (lookahead == '?') ADVANCE(91); + case 74: + if (eof) ADVANCE(76); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '/') ADVANCE(84); + if (lookahead == '<') ADVANCE(80); + if (lookahead == '?') ADVANCE(87); if (lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(87); + lookahead == 65279) ADVANCE(83); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(77) - if (lookahead != 0) ADVANCE(94); + lookahead == ' ') SKIP(74) + if (lookahead != 0) ADVANCE(90); END_STATE(); - case 78: + case 75: + if (eof) ADVANCE(76); + if (lookahead == '#') ADVANCE(285); + if (lookahead == '$') ADVANCE(202); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '(') ADVANCE(106); + if (lookahead == ')') ADVANCE(107); + if (lookahead == '.') ADVANCE(28); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '=') ADVANCE(98); + if (lookahead == '?') ADVANCE(112); + if (lookahead == '\\') ADVANCE(99); + if (lookahead == ']') ADVANCE(166); + if (lookahead == '{') ADVANCE(101); + if (lookahead == '|') ADVANCE(114); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(274); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(75) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (128 <= lookahead && lookahead <= 55295) || + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(280); + END_STATE(); + case 76: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 79: + case 77: ACCEPT_TOKEN(sym_php_tag); END_STATE(); - case 80: + case 78: ACCEPT_TOKEN(sym_php_tag); - if (lookahead == '=') ADVANCE(79); + if (lookahead == '=') ADVANCE(77); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(52); + lookahead == 'p') ADVANCE(48); END_STATE(); - case 81: - ACCEPT_TOKEN(anon_sym_QMARK_GT); - END_STATE(); - case 82: - ACCEPT_TOKEN(anon_sym_QMARK_GT); - if (lookahead == '\\') ADVANCE(73); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(198); - END_STATE(); - case 83: + case 79: ACCEPT_TOKEN(anon_sym_QMARK_GT); - if (lookahead != 0 && - lookahead != '<') ADVANCE(94); END_STATE(); - case 84: + case 80: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '?') ADVANCE(80); + if (lookahead == '?') ADVANCE(78); END_STATE(); - case 85: + case 81: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(94); - if (lookahead == '\r') ADVANCE(86); - if (lookahead == '>') ADVANCE(94); + if (lookahead == '\n') ADVANCE(90); + if (lookahead == '\r') ADVANCE(82); + if (lookahead == '>') ADVANCE(90); if (lookahead != 0 && - lookahead != '<') ADVANCE(92); + lookahead != '<') ADVANCE(88); END_STATE(); - case 86: + case 82: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(94); + if (lookahead == '\n') ADVANCE(90); if (lookahead != 0 && - lookahead != '<') ADVANCE(94); + lookahead != '<') ADVANCE(90); END_STATE(); - case 87: + case 83: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '#') ADVANCE(93); - if (lookahead == '/') ADVANCE(88); - if (lookahead == '?') ADVANCE(91); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '/') ADVANCE(84); + if (lookahead == '?') ADVANCE(87); if (lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(87); + lookahead == 65279) ADVANCE(83); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(87); + lookahead == ' ') ADVANCE(83); if (lookahead != 0 && - lookahead != '<') ADVANCE(94); + lookahead != '<') ADVANCE(90); END_STATE(); - case 88: + case 84: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '/') ADVANCE(92); + if (lookahead == '*') ADVANCE(86); + if (lookahead == '/') ADVANCE(88); if (lookahead != 0 && - lookahead != '<') ADVANCE(94); + lookahead != '<') ADVANCE(90); END_STATE(); - case 89: + case 85: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(89); - if (lookahead == '/') ADVANCE(94); + if (lookahead == '*') ADVANCE(85); + if (lookahead == '/') ADVANCE(90); if (lookahead != 0 && - lookahead != '<') ADVANCE(90); + lookahead != '<') ADVANCE(86); END_STATE(); - case 90: + case 86: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(89); + if (lookahead == '*') ADVANCE(85); if (lookahead != 0 && - lookahead != '<') ADVANCE(90); + lookahead != '<') ADVANCE(86); END_STATE(); - case 91: + case 87: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '>') ADVANCE(83); + if (lookahead == '>') ADVANCE(90); if (lookahead != 0 && - lookahead != '<') ADVANCE(94); + lookahead != '<') ADVANCE(90); END_STATE(); - case 92: + case 88: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '?') ADVANCE(85); + if (lookahead == '?') ADVANCE(81); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(94); + lookahead == '\r') ADVANCE(90); if (lookahead != 0 && - lookahead != '<') ADVANCE(92); + lookahead != '<') ADVANCE(88); END_STATE(); - case 93: + case 89: ACCEPT_TOKEN(aux_sym_text_token2); if (lookahead == '\n' || lookahead == '\r' || lookahead == '?' || - lookahead == '[') ADVANCE(94); + lookahead == '[') ADVANCE(90); if (lookahead != 0 && - lookahead != '<') ADVANCE(92); + lookahead != '<') ADVANCE(88); END_STATE(); - case 94: + case 90: ACCEPT_TOKEN(aux_sym_text_token2); if (lookahead != 0 && - lookahead != '<') ADVANCE(94); + lookahead != '<') ADVANCE(90); END_STATE(); - case 95: + case 91: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 96: + case 92: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 97: + case 93: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(212); + if (lookahead == '&') ADVANCE(208); END_STATE(); - case 98: + case 94: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '=') ADVANCE(163); + if (lookahead == '&') ADVANCE(208); + if (lookahead == '=') ADVANCE(159); END_STATE(); - case 99: + case 95: ACCEPT_TOKEN(aux_sym_function_static_declaration_token1); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 100: + case 96: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 101: + case 97: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(215); - if (lookahead == '>') ADVANCE(109); + if (lookahead == '=') ADVANCE(211); + if (lookahead == '>') ADVANCE(105); END_STATE(); - case 102: + case 98: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(109); + if (lookahead == '>') ADVANCE(105); END_STATE(); - case 103: + case 99: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 104: + case 100: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '\'' || - lookahead == '\\') ADVANCE(188); + lookahead == '\\') ADVANCE(184); END_STATE(); - case 105: + case 101: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 106: + case 102: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 107: + case 103: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 108: + case 104: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(151); + if (lookahead == ':') ADVANCE(147); END_STATE(); - case 109: + case 105: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 110: + case 106: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 111: + case 107: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 112: + case 108: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 113: + case 109: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(42); - if (lookahead == '>') ADVANCE(184); - if (lookahead == '?') ADVANCE(208); + if (lookahead == '-') ADVANCE(38); + if (lookahead == '>') ADVANCE(180); + if (lookahead == '?') ADVANCE(204); END_STATE(); - case 114: + case 110: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(42); - if (lookahead == '>') ADVANCE(81); - if (lookahead == '?') ADVANCE(208); + if (lookahead == '-') ADVANCE(38); + if (lookahead == '>') ADVANCE(79); + if (lookahead == '?') ADVANCE(204); END_STATE(); - case 115: + case 111: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(42); - if (lookahead == '>') ADVANCE(81); - if (lookahead == '?') ADVANCE(207); + if (lookahead == '-') ADVANCE(38); + if (lookahead == '>') ADVANCE(79); + if (lookahead == '?') ADVANCE(203); END_STATE(); - case 116: + case 112: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(81); + if (lookahead == '>') ADVANCE(79); END_STATE(); - case 117: + case 113: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(81); - if (lookahead == '?') ADVANCE(207); + if (lookahead == '>') ADVANCE(79); + if (lookahead == '?') ADVANCE(203); END_STATE(); - case 118: + case 114: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 119: + case 115: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(165); - if (lookahead == '|') ADVANCE(211); + if (lookahead == '=') ADVANCE(161); + if (lookahead == '|') ADVANCE(207); END_STATE(); - case 120: + case 116: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(211); + if (lookahead == '|') ADVANCE(207); END_STATE(); - case 121: + case 117: ACCEPT_TOKEN(aux_sym_cast_type_token1); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 122: + case 118: ACCEPT_TOKEN(aux_sym_cast_type_token3); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 123: + case 119: ACCEPT_TOKEN(aux_sym_cast_type_token6); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 124: + case 120: ACCEPT_TOKEN(aux_sym_cast_type_token8); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 125: + case 121: ACCEPT_TOKEN(aux_sym_cast_type_token11); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 126: + case 122: ACCEPT_TOKEN(aux_sym_cast_type_token12); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 127: + case 123: ACCEPT_TOKEN(sym_float); - if (lookahead == '.') ADVANCE(34); - if (lookahead == '_') ADVANCE(66); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '_') ADVANCE(62); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); + lookahead == 'e') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); - case 128: + case 124: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(66); + if (lookahead == '_') ADVANCE(62); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); + lookahead == 'e') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); - case 129: + case 125: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(283); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); + if (lookahead == '_') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(125); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 159) || @@ -8083,528 +8036,532 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (8204 <= lookahead && lookahead <= 8287) || (8289 <= lookahead && lookahead <= 55295) || (57344 <= lookahead && lookahead <= 65278) || - (65280 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (65280 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); - case 130: + case 126: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (lookahead == '_') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); END_STATE(); - case 131: + case 127: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '_') ADVANCE(62); + if (lookahead == '.') ADVANCE(124); + if (lookahead == '_') ADVANCE(58); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(61); + lookahead == 'b') ADVANCE(57); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); + lookahead == 'e') ADVANCE(45); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(137); + lookahead == 'o') ADVANCE(133); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(70); + lookahead == 'x') ADVANCE(66); if (lookahead == '8' || - lookahead == '9') ADVANCE(33); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(132); + lookahead == '9') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(128); END_STATE(); - case 132: + case 128: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '_') ADVANCE(62); + if (lookahead == '.') ADVANCE(124); + if (lookahead == '_') ADVANCE(58); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); + lookahead == 'e') ADVANCE(45); if (lookahead == '8' || - lookahead == '9') ADVANCE(33); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(132); + lookahead == '9') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(128); END_STATE(); - case 133: + case 129: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '_') ADVANCE(65); + if (lookahead == '.') ADVANCE(124); + if (lookahead == '_') ADVANCE(61); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(133); + lookahead == 'e') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); END_STATE(); - case 134: + case 130: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(61); + if (lookahead == '_') ADVANCE(57); if (lookahead == '0' || - lookahead == '1') ADVANCE(134); + lookahead == '1') ADVANCE(130); END_STATE(); - case 135: + case 131: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(70); + if (lookahead == '_') ADVANCE(66); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(131); END_STATE(); - case 136: + case 132: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(63); + if (lookahead == '_') ADVANCE(59); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(61); + lookahead == 'b') ADVANCE(57); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(137); + lookahead == 'o') ADVANCE(133); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(70); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(137); + lookahead == 'x') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(133); END_STATE(); - case 137: + case 133: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(63); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(137); + if (lookahead == '_') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(133); END_STATE(); - case 138: + case 134: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(69); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(138); + if (lookahead == '_') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(134); END_STATE(); - case 139: + case 135: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 140: + case 136: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(153); + if (lookahead == '+') ADVANCE(149); END_STATE(); - case 141: + case 137: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(153); - if (lookahead == '=') ADVANCE(158); + if (lookahead == '+') ADVANCE(149); + if (lookahead == '=') ADVANCE(154); END_STATE(); - case 142: + case 138: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 143: + case 139: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(152); + if (lookahead == '-') ADVANCE(148); END_STATE(); - case 144: + case 140: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(152); - if (lookahead == '=') ADVANCE(159); - if (lookahead == '>') ADVANCE(167); + if (lookahead == '-') ADVANCE(148); + if (lookahead == '=') ADVANCE(155); + if (lookahead == '>') ADVANCE(163); END_STATE(); - case 145: + case 141: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(152); - if (lookahead == '>') ADVANCE(167); + if (lookahead == '-') ADVANCE(148); + if (lookahead == '>') ADVANCE(163); END_STATE(); - case 146: + case 142: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(167); + if (lookahead == '>') ADVANCE(163); END_STATE(); - case 147: + case 143: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 148: + case 144: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 149: + case 145: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(216); + if (lookahead == '=') ADVANCE(212); END_STATE(); - case 150: + case 146: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 151: + case 147: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 152: + case 148: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 153: + case 149: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 154: + case 150: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 155: + case 151: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 156: + case 152: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 157: + case 153: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 158: + case 154: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 159: + case 155: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 160: + case 156: ACCEPT_TOKEN(anon_sym_DOT_EQ); END_STATE(); - case 161: + case 157: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 162: + case 158: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 163: + case 159: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 164: + case 160: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 165: + case 161: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 166: + case 162: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 167: + case 163: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 168: + case 164: ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); END_STATE(); - case 169: + case 165: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 170: + case 166: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 171: + case 167: ACCEPT_TOKEN(aux_sym__argument_name_token1); END_STATE(); - case 172: + case 168: ACCEPT_TOKEN(aux_sym__argument_name_token1); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 173: + case 169: ACCEPT_TOKEN(aux_sym__argument_name_token2); END_STATE(); - case 174: + case 170: ACCEPT_TOKEN(aux_sym__argument_name_token2); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 175: + case 171: ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); - case 176: + case 172: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 177: + case 173: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(176); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(172); END_STATE(); - case 178: + case 174: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(177); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(173); END_STATE(); - case 179: + case 175: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(176); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); END_STATE(); - case 180: + case 176: ACCEPT_TOKEN(anon_sym_BSLASHu); END_STATE(); - case 181: + case 177: ACCEPT_TOKEN(anon_sym_BSLASHu); - if (lookahead == '{') ADVANCE(72); + if (lookahead == '{') ADVANCE(68); END_STATE(); - case 182: + case 178: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 183: + case 179: ACCEPT_TOKEN(anon_sym_LT_QMARK); END_STATE(); - case 184: + case 180: ACCEPT_TOKEN(anon_sym_QMARK_GT2); END_STATE(); - case 185: + case 181: ACCEPT_TOKEN(aux_sym_encapsed_string_token1); END_STATE(); - case 186: + case 182: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 187: + case 183: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 188: + case 184: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 189: + case 185: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(198); - if (lookahead == '\r') ADVANCE(190); - if (lookahead == '>') ADVANCE(198); - if (lookahead == '\\') ADVANCE(287); + if (lookahead == '\n') ADVANCE(194); + if (lookahead == '\r') ADVANCE(186); + if (lookahead == '>') ADVANCE(194); + if (lookahead == '\\') ADVANCE(283); if (lookahead != 0 && - lookahead != '\'') ADVANCE(196); + lookahead != '\'') ADVANCE(192); END_STATE(); - case 190: + case 186: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(198); - if (lookahead == '\\') ADVANCE(73); + if (lookahead == '\n') ADVANCE(194); + if (lookahead == '\\') ADVANCE(69); if (lookahead != 0 && - lookahead != '\'') ADVANCE(198); + lookahead != '\'') ADVANCE(194); END_STATE(); - case 191: + case 187: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '#') ADVANCE(197); - if (lookahead == '/') ADVANCE(192); - if (lookahead == '?') ADVANCE(195); - if (lookahead == '\\') ADVANCE(48); + if (lookahead == '#') ADVANCE(193); + if (lookahead == '/') ADVANCE(188); + if (lookahead == '?') ADVANCE(191); + if (lookahead == '\\') ADVANCE(44); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(191); + lookahead == 65279) ADVANCE(187); if (lookahead != 0 && - lookahead != '\'') ADVANCE(198); + lookahead != '\'') ADVANCE(194); END_STATE(); - case 192: + case 188: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '/') ADVANCE(196); - if (lookahead == '\\') ADVANCE(73); + if (lookahead == '*') ADVANCE(190); + if (lookahead == '/') ADVANCE(192); + if (lookahead == '\\') ADVANCE(69); if (lookahead != 0 && - lookahead != '\'') ADVANCE(198); + lookahead != '\'') ADVANCE(194); END_STATE(); - case 193: + case 189: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(193); - if (lookahead == '/') ADVANCE(198); - if (lookahead == '\\') ADVANCE(30); + if (lookahead == '*') ADVANCE(189); + if (lookahead == '/') ADVANCE(194); + if (lookahead == '\\') ADVANCE(27); if (lookahead != 0 && - lookahead != '\'') ADVANCE(194); + lookahead != '\'') ADVANCE(190); END_STATE(); - case 194: + case 190: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(193); - if (lookahead == '\\') ADVANCE(30); + if (lookahead == '*') ADVANCE(189); + if (lookahead == '\\') ADVANCE(27); if (lookahead != 0 && - lookahead != '\'') ADVANCE(194); + lookahead != '\'') ADVANCE(190); END_STATE(); - case 195: + case 191: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '>') ADVANCE(82); - if (lookahead == '\\') ADVANCE(73); + if (lookahead == '>') ADVANCE(194); + if (lookahead == '\\') ADVANCE(69); if (lookahead != 0 && - lookahead != '\'') ADVANCE(198); + lookahead != '\'') ADVANCE(194); END_STATE(); - case 196: + case 192: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '?') ADVANCE(189); - if (lookahead == '\\') ADVANCE(287); + if (lookahead == '?') ADVANCE(185); + if (lookahead == '\\') ADVANCE(283); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(198); + lookahead == '\r') ADVANCE(194); if (lookahead != 0 && - lookahead != '\'') ADVANCE(196); + lookahead != '\'') ADVANCE(192); END_STATE(); - case 197: + case 193: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(287); + if (lookahead == '\\') ADVANCE(283); if (lookahead == '\n' || lookahead == '\r' || lookahead == '?' || - lookahead == '[') ADVANCE(198); + lookahead == '[') ADVANCE(194); if (lookahead != 0 && - lookahead != '\'') ADVANCE(196); + lookahead != '\'') ADVANCE(192); END_STATE(); - case 198: + case 194: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(73); + if (lookahead == '\\') ADVANCE(69); if (lookahead != 0 && - lookahead != '\'') ADVANCE(198); + lookahead != '\'') ADVANCE(194); END_STATE(); - case 199: + case 195: ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); - case 200: + case 196: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 201: + case 197: ACCEPT_TOKEN(sym__new_line); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(201); - if (lookahead == '?') ADVANCE(41); + if (lookahead == '\n') ADVANCE(197); + if (lookahead == '\r') ADVANCE(197); + if (lookahead == '?') ADVANCE(37); END_STATE(); - case 202: + case 198: ACCEPT_TOKEN(sym__new_line); - if (lookahead == '\n') ADVANCE(202); - if (lookahead == '\r') ADVANCE(202); + if (lookahead == '\n') ADVANCE(198); + if (lookahead == '\r') ADVANCE(198); END_STATE(); - case 203: + case 199: ACCEPT_TOKEN(anon_sym_); END_STATE(); - case 204: + case 200: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 205: + case 201: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 206: + case 202: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 207: + case 203: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 208: + case 204: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(166); + if (lookahead == '=') ADVANCE(162); END_STATE(); - case 209: + case 205: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 210: + case 206: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(154); + if (lookahead == '=') ADVANCE(150); END_STATE(); - case 211: + case 207: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 212: + case 208: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 213: + case 209: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 214: + case 210: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(164); + if (lookahead == '=') ADVANCE(160); END_STATE(); - case 215: + case 211: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(218); + if (lookahead == '=') ADVANCE(214); END_STATE(); - case 216: + case 212: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(219); + if (lookahead == '=') ADVANCE(215); END_STATE(); - case 217: + case 213: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 218: + case 214: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 219: + case 215: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 220: + case 216: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(230); - if (lookahead == '=') ADVANCE(226); - if (lookahead == '>') ADVANCE(217); + if (lookahead == '<') ADVANCE(226); + if (lookahead == '=') ADVANCE(222); + if (lookahead == '>') ADVANCE(213); END_STATE(); - case 221: + case 217: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(226); - if (lookahead == '>') ADVANCE(217); + if (lookahead == '<') ADVANCE(227); + if (lookahead == '=') ADVANCE(222); + if (lookahead == '>') ADVANCE(213); END_STATE(); - case 222: + case 218: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(229); - if (lookahead == '=') ADVANCE(226); - if (lookahead == '>') ADVANCE(217); + if (lookahead == '<') ADVANCE(225); + if (lookahead == '=') ADVANCE(222); + if (lookahead == '>') ADVANCE(213); END_STATE(); - case 223: + case 219: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '?') ADVANCE(80); + if (lookahead == '?') ADVANCE(78); END_STATE(); - case 224: + case 220: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(227); - if (lookahead == '>') ADVANCE(233); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '>') ADVANCE(229); END_STATE(); - case 225: + case 221: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(227); - if (lookahead == '>') ADVANCE(232); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '>') ADVANCE(228); END_STATE(); - case 226: + case 222: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(228); + if (lookahead == '>') ADVANCE(224); END_STATE(); - case 227: + case 223: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 228: + case 224: ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); - case 229: + case 225: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 230: + case 226: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(199); + if (lookahead == '<') ADVANCE(195); END_STATE(); - case 231: + case 227: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(161); + if (lookahead == '=') ADVANCE(157); END_STATE(); - case 232: + case 228: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 233: + case 229: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(162); + if (lookahead == '=') ADVANCE(158); END_STATE(); - case 234: + case 230: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 235: + case 231: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(34); - if (lookahead == '_') ADVANCE(66); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '_') ADVANCE(62); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); + lookahead == 'e') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); - case 236: + case 232: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(160); + if (lookahead == '=') ADVANCE(156); END_STATE(); - case 237: + case 233: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '=') ADVANCE(155); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '=') ADVANCE(151); END_STATE(); - case 238: + case 234: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(209); + if (lookahead == '*') ADVANCE(205); END_STATE(); - case 239: + case 235: ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(282); END_STATE(); - case 240: + case 236: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(156); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(282); + if (lookahead == '=') ADVANCE(152); END_STATE(); - case 241: + case 237: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 242: + case 238: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(157); + if (lookahead == '=') ADVANCE(153); END_STATE(); - case 243: + case 239: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(185); - if (lookahead == '\'') ADVANCE(187); + if (lookahead == '"') ADVANCE(181); + if (lookahead == '\'') ADVANCE(183); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(267); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'o') ADVANCE(263); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 244: + case 240: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(185); - if (lookahead == '\'') ADVANCE(187); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + if (lookahead == '"') ADVANCE(181); + if (lookahead == '\'') ADVANCE(183); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 245: + case 241: ACCEPT_TOKEN(sym_name); - if (lookahead == '.') ADVANCE(128); - if (lookahead == '_') ADVANCE(282); + if (lookahead == '.') ADVANCE(124); + if (lookahead == '_') ADVANCE(278); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(245); + lookahead == 'e') ADVANCE(242); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(241); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 159) || @@ -8612,277 +8569,277 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (8204 <= lookahead && lookahead <= 8287) || (8289 <= lookahead && lookahead <= 55295) || (57344 <= lookahead && lookahead <= 65278) || - (65280 <= lookahead && lookahead <= 65535)) ADVANCE(284); + (65280 <= lookahead && lookahead <= 65535)) ADVANCE(280); END_STATE(); - case 246: + case 242: ACCEPT_TOKEN(sym_name); if (lookahead == '+' || - lookahead == '-') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); - if (sym_name_character_set_2(lookahead)) ADVANCE(284); + lookahead == '-') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(125); + if (sym_name_character_set_2(lookahead)) ADVANCE(280); END_STATE(); - case 247: + case 243: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(262); + lookahead == 'a') ADVANCE(258); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(266); - if (sym_name_character_set_3(lookahead)) ADVANCE(284); + lookahead == 'l') ADVANCE(262); + if (sym_name_character_set_3(lookahead)) ADVANCE(280); END_STATE(); - case 248: + case 244: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(262); - if (sym_name_character_set_3(lookahead)) ADVANCE(284); + lookahead == 'a') ADVANCE(258); + if (sym_name_character_set_3(lookahead)) ADVANCE(280); END_STATE(); - case 249: + case 245: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(281); - if (sym_name_character_set_3(lookahead)) ADVANCE(284); + lookahead == 'a') ADVANCE(277); + if (sym_name_character_set_3(lookahead)) ADVANCE(280); END_STATE(); - case 250: + case 246: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(277); + lookahead == 'a') ADVANCE(273); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(258); - if (sym_name_character_set_3(lookahead)) ADVANCE(284); + lookahead == 'r') ADVANCE(254); + if (sym_name_character_set_3(lookahead)) ADVANCE(280); END_STATE(); - case 251: + case 247: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(277); - if (sym_name_character_set_3(lookahead)) ADVANCE(284); + lookahead == 'a') ADVANCE(273); + if (sym_name_character_set_3(lookahead)) ADVANCE(280); END_STATE(); - case 252: + case 248: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(275); - if (sym_name_character_set_3(lookahead)) ADVANCE(284); + lookahead == 'a') ADVANCE(271); + if (sym_name_character_set_3(lookahead)) ADVANCE(280); END_STATE(); - case 253: + case 249: ACCEPT_TOKEN(sym_name); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(99); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'c') ADVANCE(95); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 254: + case 250: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(174); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'e') ADVANCE(170); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 255: + case 251: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(276); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'e') ADVANCE(272); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 256: + case 252: ACCEPT_TOKEN(sym_name); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(125); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'g') ADVANCE(121); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 257: + case 253: ACCEPT_TOKEN(sym_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(253); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'i') ADVANCE(249); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 258: + case 254: ACCEPT_TOKEN(sym_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(264); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'i') ADVANCE(260); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 259: + case 255: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(122); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'l') ADVANCE(118); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 260: + case 256: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(172); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'l') ADVANCE(168); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 261: + case 257: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(260); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'l') ADVANCE(256); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 262: + case 258: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(271); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'l') ADVANCE(267); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 263: + case 259: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(272); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'n') ADVANCE(268); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 264: + case 260: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(256); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'n') ADVANCE(252); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 265: + case 261: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(274); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'n') ADVANCE(270); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 266: + case 262: ACCEPT_TOKEN(sym_name); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(252); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'o') ADVANCE(248); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 267: + case 263: ACCEPT_TOKEN(sym_name); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(259); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'o') ADVANCE(255); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 268: + case 264: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(249); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'r') ADVANCE(245); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 269: + case 265: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(279); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'r') ADVANCE(275); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 270: + case 266: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(268); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'r') ADVANCE(264); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 271: + case 267: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(254); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 's') ADVANCE(250); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 272: + case 268: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(255); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 's') ADVANCE(251); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 273: + case 269: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(250); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 't') ADVANCE(246); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 274: + case 270: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(123); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 't') ADVANCE(119); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 275: + case 271: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(124); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 't') ADVANCE(120); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 276: + case 272: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(126); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 't') ADVANCE(122); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 277: + case 273: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(257); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 't') ADVANCE(253); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 278: + case 274: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(251); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 't') ADVANCE(247); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 279: + case 275: ACCEPT_TOKEN(sym_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(254); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'u') ADVANCE(250); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 280: + case 276: ACCEPT_TOKEN(sym_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(261); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'u') ADVANCE(257); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 281: + case 277: ACCEPT_TOKEN(sym_name); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(121); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + lookahead == 'y') ADVANCE(117); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 282: + case 278: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(245); - if (sym_name_character_set_2(lookahead)) ADVANCE(284); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(241); + if (sym_name_character_set_2(lookahead)) ADVANCE(280); END_STATE(); - case 283: + case 279: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); - if (sym_name_character_set_2(lookahead)) ADVANCE(284); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(125); + if (sym_name_character_set_2(lookahead)) ADVANCE(280); END_STATE(); - case 284: + case 280: ACCEPT_TOKEN(sym_name); - if (sym_name_character_set_1(lookahead)) ADVANCE(284); + if (sym_name_character_set_1(lookahead)) ADVANCE(280); END_STATE(); - case 285: + case 281: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 286: + case 282: ACCEPT_TOKEN(sym_comment); if (lookahead == '?') ADVANCE(2); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(286); + lookahead != '\r') ADVANCE(282); END_STATE(); - case 287: + case 283: ACCEPT_TOKEN(sym_comment); - if (lookahead == '?') ADVANCE(189); + if (lookahead == '?') ADVANCE(185); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(198); + lookahead == '\r') ADVANCE(194); if (lookahead == '\'' || - lookahead == '\\') ADVANCE(286); - if (lookahead != 0) ADVANCE(196); + lookahead == '\\') ADVANCE(282); + if (lookahead != 0) ADVANCE(192); END_STATE(); - case 288: + case 284: ACCEPT_TOKEN(sym_comment); - if (lookahead == '[') ADVANCE(175); + if (lookahead == '[') ADVANCE(171); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '?') ADVANCE(286); + lookahead != '?') ADVANCE(282); END_STATE(); - case 289: + case 285: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '?' && - lookahead != '[') ADVANCE(286); + lookahead != '[') ADVANCE(282); END_STATE(); default: return false; @@ -10545,91 +10502,91 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 77}, - [2] = {.lex_state = 75}, - [3] = {.lex_state = 75}, - [4] = {.lex_state = 75}, - [5] = {.lex_state = 75}, - [6] = {.lex_state = 75}, - [7] = {.lex_state = 75}, - [8] = {.lex_state = 75}, - [9] = {.lex_state = 75}, - [10] = {.lex_state = 75}, - [11] = {.lex_state = 75}, - [12] = {.lex_state = 75, .external_lex_state = 2}, - [13] = {.lex_state = 75, .external_lex_state = 2}, - [14] = {.lex_state = 75, .external_lex_state = 2}, - [15] = {.lex_state = 75, .external_lex_state = 2}, - [16] = {.lex_state = 75, .external_lex_state = 2}, - [17] = {.lex_state = 75}, - [18] = {.lex_state = 75, .external_lex_state = 2}, - [19] = {.lex_state = 75}, - [20] = {.lex_state = 75}, - [21] = {.lex_state = 75}, - [22] = {.lex_state = 75}, - [23] = {.lex_state = 75}, - [24] = {.lex_state = 75}, - [25] = {.lex_state = 75}, - [26] = {.lex_state = 75}, - [27] = {.lex_state = 75}, - [28] = {.lex_state = 75}, - [29] = {.lex_state = 75, .external_lex_state = 2}, - [30] = {.lex_state = 75, .external_lex_state = 2}, - [31] = {.lex_state = 75, .external_lex_state = 2}, - [32] = {.lex_state = 75, .external_lex_state = 2}, - [33] = {.lex_state = 75, .external_lex_state = 2}, - [34] = {.lex_state = 75}, - [35] = {.lex_state = 75}, - [36] = {.lex_state = 75, .external_lex_state = 2}, - [37] = {.lex_state = 75}, - [38] = {.lex_state = 75}, - [39] = {.lex_state = 75}, - [40] = {.lex_state = 75}, - [41] = {.lex_state = 75}, - [42] = {.lex_state = 75}, - [43] = {.lex_state = 75}, - [44] = {.lex_state = 75}, - [45] = {.lex_state = 75}, - [46] = {.lex_state = 75}, - [47] = {.lex_state = 75}, - [48] = {.lex_state = 75}, - [49] = {.lex_state = 75}, - [50] = {.lex_state = 75}, - [51] = {.lex_state = 75}, - [52] = {.lex_state = 75}, - [53] = {.lex_state = 75}, - [54] = {.lex_state = 75, .external_lex_state = 2}, - [55] = {.lex_state = 75}, - [56] = {.lex_state = 75, .external_lex_state = 2}, - [57] = {.lex_state = 75}, - [58] = {.lex_state = 75, .external_lex_state = 2}, - [59] = {.lex_state = 75, .external_lex_state = 2}, - [60] = {.lex_state = 75}, - [61] = {.lex_state = 75, .external_lex_state = 2}, - [62] = {.lex_state = 75}, - [63] = {.lex_state = 75}, - [64] = {.lex_state = 75}, - [65] = {.lex_state = 75, .external_lex_state = 2}, - [66] = {.lex_state = 75}, - [67] = {.lex_state = 75, .external_lex_state = 2}, - [68] = {.lex_state = 75, .external_lex_state = 2}, - [69] = {.lex_state = 75}, - [70] = {.lex_state = 75, .external_lex_state = 2}, - [71] = {.lex_state = 75}, - [72] = {.lex_state = 75}, - [73] = {.lex_state = 75, .external_lex_state = 2}, - [74] = {.lex_state = 75}, - [75] = {.lex_state = 75}, - [76] = {.lex_state = 75, .external_lex_state = 2}, - [77] = {.lex_state = 75, .external_lex_state = 2}, - [78] = {.lex_state = 75}, - [79] = {.lex_state = 75}, - [80] = {.lex_state = 75}, - [81] = {.lex_state = 75}, - [82] = {.lex_state = 75}, - [83] = {.lex_state = 75}, - [84] = {.lex_state = 75}, - [85] = {.lex_state = 75}, + [1] = {.lex_state = 74}, + [2] = {.lex_state = 71}, + [3] = {.lex_state = 71}, + [4] = {.lex_state = 71}, + [5] = {.lex_state = 71}, + [6] = {.lex_state = 71}, + [7] = {.lex_state = 71}, + [8] = {.lex_state = 71}, + [9] = {.lex_state = 71}, + [10] = {.lex_state = 71}, + [11] = {.lex_state = 71}, + [12] = {.lex_state = 71, .external_lex_state = 2}, + [13] = {.lex_state = 71, .external_lex_state = 2}, + [14] = {.lex_state = 71, .external_lex_state = 2}, + [15] = {.lex_state = 71, .external_lex_state = 2}, + [16] = {.lex_state = 71, .external_lex_state = 2}, + [17] = {.lex_state = 71}, + [18] = {.lex_state = 71, .external_lex_state = 2}, + [19] = {.lex_state = 71}, + [20] = {.lex_state = 71}, + [21] = {.lex_state = 71}, + [22] = {.lex_state = 71}, + [23] = {.lex_state = 71}, + [24] = {.lex_state = 71}, + [25] = {.lex_state = 71}, + [26] = {.lex_state = 71}, + [27] = {.lex_state = 71}, + [28] = {.lex_state = 71}, + [29] = {.lex_state = 71, .external_lex_state = 2}, + [30] = {.lex_state = 71, .external_lex_state = 2}, + [31] = {.lex_state = 71, .external_lex_state = 2}, + [32] = {.lex_state = 71, .external_lex_state = 2}, + [33] = {.lex_state = 71, .external_lex_state = 2}, + [34] = {.lex_state = 71}, + [35] = {.lex_state = 71}, + [36] = {.lex_state = 71, .external_lex_state = 2}, + [37] = {.lex_state = 71}, + [38] = {.lex_state = 71}, + [39] = {.lex_state = 71}, + [40] = {.lex_state = 71}, + [41] = {.lex_state = 71}, + [42] = {.lex_state = 71}, + [43] = {.lex_state = 71}, + [44] = {.lex_state = 71}, + [45] = {.lex_state = 71}, + [46] = {.lex_state = 71}, + [47] = {.lex_state = 71}, + [48] = {.lex_state = 71}, + [49] = {.lex_state = 71}, + [50] = {.lex_state = 71}, + [51] = {.lex_state = 71}, + [52] = {.lex_state = 71}, + [53] = {.lex_state = 71}, + [54] = {.lex_state = 71, .external_lex_state = 2}, + [55] = {.lex_state = 71}, + [56] = {.lex_state = 71, .external_lex_state = 2}, + [57] = {.lex_state = 71}, + [58] = {.lex_state = 71, .external_lex_state = 2}, + [59] = {.lex_state = 71, .external_lex_state = 2}, + [60] = {.lex_state = 71}, + [61] = {.lex_state = 71, .external_lex_state = 2}, + [62] = {.lex_state = 71}, + [63] = {.lex_state = 71}, + [64] = {.lex_state = 71}, + [65] = {.lex_state = 71, .external_lex_state = 2}, + [66] = {.lex_state = 71}, + [67] = {.lex_state = 71, .external_lex_state = 2}, + [68] = {.lex_state = 71, .external_lex_state = 2}, + [69] = {.lex_state = 71}, + [70] = {.lex_state = 71, .external_lex_state = 2}, + [71] = {.lex_state = 71}, + [72] = {.lex_state = 71}, + [73] = {.lex_state = 71, .external_lex_state = 2}, + [74] = {.lex_state = 71}, + [75] = {.lex_state = 71}, + [76] = {.lex_state = 71, .external_lex_state = 2}, + [77] = {.lex_state = 71, .external_lex_state = 2}, + [78] = {.lex_state = 71}, + [79] = {.lex_state = 71}, + [80] = {.lex_state = 71}, + [81] = {.lex_state = 71}, + [82] = {.lex_state = 71}, + [83] = {.lex_state = 71}, + [84] = {.lex_state = 71}, + [85] = {.lex_state = 71}, [86] = {.lex_state = 6}, [87] = {.lex_state = 6}, [88] = {.lex_state = 6, .external_lex_state = 2}, @@ -10680,2581 +10637,2581 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [133] = {.lex_state = 7}, [134] = {.lex_state = 7}, [135] = {.lex_state = 7}, - [136] = {.lex_state = 75}, + [136] = {.lex_state = 71}, [137] = {.lex_state = 7}, [138] = {.lex_state = 7}, [139] = {.lex_state = 7}, [140] = {.lex_state = 7}, [141] = {.lex_state = 7}, - [142] = {.lex_state = 75}, + [142] = {.lex_state = 71}, [143] = {.lex_state = 7}, [144] = {.lex_state = 7}, - [145] = {.lex_state = 75}, - [146] = {.lex_state = 75}, - [147] = {.lex_state = 75}, - [148] = {.lex_state = 75}, + [145] = {.lex_state = 71}, + [146] = {.lex_state = 71}, + [147] = {.lex_state = 71}, + [148] = {.lex_state = 71}, [149] = {.lex_state = 7}, - [150] = {.lex_state = 75}, + [150] = {.lex_state = 71}, [151] = {.lex_state = 7}, - [152] = {.lex_state = 75}, - [153] = {.lex_state = 75}, - [154] = {.lex_state = 75}, + [152] = {.lex_state = 71}, + [153] = {.lex_state = 71}, + [154] = {.lex_state = 71}, [155] = {.lex_state = 7}, - [156] = {.lex_state = 75}, - [157] = {.lex_state = 75}, - [158] = {.lex_state = 75}, - [159] = {.lex_state = 75}, - [160] = {.lex_state = 75}, - [161] = {.lex_state = 75}, - [162] = {.lex_state = 75}, - [163] = {.lex_state = 75}, - [164] = {.lex_state = 75}, - [165] = {.lex_state = 75}, - [166] = {.lex_state = 75}, - [167] = {.lex_state = 75}, - [168] = {.lex_state = 75}, - [169] = {.lex_state = 75}, - [170] = {.lex_state = 75}, - [171] = {.lex_state = 75}, - [172] = {.lex_state = 75}, - [173] = {.lex_state = 75}, - [174] = {.lex_state = 75}, - [175] = {.lex_state = 75}, - [176] = {.lex_state = 75}, - [177] = {.lex_state = 75}, - [178] = {.lex_state = 75}, - [179] = {.lex_state = 75}, - [180] = {.lex_state = 75}, - [181] = {.lex_state = 75}, - [182] = {.lex_state = 75}, - [183] = {.lex_state = 75}, - [184] = {.lex_state = 75}, - [185] = {.lex_state = 75}, - [186] = {.lex_state = 75, .external_lex_state = 2}, - [187] = {.lex_state = 75, .external_lex_state = 2}, - [188] = {.lex_state = 75, .external_lex_state = 2}, - [189] = {.lex_state = 75, .external_lex_state = 2}, - [190] = {.lex_state = 75, .external_lex_state = 2}, - [191] = {.lex_state = 75}, - [192] = {.lex_state = 75}, - [193] = {.lex_state = 75}, - [194] = {.lex_state = 75, .external_lex_state = 2}, - [195] = {.lex_state = 75}, - [196] = {.lex_state = 75}, - [197] = {.lex_state = 75}, - [198] = {.lex_state = 75}, + [156] = {.lex_state = 71}, + [157] = {.lex_state = 71}, + [158] = {.lex_state = 71}, + [159] = {.lex_state = 71}, + [160] = {.lex_state = 71}, + [161] = {.lex_state = 71}, + [162] = {.lex_state = 71}, + [163] = {.lex_state = 71}, + [164] = {.lex_state = 71}, + [165] = {.lex_state = 71}, + [166] = {.lex_state = 71}, + [167] = {.lex_state = 71}, + [168] = {.lex_state = 71}, + [169] = {.lex_state = 71}, + [170] = {.lex_state = 71}, + [171] = {.lex_state = 71}, + [172] = {.lex_state = 71}, + [173] = {.lex_state = 71}, + [174] = {.lex_state = 71}, + [175] = {.lex_state = 71}, + [176] = {.lex_state = 71}, + [177] = {.lex_state = 71}, + [178] = {.lex_state = 71}, + [179] = {.lex_state = 71}, + [180] = {.lex_state = 71}, + [181] = {.lex_state = 71}, + [182] = {.lex_state = 71}, + [183] = {.lex_state = 71}, + [184] = {.lex_state = 71}, + [185] = {.lex_state = 71}, + [186] = {.lex_state = 71, .external_lex_state = 2}, + [187] = {.lex_state = 71, .external_lex_state = 2}, + [188] = {.lex_state = 71, .external_lex_state = 2}, + [189] = {.lex_state = 71, .external_lex_state = 2}, + [190] = {.lex_state = 71, .external_lex_state = 2}, + [191] = {.lex_state = 71}, + [192] = {.lex_state = 71}, + [193] = {.lex_state = 71}, + [194] = {.lex_state = 71, .external_lex_state = 2}, + [195] = {.lex_state = 71}, + [196] = {.lex_state = 71}, + [197] = {.lex_state = 71}, + [198] = {.lex_state = 71}, [199] = {.lex_state = 7}, - [200] = {.lex_state = 75}, - [201] = {.lex_state = 75}, - [202] = {.lex_state = 75}, + [200] = {.lex_state = 71}, + [201] = {.lex_state = 71}, + [202] = {.lex_state = 71}, [203] = {.lex_state = 7}, - [204] = {.lex_state = 75}, - [205] = {.lex_state = 75}, - [206] = {.lex_state = 75}, - [207] = {.lex_state = 75}, - [208] = {.lex_state = 75}, - [209] = {.lex_state = 75}, - [210] = {.lex_state = 75}, - [211] = {.lex_state = 75}, - [212] = {.lex_state = 75}, - [213] = {.lex_state = 75}, - [214] = {.lex_state = 75}, - [215] = {.lex_state = 75}, - [216] = {.lex_state = 75}, - [217] = {.lex_state = 75}, - [218] = {.lex_state = 75}, - [219] = {.lex_state = 75}, - [220] = {.lex_state = 75}, - [221] = {.lex_state = 75}, - [222] = {.lex_state = 75}, - [223] = {.lex_state = 75}, - [224] = {.lex_state = 75}, - [225] = {.lex_state = 75}, - [226] = {.lex_state = 75}, - [227] = {.lex_state = 75}, - [228] = {.lex_state = 75}, - [229] = {.lex_state = 75}, - [230] = {.lex_state = 75}, - [231] = {.lex_state = 75}, - [232] = {.lex_state = 75}, - [233] = {.lex_state = 75}, - [234] = {.lex_state = 75}, - [235] = {.lex_state = 75}, - [236] = {.lex_state = 75}, - [237] = {.lex_state = 75}, - [238] = {.lex_state = 75}, - [239] = {.lex_state = 75}, - [240] = {.lex_state = 75}, - [241] = {.lex_state = 75}, - [242] = {.lex_state = 75}, - [243] = {.lex_state = 75}, - [244] = {.lex_state = 75}, - [245] = {.lex_state = 75}, - [246] = {.lex_state = 75}, - [247] = {.lex_state = 75}, - [248] = {.lex_state = 75}, - [249] = {.lex_state = 75}, - [250] = {.lex_state = 75}, - [251] = {.lex_state = 75}, - [252] = {.lex_state = 75}, - [253] = {.lex_state = 75}, - [254] = {.lex_state = 75}, - [255] = {.lex_state = 75}, - [256] = {.lex_state = 75}, - [257] = {.lex_state = 75}, - [258] = {.lex_state = 75}, - [259] = {.lex_state = 75}, - [260] = {.lex_state = 75}, - [261] = {.lex_state = 75}, - [262] = {.lex_state = 75}, - [263] = {.lex_state = 75}, - [264] = {.lex_state = 75}, - [265] = {.lex_state = 75}, - [266] = {.lex_state = 75}, - [267] = {.lex_state = 75}, - [268] = {.lex_state = 75}, - [269] = {.lex_state = 75}, - [270] = {.lex_state = 75}, - [271] = {.lex_state = 75}, - [272] = {.lex_state = 75}, - [273] = {.lex_state = 75}, - [274] = {.lex_state = 75}, - [275] = {.lex_state = 75}, - [276] = {.lex_state = 75}, - [277] = {.lex_state = 75}, - [278] = {.lex_state = 75}, - [279] = {.lex_state = 75}, - [280] = {.lex_state = 75}, - [281] = {.lex_state = 75}, - [282] = {.lex_state = 75}, - [283] = {.lex_state = 75}, - [284] = {.lex_state = 75}, - [285] = {.lex_state = 75}, - [286] = {.lex_state = 75}, - [287] = {.lex_state = 75}, - [288] = {.lex_state = 75}, - [289] = {.lex_state = 75}, - [290] = {.lex_state = 75}, - [291] = {.lex_state = 75}, - [292] = {.lex_state = 75}, - [293] = {.lex_state = 75}, - [294] = {.lex_state = 75}, - [295] = {.lex_state = 75}, - [296] = {.lex_state = 75}, - [297] = {.lex_state = 75}, - [298] = {.lex_state = 75}, - [299] = {.lex_state = 75}, - [300] = {.lex_state = 75}, - [301] = {.lex_state = 75}, - [302] = {.lex_state = 75}, - [303] = {.lex_state = 75}, - [304] = {.lex_state = 75}, - [305] = {.lex_state = 75}, - [306] = {.lex_state = 75}, - [307] = {.lex_state = 75}, - [308] = {.lex_state = 75}, - [309] = {.lex_state = 75}, - [310] = {.lex_state = 75}, - [311] = {.lex_state = 75}, - [312] = {.lex_state = 75}, - [313] = {.lex_state = 75}, - [314] = {.lex_state = 75}, - [315] = {.lex_state = 75}, - [316] = {.lex_state = 75}, - [317] = {.lex_state = 75}, - [318] = {.lex_state = 75}, - [319] = {.lex_state = 75}, - [320] = {.lex_state = 75}, - [321] = {.lex_state = 75}, - [322] = {.lex_state = 75}, - [323] = {.lex_state = 75}, - [324] = {.lex_state = 75}, - [325] = {.lex_state = 75}, - [326] = {.lex_state = 75}, - [327] = {.lex_state = 75}, - [328] = {.lex_state = 75}, - [329] = {.lex_state = 75}, - [330] = {.lex_state = 75}, - [331] = {.lex_state = 75}, - [332] = {.lex_state = 75}, - [333] = {.lex_state = 75}, - [334] = {.lex_state = 75}, - [335] = {.lex_state = 75}, - [336] = {.lex_state = 75}, - [337] = {.lex_state = 75}, - [338] = {.lex_state = 75}, - [339] = {.lex_state = 75}, - [340] = {.lex_state = 75}, - [341] = {.lex_state = 75}, - [342] = {.lex_state = 75}, - [343] = {.lex_state = 75}, - [344] = {.lex_state = 75}, - [345] = {.lex_state = 75}, - [346] = {.lex_state = 75}, - [347] = {.lex_state = 75}, - [348] = {.lex_state = 75}, - [349] = {.lex_state = 75}, - [350] = {.lex_state = 75}, - [351] = {.lex_state = 75}, - [352] = {.lex_state = 75}, - [353] = {.lex_state = 75}, - [354] = {.lex_state = 75}, - [355] = {.lex_state = 75}, - [356] = {.lex_state = 75}, - [357] = {.lex_state = 75}, - [358] = {.lex_state = 75}, - [359] = {.lex_state = 75}, - [360] = {.lex_state = 75}, - [361] = {.lex_state = 75}, - [362] = {.lex_state = 75}, - [363] = {.lex_state = 75}, - [364] = {.lex_state = 75}, - [365] = {.lex_state = 75}, - [366] = {.lex_state = 75}, - [367] = {.lex_state = 75}, - [368] = {.lex_state = 75}, - [369] = {.lex_state = 75}, - [370] = {.lex_state = 75}, - [371] = {.lex_state = 75}, - [372] = {.lex_state = 75}, - [373] = {.lex_state = 75}, - [374] = {.lex_state = 75}, - [375] = {.lex_state = 75}, - [376] = {.lex_state = 75}, - [377] = {.lex_state = 75}, - [378] = {.lex_state = 75}, - [379] = {.lex_state = 75}, - [380] = {.lex_state = 75}, - [381] = {.lex_state = 75}, - [382] = {.lex_state = 75}, - [383] = {.lex_state = 75}, - [384] = {.lex_state = 75}, - [385] = {.lex_state = 75}, - [386] = {.lex_state = 75}, - [387] = {.lex_state = 75}, - [388] = {.lex_state = 75}, - [389] = {.lex_state = 75}, - [390] = {.lex_state = 75}, - [391] = {.lex_state = 75}, - [392] = {.lex_state = 75}, - [393] = {.lex_state = 75}, - [394] = {.lex_state = 75}, - [395] = {.lex_state = 75}, - [396] = {.lex_state = 75}, - [397] = {.lex_state = 75}, - [398] = {.lex_state = 75}, - [399] = {.lex_state = 75}, - [400] = {.lex_state = 75}, - [401] = {.lex_state = 75}, - [402] = {.lex_state = 75}, - [403] = {.lex_state = 75}, - [404] = {.lex_state = 75}, - [405] = {.lex_state = 75}, - [406] = {.lex_state = 75}, - [407] = {.lex_state = 75}, - [408] = {.lex_state = 75}, - [409] = {.lex_state = 75}, - [410] = {.lex_state = 75}, - [411] = {.lex_state = 75}, - [412] = {.lex_state = 75}, - [413] = {.lex_state = 75}, - [414] = {.lex_state = 75}, - [415] = {.lex_state = 75}, - [416] = {.lex_state = 75}, - [417] = {.lex_state = 75}, - [418] = {.lex_state = 75}, - [419] = {.lex_state = 75}, - [420] = {.lex_state = 75}, - [421] = {.lex_state = 75}, - [422] = {.lex_state = 75}, - [423] = {.lex_state = 75}, - [424] = {.lex_state = 75}, - [425] = {.lex_state = 75}, - [426] = {.lex_state = 75}, - [427] = {.lex_state = 75}, - [428] = {.lex_state = 75}, - [429] = {.lex_state = 75}, - [430] = {.lex_state = 75}, - [431] = {.lex_state = 75}, - [432] = {.lex_state = 75}, - [433] = {.lex_state = 75}, - [434] = {.lex_state = 75}, - [435] = {.lex_state = 75}, - [436] = {.lex_state = 75, .external_lex_state = 2}, - [437] = {.lex_state = 75, .external_lex_state = 2}, - [438] = {.lex_state = 75, .external_lex_state = 2}, - [439] = {.lex_state = 75, .external_lex_state = 2}, - [440] = {.lex_state = 75, .external_lex_state = 2}, - [441] = {.lex_state = 75, .external_lex_state = 2}, - [442] = {.lex_state = 75, .external_lex_state = 2}, - [443] = {.lex_state = 75, .external_lex_state = 2}, - [444] = {.lex_state = 75, .external_lex_state = 2}, - [445] = {.lex_state = 75, .external_lex_state = 2}, - [446] = {.lex_state = 75, .external_lex_state = 2}, - [447] = {.lex_state = 75, .external_lex_state = 2}, - [448] = {.lex_state = 75, .external_lex_state = 2}, - [449] = {.lex_state = 75, .external_lex_state = 2}, - [450] = {.lex_state = 75, .external_lex_state = 2}, - [451] = {.lex_state = 75, .external_lex_state = 2}, - [452] = {.lex_state = 75, .external_lex_state = 2}, - [453] = {.lex_state = 75, .external_lex_state = 2}, - [454] = {.lex_state = 75, .external_lex_state = 2}, - [455] = {.lex_state = 75, .external_lex_state = 2}, - [456] = {.lex_state = 75}, - [457] = {.lex_state = 75}, - [458] = {.lex_state = 75}, - [459] = {.lex_state = 75}, - [460] = {.lex_state = 75}, - [461] = {.lex_state = 75}, - [462] = {.lex_state = 75}, - [463] = {.lex_state = 75}, - [464] = {.lex_state = 75}, - [465] = {.lex_state = 75}, - [466] = {.lex_state = 75}, - [467] = {.lex_state = 75}, - [468] = {.lex_state = 75}, - [469] = {.lex_state = 75}, - [470] = {.lex_state = 75}, - [471] = {.lex_state = 75}, - [472] = {.lex_state = 75}, - [473] = {.lex_state = 75}, - [474] = {.lex_state = 75}, - [475] = {.lex_state = 75}, - [476] = {.lex_state = 75}, - [477] = {.lex_state = 75}, - [478] = {.lex_state = 75}, - [479] = {.lex_state = 75}, - [480] = {.lex_state = 75}, - [481] = {.lex_state = 75}, - [482] = {.lex_state = 75}, - [483] = {.lex_state = 75}, - [484] = {.lex_state = 75}, - [485] = {.lex_state = 75}, - [486] = {.lex_state = 75}, - [487] = {.lex_state = 75}, - [488] = {.lex_state = 75}, - [489] = {.lex_state = 75}, - [490] = {.lex_state = 75}, - [491] = {.lex_state = 75}, - [492] = {.lex_state = 75}, - [493] = {.lex_state = 75}, - [494] = {.lex_state = 75}, - [495] = {.lex_state = 75}, - [496] = {.lex_state = 75}, - [497] = {.lex_state = 75}, - [498] = {.lex_state = 75}, - [499] = {.lex_state = 75}, - [500] = {.lex_state = 75}, - [501] = {.lex_state = 75}, - [502] = {.lex_state = 75}, - [503] = {.lex_state = 75}, - [504] = {.lex_state = 75}, - [505] = {.lex_state = 75}, - [506] = {.lex_state = 75}, - [507] = {.lex_state = 75}, - [508] = {.lex_state = 75}, - [509] = {.lex_state = 75}, - [510] = {.lex_state = 75}, - [511] = {.lex_state = 75}, - [512] = {.lex_state = 75}, - [513] = {.lex_state = 75}, - [514] = {.lex_state = 75}, - [515] = {.lex_state = 75}, - [516] = {.lex_state = 75}, - [517] = {.lex_state = 75}, - [518] = {.lex_state = 75}, - [519] = {.lex_state = 75}, - [520] = {.lex_state = 75}, - [521] = {.lex_state = 75}, - [522] = {.lex_state = 75}, - [523] = {.lex_state = 75}, - [524] = {.lex_state = 75}, - [525] = {.lex_state = 75}, - [526] = {.lex_state = 75}, - [527] = {.lex_state = 75}, - [528] = {.lex_state = 75}, - [529] = {.lex_state = 75}, - [530] = {.lex_state = 75}, - [531] = {.lex_state = 75}, - [532] = {.lex_state = 75}, - [533] = {.lex_state = 75}, - [534] = {.lex_state = 75}, - [535] = {.lex_state = 75}, - [536] = {.lex_state = 75}, - [537] = {.lex_state = 75}, - [538] = {.lex_state = 75}, - [539] = {.lex_state = 75}, - [540] = {.lex_state = 75}, - [541] = {.lex_state = 75}, - [542] = {.lex_state = 75}, - [543] = {.lex_state = 75}, - [544] = {.lex_state = 75}, - [545] = {.lex_state = 75}, - [546] = {.lex_state = 75}, - [547] = {.lex_state = 75}, - [548] = {.lex_state = 75}, - [549] = {.lex_state = 75}, - [550] = {.lex_state = 75}, - [551] = {.lex_state = 75}, - [552] = {.lex_state = 75}, - [553] = {.lex_state = 75}, - [554] = {.lex_state = 75}, - [555] = {.lex_state = 75}, - [556] = {.lex_state = 75}, - [557] = {.lex_state = 75}, - [558] = {.lex_state = 75}, - [559] = {.lex_state = 75}, - [560] = {.lex_state = 75}, - [561] = {.lex_state = 75}, - [562] = {.lex_state = 75}, - [563] = {.lex_state = 75}, - [564] = {.lex_state = 75}, - [565] = {.lex_state = 75}, - [566] = {.lex_state = 75}, - [567] = {.lex_state = 75}, - [568] = {.lex_state = 75}, - [569] = {.lex_state = 75}, - [570] = {.lex_state = 75}, - [571] = {.lex_state = 75}, - [572] = {.lex_state = 75}, - [573] = {.lex_state = 75}, - [574] = {.lex_state = 10}, - [575] = {.lex_state = 10}, - [576] = {.lex_state = 10}, - [577] = {.lex_state = 10}, - [578] = {.lex_state = 10}, - [579] = {.lex_state = 10}, - [580] = {.lex_state = 10}, - [581] = {.lex_state = 10}, - [582] = {.lex_state = 10}, - [583] = {.lex_state = 10}, - [584] = {.lex_state = 10}, - [585] = {.lex_state = 10}, - [586] = {.lex_state = 10}, - [587] = {.lex_state = 10}, - [588] = {.lex_state = 10}, - [589] = {.lex_state = 10}, - [590] = {.lex_state = 10}, - [591] = {.lex_state = 10}, - [592] = {.lex_state = 10}, - [593] = {.lex_state = 10}, - [594] = {.lex_state = 10}, - [595] = {.lex_state = 10}, - [596] = {.lex_state = 10}, - [597] = {.lex_state = 10}, - [598] = {.lex_state = 10}, - [599] = {.lex_state = 10}, - [600] = {.lex_state = 10, .external_lex_state = 2}, - [601] = {.lex_state = 10, .external_lex_state = 2}, - [602] = {.lex_state = 10, .external_lex_state = 2}, - [603] = {.lex_state = 10, .external_lex_state = 2}, - [604] = {.lex_state = 10}, - [605] = {.lex_state = 10}, - [606] = {.lex_state = 10, .external_lex_state = 2}, - [607] = {.lex_state = 10}, - [608] = {.lex_state = 10, .external_lex_state = 2}, - [609] = {.lex_state = 10, .external_lex_state = 2}, - [610] = {.lex_state = 10, .external_lex_state = 2}, - [611] = {.lex_state = 10, .external_lex_state = 2}, - [612] = {.lex_state = 10}, - [613] = {.lex_state = 10, .external_lex_state = 2}, - [614] = {.lex_state = 10, .external_lex_state = 2}, - [615] = {.lex_state = 10, .external_lex_state = 2}, - [616] = {.lex_state = 10, .external_lex_state = 2}, - [617] = {.lex_state = 10, .external_lex_state = 2}, - [618] = {.lex_state = 10, .external_lex_state = 2}, - [619] = {.lex_state = 10}, - [620] = {.lex_state = 10, .external_lex_state = 2}, - [621] = {.lex_state = 10, .external_lex_state = 2}, - [622] = {.lex_state = 10}, - [623] = {.lex_state = 10, .external_lex_state = 2}, - [624] = {.lex_state = 10}, - [625] = {.lex_state = 10, .external_lex_state = 2}, - [626] = {.lex_state = 10, .external_lex_state = 2}, - [627] = {.lex_state = 10, .external_lex_state = 2}, - [628] = {.lex_state = 10}, - [629] = {.lex_state = 10, .external_lex_state = 2}, - [630] = {.lex_state = 10, .external_lex_state = 2}, - [631] = {.lex_state = 10, .external_lex_state = 2}, - [632] = {.lex_state = 10, .external_lex_state = 2}, - [633] = {.lex_state = 10}, - [634] = {.lex_state = 10}, - [635] = {.lex_state = 10, .external_lex_state = 2}, - [636] = {.lex_state = 10}, - [637] = {.lex_state = 10}, - [638] = {.lex_state = 10}, - [639] = {.lex_state = 10}, - [640] = {.lex_state = 10}, - [641] = {.lex_state = 10}, + [204] = {.lex_state = 71}, + [205] = {.lex_state = 71}, + [206] = {.lex_state = 71}, + [207] = {.lex_state = 71}, + [208] = {.lex_state = 71}, + [209] = {.lex_state = 71}, + [210] = {.lex_state = 71}, + [211] = {.lex_state = 71}, + [212] = {.lex_state = 71}, + [213] = {.lex_state = 71}, + [214] = {.lex_state = 71}, + [215] = {.lex_state = 71}, + [216] = {.lex_state = 71}, + [217] = {.lex_state = 71}, + [218] = {.lex_state = 71}, + [219] = {.lex_state = 71}, + [220] = {.lex_state = 71}, + [221] = {.lex_state = 71}, + [222] = {.lex_state = 71}, + [223] = {.lex_state = 71}, + [224] = {.lex_state = 71}, + [225] = {.lex_state = 71}, + [226] = {.lex_state = 71}, + [227] = {.lex_state = 71}, + [228] = {.lex_state = 71}, + [229] = {.lex_state = 71}, + [230] = {.lex_state = 71}, + [231] = {.lex_state = 71}, + [232] = {.lex_state = 71}, + [233] = {.lex_state = 71}, + [234] = {.lex_state = 71}, + [235] = {.lex_state = 71}, + [236] = {.lex_state = 71}, + [237] = {.lex_state = 71}, + [238] = {.lex_state = 71}, + [239] = {.lex_state = 71}, + [240] = {.lex_state = 71}, + [241] = {.lex_state = 71}, + [242] = {.lex_state = 71}, + [243] = {.lex_state = 71}, + [244] = {.lex_state = 71}, + [245] = {.lex_state = 71}, + [246] = {.lex_state = 71}, + [247] = {.lex_state = 71}, + [248] = {.lex_state = 71}, + [249] = {.lex_state = 71}, + [250] = {.lex_state = 71}, + [251] = {.lex_state = 71}, + [252] = {.lex_state = 71}, + [253] = {.lex_state = 71}, + [254] = {.lex_state = 71}, + [255] = {.lex_state = 71}, + [256] = {.lex_state = 71}, + [257] = {.lex_state = 71}, + [258] = {.lex_state = 71}, + [259] = {.lex_state = 71}, + [260] = {.lex_state = 71}, + [261] = {.lex_state = 71}, + [262] = {.lex_state = 71}, + [263] = {.lex_state = 71}, + [264] = {.lex_state = 71}, + [265] = {.lex_state = 71}, + [266] = {.lex_state = 71}, + [267] = {.lex_state = 71}, + [268] = {.lex_state = 71}, + [269] = {.lex_state = 71}, + [270] = {.lex_state = 71}, + [271] = {.lex_state = 71}, + [272] = {.lex_state = 71}, + [273] = {.lex_state = 71}, + [274] = {.lex_state = 71}, + [275] = {.lex_state = 71}, + [276] = {.lex_state = 71}, + [277] = {.lex_state = 71}, + [278] = {.lex_state = 71}, + [279] = {.lex_state = 71}, + [280] = {.lex_state = 71}, + [281] = {.lex_state = 71}, + [282] = {.lex_state = 71}, + [283] = {.lex_state = 71}, + [284] = {.lex_state = 71}, + [285] = {.lex_state = 71}, + [286] = {.lex_state = 71}, + [287] = {.lex_state = 71}, + [288] = {.lex_state = 71}, + [289] = {.lex_state = 71}, + [290] = {.lex_state = 71}, + [291] = {.lex_state = 71}, + [292] = {.lex_state = 71}, + [293] = {.lex_state = 71}, + [294] = {.lex_state = 71}, + [295] = {.lex_state = 71}, + [296] = {.lex_state = 71}, + [297] = {.lex_state = 71}, + [298] = {.lex_state = 71}, + [299] = {.lex_state = 71}, + [300] = {.lex_state = 71}, + [301] = {.lex_state = 71}, + [302] = {.lex_state = 71}, + [303] = {.lex_state = 71}, + [304] = {.lex_state = 71}, + [305] = {.lex_state = 71}, + [306] = {.lex_state = 71}, + [307] = {.lex_state = 71}, + [308] = {.lex_state = 71}, + [309] = {.lex_state = 71}, + [310] = {.lex_state = 71}, + [311] = {.lex_state = 71}, + [312] = {.lex_state = 71}, + [313] = {.lex_state = 71}, + [314] = {.lex_state = 71}, + [315] = {.lex_state = 71}, + [316] = {.lex_state = 71}, + [317] = {.lex_state = 71}, + [318] = {.lex_state = 71}, + [319] = {.lex_state = 71}, + [320] = {.lex_state = 71}, + [321] = {.lex_state = 71}, + [322] = {.lex_state = 71}, + [323] = {.lex_state = 71}, + [324] = {.lex_state = 71}, + [325] = {.lex_state = 71}, + [326] = {.lex_state = 71}, + [327] = {.lex_state = 71}, + [328] = {.lex_state = 71}, + [329] = {.lex_state = 71}, + [330] = {.lex_state = 71}, + [331] = {.lex_state = 71}, + [332] = {.lex_state = 71}, + [333] = {.lex_state = 71}, + [334] = {.lex_state = 71}, + [335] = {.lex_state = 71}, + [336] = {.lex_state = 71}, + [337] = {.lex_state = 71}, + [338] = {.lex_state = 71}, + [339] = {.lex_state = 71}, + [340] = {.lex_state = 71}, + [341] = {.lex_state = 71}, + [342] = {.lex_state = 71}, + [343] = {.lex_state = 71}, + [344] = {.lex_state = 71}, + [345] = {.lex_state = 71}, + [346] = {.lex_state = 71}, + [347] = {.lex_state = 71}, + [348] = {.lex_state = 71}, + [349] = {.lex_state = 71}, + [350] = {.lex_state = 71}, + [351] = {.lex_state = 71}, + [352] = {.lex_state = 71}, + [353] = {.lex_state = 71}, + [354] = {.lex_state = 71}, + [355] = {.lex_state = 71}, + [356] = {.lex_state = 71}, + [357] = {.lex_state = 71}, + [358] = {.lex_state = 71}, + [359] = {.lex_state = 71}, + [360] = {.lex_state = 71}, + [361] = {.lex_state = 71}, + [362] = {.lex_state = 71}, + [363] = {.lex_state = 71}, + [364] = {.lex_state = 71}, + [365] = {.lex_state = 71}, + [366] = {.lex_state = 71}, + [367] = {.lex_state = 71}, + [368] = {.lex_state = 71}, + [369] = {.lex_state = 71}, + [370] = {.lex_state = 71}, + [371] = {.lex_state = 71}, + [372] = {.lex_state = 71}, + [373] = {.lex_state = 71}, + [374] = {.lex_state = 71}, + [375] = {.lex_state = 71}, + [376] = {.lex_state = 71}, + [377] = {.lex_state = 71}, + [378] = {.lex_state = 71}, + [379] = {.lex_state = 71}, + [380] = {.lex_state = 71}, + [381] = {.lex_state = 71}, + [382] = {.lex_state = 71}, + [383] = {.lex_state = 71}, + [384] = {.lex_state = 71}, + [385] = {.lex_state = 71}, + [386] = {.lex_state = 71}, + [387] = {.lex_state = 71}, + [388] = {.lex_state = 71}, + [389] = {.lex_state = 71}, + [390] = {.lex_state = 71}, + [391] = {.lex_state = 71}, + [392] = {.lex_state = 71}, + [393] = {.lex_state = 71}, + [394] = {.lex_state = 71}, + [395] = {.lex_state = 71}, + [396] = {.lex_state = 71}, + [397] = {.lex_state = 71}, + [398] = {.lex_state = 71}, + [399] = {.lex_state = 71}, + [400] = {.lex_state = 71}, + [401] = {.lex_state = 71}, + [402] = {.lex_state = 71}, + [403] = {.lex_state = 71}, + [404] = {.lex_state = 71}, + [405] = {.lex_state = 71}, + [406] = {.lex_state = 71}, + [407] = {.lex_state = 71}, + [408] = {.lex_state = 71}, + [409] = {.lex_state = 71}, + [410] = {.lex_state = 71}, + [411] = {.lex_state = 71}, + [412] = {.lex_state = 71}, + [413] = {.lex_state = 71}, + [414] = {.lex_state = 71}, + [415] = {.lex_state = 71}, + [416] = {.lex_state = 71}, + [417] = {.lex_state = 71}, + [418] = {.lex_state = 71}, + [419] = {.lex_state = 71}, + [420] = {.lex_state = 71}, + [421] = {.lex_state = 71}, + [422] = {.lex_state = 71}, + [423] = {.lex_state = 71}, + [424] = {.lex_state = 71}, + [425] = {.lex_state = 71}, + [426] = {.lex_state = 71}, + [427] = {.lex_state = 71}, + [428] = {.lex_state = 71}, + [429] = {.lex_state = 71}, + [430] = {.lex_state = 71}, + [431] = {.lex_state = 71}, + [432] = {.lex_state = 71}, + [433] = {.lex_state = 71}, + [434] = {.lex_state = 71}, + [435] = {.lex_state = 71}, + [436] = {.lex_state = 71, .external_lex_state = 2}, + [437] = {.lex_state = 71, .external_lex_state = 2}, + [438] = {.lex_state = 71, .external_lex_state = 2}, + [439] = {.lex_state = 71, .external_lex_state = 2}, + [440] = {.lex_state = 71, .external_lex_state = 2}, + [441] = {.lex_state = 71, .external_lex_state = 2}, + [442] = {.lex_state = 71, .external_lex_state = 2}, + [443] = {.lex_state = 71, .external_lex_state = 2}, + [444] = {.lex_state = 71, .external_lex_state = 2}, + [445] = {.lex_state = 71, .external_lex_state = 2}, + [446] = {.lex_state = 71, .external_lex_state = 2}, + [447] = {.lex_state = 71, .external_lex_state = 2}, + [448] = {.lex_state = 71, .external_lex_state = 2}, + [449] = {.lex_state = 71, .external_lex_state = 2}, + [450] = {.lex_state = 71, .external_lex_state = 2}, + [451] = {.lex_state = 71, .external_lex_state = 2}, + [452] = {.lex_state = 71, .external_lex_state = 2}, + [453] = {.lex_state = 71, .external_lex_state = 2}, + [454] = {.lex_state = 71, .external_lex_state = 2}, + [455] = {.lex_state = 71, .external_lex_state = 2}, + [456] = {.lex_state = 71}, + [457] = {.lex_state = 71}, + [458] = {.lex_state = 71}, + [459] = {.lex_state = 71}, + [460] = {.lex_state = 71}, + [461] = {.lex_state = 71}, + [462] = {.lex_state = 71}, + [463] = {.lex_state = 71}, + [464] = {.lex_state = 71}, + [465] = {.lex_state = 71}, + [466] = {.lex_state = 71}, + [467] = {.lex_state = 71}, + [468] = {.lex_state = 71}, + [469] = {.lex_state = 71}, + [470] = {.lex_state = 71}, + [471] = {.lex_state = 71}, + [472] = {.lex_state = 71}, + [473] = {.lex_state = 71}, + [474] = {.lex_state = 71}, + [475] = {.lex_state = 71}, + [476] = {.lex_state = 71}, + [477] = {.lex_state = 71}, + [478] = {.lex_state = 71}, + [479] = {.lex_state = 71}, + [480] = {.lex_state = 71}, + [481] = {.lex_state = 71}, + [482] = {.lex_state = 71}, + [483] = {.lex_state = 71}, + [484] = {.lex_state = 71}, + [485] = {.lex_state = 71}, + [486] = {.lex_state = 71}, + [487] = {.lex_state = 71}, + [488] = {.lex_state = 71}, + [489] = {.lex_state = 71}, + [490] = {.lex_state = 71}, + [491] = {.lex_state = 71}, + [492] = {.lex_state = 71}, + [493] = {.lex_state = 71}, + [494] = {.lex_state = 71}, + [495] = {.lex_state = 71}, + [496] = {.lex_state = 71}, + [497] = {.lex_state = 71}, + [498] = {.lex_state = 71}, + [499] = {.lex_state = 71}, + [500] = {.lex_state = 71}, + [501] = {.lex_state = 71}, + [502] = {.lex_state = 71}, + [503] = {.lex_state = 71}, + [504] = {.lex_state = 71}, + [505] = {.lex_state = 71}, + [506] = {.lex_state = 71}, + [507] = {.lex_state = 71}, + [508] = {.lex_state = 71}, + [509] = {.lex_state = 71}, + [510] = {.lex_state = 71}, + [511] = {.lex_state = 71}, + [512] = {.lex_state = 71}, + [513] = {.lex_state = 71}, + [514] = {.lex_state = 71}, + [515] = {.lex_state = 71}, + [516] = {.lex_state = 71}, + [517] = {.lex_state = 71}, + [518] = {.lex_state = 71}, + [519] = {.lex_state = 71}, + [520] = {.lex_state = 71}, + [521] = {.lex_state = 71}, + [522] = {.lex_state = 71}, + [523] = {.lex_state = 71}, + [524] = {.lex_state = 71}, + [525] = {.lex_state = 71}, + [526] = {.lex_state = 71}, + [527] = {.lex_state = 71}, + [528] = {.lex_state = 71}, + [529] = {.lex_state = 71}, + [530] = {.lex_state = 71}, + [531] = {.lex_state = 71}, + [532] = {.lex_state = 71}, + [533] = {.lex_state = 71}, + [534] = {.lex_state = 71}, + [535] = {.lex_state = 71}, + [536] = {.lex_state = 71}, + [537] = {.lex_state = 71}, + [538] = {.lex_state = 71}, + [539] = {.lex_state = 71}, + [540] = {.lex_state = 71}, + [541] = {.lex_state = 71}, + [542] = {.lex_state = 71}, + [543] = {.lex_state = 71}, + [544] = {.lex_state = 71}, + [545] = {.lex_state = 71}, + [546] = {.lex_state = 71}, + [547] = {.lex_state = 71}, + [548] = {.lex_state = 71}, + [549] = {.lex_state = 71}, + [550] = {.lex_state = 71}, + [551] = {.lex_state = 71}, + [552] = {.lex_state = 71}, + [553] = {.lex_state = 71}, + [554] = {.lex_state = 71}, + [555] = {.lex_state = 71}, + [556] = {.lex_state = 71}, + [557] = {.lex_state = 71}, + [558] = {.lex_state = 71}, + [559] = {.lex_state = 71}, + [560] = {.lex_state = 71}, + [561] = {.lex_state = 71}, + [562] = {.lex_state = 71}, + [563] = {.lex_state = 71}, + [564] = {.lex_state = 71}, + [565] = {.lex_state = 71}, + [566] = {.lex_state = 71}, + [567] = {.lex_state = 71}, + [568] = {.lex_state = 71}, + [569] = {.lex_state = 71}, + [570] = {.lex_state = 71}, + [571] = {.lex_state = 71}, + [572] = {.lex_state = 71}, + [573] = {.lex_state = 71}, + [574] = {.lex_state = 72}, + [575] = {.lex_state = 72}, + [576] = {.lex_state = 72}, + [577] = {.lex_state = 72}, + [578] = {.lex_state = 72}, + [579] = {.lex_state = 72}, + [580] = {.lex_state = 72}, + [581] = {.lex_state = 72}, + [582] = {.lex_state = 72}, + [583] = {.lex_state = 72}, + [584] = {.lex_state = 72}, + [585] = {.lex_state = 72}, + [586] = {.lex_state = 72}, + [587] = {.lex_state = 72}, + [588] = {.lex_state = 72}, + [589] = {.lex_state = 72}, + [590] = {.lex_state = 72}, + [591] = {.lex_state = 72}, + [592] = {.lex_state = 72}, + [593] = {.lex_state = 72}, + [594] = {.lex_state = 72}, + [595] = {.lex_state = 72}, + [596] = {.lex_state = 72}, + [597] = {.lex_state = 72}, + [598] = {.lex_state = 72}, + [599] = {.lex_state = 72}, + [600] = {.lex_state = 72, .external_lex_state = 2}, + [601] = {.lex_state = 72, .external_lex_state = 2}, + [602] = {.lex_state = 72, .external_lex_state = 2}, + [603] = {.lex_state = 72, .external_lex_state = 2}, + [604] = {.lex_state = 72}, + [605] = {.lex_state = 72}, + [606] = {.lex_state = 72, .external_lex_state = 2}, + [607] = {.lex_state = 72}, + [608] = {.lex_state = 72, .external_lex_state = 2}, + [609] = {.lex_state = 72, .external_lex_state = 2}, + [610] = {.lex_state = 72, .external_lex_state = 2}, + [611] = {.lex_state = 72, .external_lex_state = 2}, + [612] = {.lex_state = 72}, + [613] = {.lex_state = 72, .external_lex_state = 2}, + [614] = {.lex_state = 72, .external_lex_state = 2}, + [615] = {.lex_state = 72, .external_lex_state = 2}, + [616] = {.lex_state = 72, .external_lex_state = 2}, + [617] = {.lex_state = 72, .external_lex_state = 2}, + [618] = {.lex_state = 72, .external_lex_state = 2}, + [619] = {.lex_state = 72}, + [620] = {.lex_state = 72, .external_lex_state = 2}, + [621] = {.lex_state = 72, .external_lex_state = 2}, + [622] = {.lex_state = 72}, + [623] = {.lex_state = 72, .external_lex_state = 2}, + [624] = {.lex_state = 72}, + [625] = {.lex_state = 72, .external_lex_state = 2}, + [626] = {.lex_state = 72, .external_lex_state = 2}, + [627] = {.lex_state = 72, .external_lex_state = 2}, + [628] = {.lex_state = 72}, + [629] = {.lex_state = 72, .external_lex_state = 2}, + [630] = {.lex_state = 72, .external_lex_state = 2}, + [631] = {.lex_state = 72, .external_lex_state = 2}, + [632] = {.lex_state = 72, .external_lex_state = 2}, + [633] = {.lex_state = 72}, + [634] = {.lex_state = 72}, + [635] = {.lex_state = 72, .external_lex_state = 2}, + [636] = {.lex_state = 72}, + [637] = {.lex_state = 72}, + [638] = {.lex_state = 72}, + [639] = {.lex_state = 72}, + [640] = {.lex_state = 72}, + [641] = {.lex_state = 72}, [642] = {.lex_state = 9}, - [643] = {.lex_state = 76}, - [644] = {.lex_state = 76}, - [645] = {.lex_state = 12}, - [646] = {.lex_state = 11}, - [647] = {.lex_state = 11}, - [648] = {.lex_state = 12}, - [649] = {.lex_state = 11}, - [650] = {.lex_state = 12}, - [651] = {.lex_state = 11}, - [652] = {.lex_state = 11}, - [653] = {.lex_state = 12}, - [654] = {.lex_state = 11}, - [655] = {.lex_state = 11}, - [656] = {.lex_state = 20}, - [657] = {.lex_state = 20}, - [658] = {.lex_state = 12}, - [659] = {.lex_state = 11}, - [660] = {.lex_state = 20}, - [661] = {.lex_state = 11}, - [662] = {.lex_state = 16}, - [663] = {.lex_state = 11}, - [664] = {.lex_state = 16}, - [665] = {.lex_state = 11}, - [666] = {.lex_state = 11}, - [667] = {.lex_state = 11}, - [668] = {.lex_state = 20}, - [669] = {.lex_state = 20}, - [670] = {.lex_state = 11}, - [671] = {.lex_state = 12}, - [672] = {.lex_state = 11}, - [673] = {.lex_state = 11}, - [674] = {.lex_state = 11}, - [675] = {.lex_state = 11}, - [676] = {.lex_state = 11}, - [677] = {.lex_state = 11}, - [678] = {.lex_state = 11}, - [679] = {.lex_state = 11}, - [680] = {.lex_state = 11}, - [681] = {.lex_state = 12}, - [682] = {.lex_state = 11}, - [683] = {.lex_state = 20}, - [684] = {.lex_state = 12}, - [685] = {.lex_state = 12}, - [686] = {.lex_state = 12}, - [687] = {.lex_state = 17}, - [688] = {.lex_state = 17}, - [689] = {.lex_state = 12}, - [690] = {.lex_state = 12}, - [691] = {.lex_state = 12}, - [692] = {.lex_state = 12}, - [693] = {.lex_state = 20}, - [694] = {.lex_state = 12}, - [695] = {.lex_state = 12}, - [696] = {.lex_state = 12}, - [697] = {.lex_state = 12}, - [698] = {.lex_state = 12}, - [699] = {.lex_state = 12}, - [700] = {.lex_state = 12}, - [701] = {.lex_state = 12}, - [702] = {.lex_state = 11}, - [703] = {.lex_state = 12}, - [704] = {.lex_state = 12}, - [705] = {.lex_state = 17}, - [706] = {.lex_state = 12}, - [707] = {.lex_state = 12}, - [708] = {.lex_state = 12}, - [709] = {.lex_state = 12}, - [710] = {.lex_state = 12}, - [711] = {.lex_state = 12}, - [712] = {.lex_state = 12}, - [713] = {.lex_state = 12}, - [714] = {.lex_state = 12}, - [715] = {.lex_state = 12}, - [716] = {.lex_state = 17}, - [717] = {.lex_state = 12}, - [718] = {.lex_state = 12}, - [719] = {.lex_state = 12}, - [720] = {.lex_state = 17}, - [721] = {.lex_state = 11}, - [722] = {.lex_state = 12}, - [723] = {.lex_state = 12}, - [724] = {.lex_state = 12}, - [725] = {.lex_state = 12}, - [726] = {.lex_state = 12}, - [727] = {.lex_state = 12}, - [728] = {.lex_state = 12}, - [729] = {.lex_state = 12}, - [730] = {.lex_state = 12}, - [731] = {.lex_state = 12}, - [732] = {.lex_state = 12}, - [733] = {.lex_state = 12}, - [734] = {.lex_state = 12}, - [735] = {.lex_state = 12}, - [736] = {.lex_state = 12}, - [737] = {.lex_state = 12}, - [738] = {.lex_state = 12}, - [739] = {.lex_state = 12}, - [740] = {.lex_state = 12}, - [741] = {.lex_state = 17}, - [742] = {.lex_state = 12}, - [743] = {.lex_state = 12}, - [744] = {.lex_state = 12}, - [745] = {.lex_state = 12}, - [746] = {.lex_state = 12}, - [747] = {.lex_state = 12}, - [748] = {.lex_state = 12}, - [749] = {.lex_state = 12}, - [750] = {.lex_state = 12}, - [751] = {.lex_state = 12}, - [752] = {.lex_state = 12}, - [753] = {.lex_state = 12}, - [754] = {.lex_state = 12}, - [755] = {.lex_state = 12}, - [756] = {.lex_state = 12}, - [757] = {.lex_state = 12}, - [758] = {.lex_state = 12}, - [759] = {.lex_state = 12}, - [760] = {.lex_state = 12}, - [761] = {.lex_state = 12}, - [762] = {.lex_state = 12}, - [763] = {.lex_state = 12}, - [764] = {.lex_state = 12}, - [765] = {.lex_state = 12, .external_lex_state = 2}, - [766] = {.lex_state = 11, .external_lex_state = 2}, - [767] = {.lex_state = 11, .external_lex_state = 2}, - [768] = {.lex_state = 13}, - [769] = {.lex_state = 12}, - [770] = {.lex_state = 11, .external_lex_state = 2}, - [771] = {.lex_state = 11, .external_lex_state = 2}, - [772] = {.lex_state = 11, .external_lex_state = 2}, - [773] = {.lex_state = 12}, - [774] = {.lex_state = 11, .external_lex_state = 2}, - [775] = {.lex_state = 12}, - [776] = {.lex_state = 12, .external_lex_state = 2}, + [643] = {.lex_state = 73}, + [644] = {.lex_state = 73}, + [645] = {.lex_state = 11}, + [646] = {.lex_state = 13}, + [647] = {.lex_state = 13}, + [648] = {.lex_state = 11}, + [649] = {.lex_state = 13}, + [650] = {.lex_state = 11}, + [651] = {.lex_state = 13}, + [652] = {.lex_state = 13}, + [653] = {.lex_state = 11}, + [654] = {.lex_state = 13}, + [655] = {.lex_state = 13}, + [656] = {.lex_state = 18}, + [657] = {.lex_state = 18}, + [658] = {.lex_state = 11}, + [659] = {.lex_state = 13}, + [660] = {.lex_state = 18}, + [661] = {.lex_state = 13}, + [662] = {.lex_state = 15}, + [663] = {.lex_state = 13}, + [664] = {.lex_state = 15}, + [665] = {.lex_state = 13}, + [666] = {.lex_state = 13}, + [667] = {.lex_state = 13}, + [668] = {.lex_state = 18}, + [669] = {.lex_state = 18}, + [670] = {.lex_state = 13}, + [671] = {.lex_state = 11}, + [672] = {.lex_state = 13}, + [673] = {.lex_state = 13}, + [674] = {.lex_state = 13}, + [675] = {.lex_state = 13}, + [676] = {.lex_state = 13}, + [677] = {.lex_state = 13}, + [678] = {.lex_state = 13}, + [679] = {.lex_state = 13}, + [680] = {.lex_state = 13}, + [681] = {.lex_state = 11}, + [682] = {.lex_state = 13}, + [683] = {.lex_state = 18}, + [684] = {.lex_state = 11}, + [685] = {.lex_state = 11}, + [686] = {.lex_state = 11}, + [687] = {.lex_state = 16}, + [688] = {.lex_state = 16}, + [689] = {.lex_state = 11}, + [690] = {.lex_state = 11}, + [691] = {.lex_state = 11}, + [692] = {.lex_state = 11}, + [693] = {.lex_state = 18}, + [694] = {.lex_state = 11}, + [695] = {.lex_state = 11}, + [696] = {.lex_state = 11}, + [697] = {.lex_state = 11}, + [698] = {.lex_state = 11}, + [699] = {.lex_state = 11}, + [700] = {.lex_state = 11}, + [701] = {.lex_state = 11}, + [702] = {.lex_state = 13}, + [703] = {.lex_state = 11}, + [704] = {.lex_state = 11}, + [705] = {.lex_state = 16}, + [706] = {.lex_state = 11}, + [707] = {.lex_state = 11}, + [708] = {.lex_state = 11}, + [709] = {.lex_state = 11}, + [710] = {.lex_state = 11}, + [711] = {.lex_state = 11}, + [712] = {.lex_state = 11}, + [713] = {.lex_state = 11}, + [714] = {.lex_state = 11}, + [715] = {.lex_state = 11}, + [716] = {.lex_state = 16}, + [717] = {.lex_state = 11}, + [718] = {.lex_state = 11}, + [719] = {.lex_state = 11}, + [720] = {.lex_state = 16}, + [721] = {.lex_state = 13}, + [722] = {.lex_state = 11}, + [723] = {.lex_state = 11}, + [724] = {.lex_state = 11}, + [725] = {.lex_state = 11}, + [726] = {.lex_state = 11}, + [727] = {.lex_state = 11}, + [728] = {.lex_state = 11}, + [729] = {.lex_state = 11}, + [730] = {.lex_state = 11}, + [731] = {.lex_state = 11}, + [732] = {.lex_state = 11}, + [733] = {.lex_state = 11}, + [734] = {.lex_state = 11}, + [735] = {.lex_state = 11}, + [736] = {.lex_state = 11}, + [737] = {.lex_state = 11}, + [738] = {.lex_state = 11}, + [739] = {.lex_state = 11}, + [740] = {.lex_state = 11}, + [741] = {.lex_state = 16}, + [742] = {.lex_state = 11}, + [743] = {.lex_state = 11}, + [744] = {.lex_state = 11}, + [745] = {.lex_state = 11}, + [746] = {.lex_state = 11}, + [747] = {.lex_state = 11}, + [748] = {.lex_state = 11}, + [749] = {.lex_state = 11}, + [750] = {.lex_state = 11}, + [751] = {.lex_state = 11}, + [752] = {.lex_state = 11}, + [753] = {.lex_state = 11}, + [754] = {.lex_state = 11}, + [755] = {.lex_state = 11}, + [756] = {.lex_state = 11}, + [757] = {.lex_state = 11}, + [758] = {.lex_state = 11}, + [759] = {.lex_state = 11}, + [760] = {.lex_state = 11}, + [761] = {.lex_state = 11}, + [762] = {.lex_state = 11}, + [763] = {.lex_state = 11}, + [764] = {.lex_state = 11}, + [765] = {.lex_state = 11, .external_lex_state = 2}, + [766] = {.lex_state = 13, .external_lex_state = 2}, + [767] = {.lex_state = 13, .external_lex_state = 2}, + [768] = {.lex_state = 12}, + [769] = {.lex_state = 11}, + [770] = {.lex_state = 13, .external_lex_state = 2}, + [771] = {.lex_state = 13, .external_lex_state = 2}, + [772] = {.lex_state = 13, .external_lex_state = 2}, + [773] = {.lex_state = 11}, + [774] = {.lex_state = 13, .external_lex_state = 2}, + [775] = {.lex_state = 11}, + [776] = {.lex_state = 11, .external_lex_state = 2}, [777] = {.lex_state = 7}, - [778] = {.lex_state = 12}, - [779] = {.lex_state = 12}, - [780] = {.lex_state = 11, .external_lex_state = 2}, - [781] = {.lex_state = 13}, - [782] = {.lex_state = 12, .external_lex_state = 2}, - [783] = {.lex_state = 12, .external_lex_state = 2}, - [784] = {.lex_state = 11, .external_lex_state = 2}, - [785] = {.lex_state = 11, .external_lex_state = 2}, - [786] = {.lex_state = 11, .external_lex_state = 2}, - [787] = {.lex_state = 11, .external_lex_state = 2}, - [788] = {.lex_state = 11, .external_lex_state = 2}, - [789] = {.lex_state = 11, .external_lex_state = 2}, - [790] = {.lex_state = 12, .external_lex_state = 2}, - [791] = {.lex_state = 11, .external_lex_state = 2}, + [778] = {.lex_state = 11}, + [779] = {.lex_state = 11}, + [780] = {.lex_state = 13, .external_lex_state = 2}, + [781] = {.lex_state = 12}, + [782] = {.lex_state = 11, .external_lex_state = 2}, + [783] = {.lex_state = 11, .external_lex_state = 2}, + [784] = {.lex_state = 13, .external_lex_state = 2}, + [785] = {.lex_state = 13, .external_lex_state = 2}, + [786] = {.lex_state = 13, .external_lex_state = 2}, + [787] = {.lex_state = 13, .external_lex_state = 2}, + [788] = {.lex_state = 13, .external_lex_state = 2}, + [789] = {.lex_state = 13, .external_lex_state = 2}, + [790] = {.lex_state = 11, .external_lex_state = 2}, + [791] = {.lex_state = 13, .external_lex_state = 2}, [792] = {.lex_state = 7}, - [793] = {.lex_state = 11, .external_lex_state = 2}, - [794] = {.lex_state = 12}, - [795] = {.lex_state = 11, .external_lex_state = 2}, - [796] = {.lex_state = 11, .external_lex_state = 2}, - [797] = {.lex_state = 11, .external_lex_state = 2}, - [798] = {.lex_state = 11, .external_lex_state = 2}, - [799] = {.lex_state = 11, .external_lex_state = 2}, - [800] = {.lex_state = 11, .external_lex_state = 2}, - [801] = {.lex_state = 12, .external_lex_state = 2}, - [802] = {.lex_state = 11, .external_lex_state = 2}, - [803] = {.lex_state = 11, .external_lex_state = 2}, - [804] = {.lex_state = 11, .external_lex_state = 2}, - [805] = {.lex_state = 12, .external_lex_state = 2}, - [806] = {.lex_state = 12, .external_lex_state = 2}, - [807] = {.lex_state = 17}, - [808] = {.lex_state = 12, .external_lex_state = 2}, - [809] = {.lex_state = 12, .external_lex_state = 2}, - [810] = {.lex_state = 12, .external_lex_state = 2}, - [811] = {.lex_state = 17}, - [812] = {.lex_state = 12, .external_lex_state = 2}, - [813] = {.lex_state = 17}, - [814] = {.lex_state = 17}, - [815] = {.lex_state = 12, .external_lex_state = 2}, - [816] = {.lex_state = 17}, - [817] = {.lex_state = 12, .external_lex_state = 2}, - [818] = {.lex_state = 11, .external_lex_state = 2}, - [819] = {.lex_state = 12, .external_lex_state = 2}, - [820] = {.lex_state = 12, .external_lex_state = 2}, - [821] = {.lex_state = 17}, - [822] = {.lex_state = 12, .external_lex_state = 2}, - [823] = {.lex_state = 12, .external_lex_state = 2}, - [824] = {.lex_state = 12, .external_lex_state = 2}, - [825] = {.lex_state = 17}, - [826] = {.lex_state = 12, .external_lex_state = 2}, - [827] = {.lex_state = 13}, - [828] = {.lex_state = 12, .external_lex_state = 2}, - [829] = {.lex_state = 12, .external_lex_state = 2}, - [830] = {.lex_state = 17}, - [831] = {.lex_state = 12, .external_lex_state = 2}, - [832] = {.lex_state = 12, .external_lex_state = 2}, - [833] = {.lex_state = 17}, - [834] = {.lex_state = 13}, - [835] = {.lex_state = 12, .external_lex_state = 2}, - [836] = {.lex_state = 12, .external_lex_state = 2}, - [837] = {.lex_state = 12, .external_lex_state = 2}, - [838] = {.lex_state = 12, .external_lex_state = 2}, - [839] = {.lex_state = 17}, - [840] = {.lex_state = 12, .external_lex_state = 2}, - [841] = {.lex_state = 12, .external_lex_state = 2}, - [842] = {.lex_state = 12, .external_lex_state = 2}, - [843] = {.lex_state = 12, .external_lex_state = 2}, - [844] = {.lex_state = 11, .external_lex_state = 2}, - [845] = {.lex_state = 12, .external_lex_state = 2}, - [846] = {.lex_state = 17}, - [847] = {.lex_state = 12, .external_lex_state = 2}, - [848] = {.lex_state = 17}, - [849] = {.lex_state = 12, .external_lex_state = 2}, - [850] = {.lex_state = 17}, - [851] = {.lex_state = 12, .external_lex_state = 2}, - [852] = {.lex_state = 12, .external_lex_state = 2}, - [853] = {.lex_state = 17}, - [854] = {.lex_state = 17}, - [855] = {.lex_state = 12, .external_lex_state = 2}, - [856] = {.lex_state = 12, .external_lex_state = 2}, - [857] = {.lex_state = 12, .external_lex_state = 2}, - [858] = {.lex_state = 12, .external_lex_state = 2}, - [859] = {.lex_state = 12, .external_lex_state = 2}, - [860] = {.lex_state = 12, .external_lex_state = 2}, - [861] = {.lex_state = 12, .external_lex_state = 2}, - [862] = {.lex_state = 12, .external_lex_state = 2}, - [863] = {.lex_state = 12, .external_lex_state = 2}, - [864] = {.lex_state = 12, .external_lex_state = 2}, - [865] = {.lex_state = 12, .external_lex_state = 2}, - [866] = {.lex_state = 12, .external_lex_state = 2}, - [867] = {.lex_state = 12, .external_lex_state = 2}, - [868] = {.lex_state = 12, .external_lex_state = 2}, - [869] = {.lex_state = 12, .external_lex_state = 2}, - [870] = {.lex_state = 12, .external_lex_state = 2}, - [871] = {.lex_state = 12, .external_lex_state = 2}, - [872] = {.lex_state = 12, .external_lex_state = 2}, - [873] = {.lex_state = 12, .external_lex_state = 2}, - [874] = {.lex_state = 12, .external_lex_state = 2}, - [875] = {.lex_state = 12, .external_lex_state = 2}, - [876] = {.lex_state = 12, .external_lex_state = 2}, - [877] = {.lex_state = 12, .external_lex_state = 2}, - [878] = {.lex_state = 12, .external_lex_state = 2}, - [879] = {.lex_state = 12, .external_lex_state = 2}, - [880] = {.lex_state = 12, .external_lex_state = 2}, - [881] = {.lex_state = 12, .external_lex_state = 2}, - [882] = {.lex_state = 12, .external_lex_state = 2}, - [883] = {.lex_state = 12, .external_lex_state = 2}, - [884] = {.lex_state = 12, .external_lex_state = 2}, - [885] = {.lex_state = 12, .external_lex_state = 2}, - [886] = {.lex_state = 12, .external_lex_state = 2}, - [887] = {.lex_state = 12, .external_lex_state = 2}, - [888] = {.lex_state = 12, .external_lex_state = 2}, - [889] = {.lex_state = 12, .external_lex_state = 2}, - [890] = {.lex_state = 12, .external_lex_state = 2}, - [891] = {.lex_state = 12, .external_lex_state = 2}, - [892] = {.lex_state = 12, .external_lex_state = 2}, - [893] = {.lex_state = 12, .external_lex_state = 2}, - [894] = {.lex_state = 12}, - [895] = {.lex_state = 12, .external_lex_state = 2}, - [896] = {.lex_state = 12, .external_lex_state = 2}, - [897] = {.lex_state = 12, .external_lex_state = 2}, - [898] = {.lex_state = 12, .external_lex_state = 2}, - [899] = {.lex_state = 12}, - [900] = {.lex_state = 12, .external_lex_state = 2}, - [901] = {.lex_state = 12, .external_lex_state = 2}, - [902] = {.lex_state = 12, .external_lex_state = 2}, - [903] = {.lex_state = 12, .external_lex_state = 2}, - [904] = {.lex_state = 12, .external_lex_state = 2}, - [905] = {.lex_state = 12, .external_lex_state = 2}, - [906] = {.lex_state = 13}, - [907] = {.lex_state = 13}, - [908] = {.lex_state = 13}, - [909] = {.lex_state = 13}, - [910] = {.lex_state = 13}, - [911] = {.lex_state = 13}, - [912] = {.lex_state = 13}, - [913] = {.lex_state = 13}, - [914] = {.lex_state = 13}, - [915] = {.lex_state = 13}, - [916] = {.lex_state = 13}, - [917] = {.lex_state = 13}, - [918] = {.lex_state = 13}, - [919] = {.lex_state = 13}, - [920] = {.lex_state = 13}, - [921] = {.lex_state = 13}, - [922] = {.lex_state = 13}, - [923] = {.lex_state = 13}, - [924] = {.lex_state = 13}, - [925] = {.lex_state = 13}, - [926] = {.lex_state = 13}, - [927] = {.lex_state = 13}, - [928] = {.lex_state = 13}, - [929] = {.lex_state = 13}, - [930] = {.lex_state = 13}, - [931] = {.lex_state = 13}, - [932] = {.lex_state = 13}, - [933] = {.lex_state = 13}, - [934] = {.lex_state = 13}, - [935] = {.lex_state = 13}, - [936] = {.lex_state = 13}, - [937] = {.lex_state = 13}, - [938] = {.lex_state = 13}, - [939] = {.lex_state = 13}, - [940] = {.lex_state = 13}, - [941] = {.lex_state = 13}, - [942] = {.lex_state = 13}, - [943] = {.lex_state = 13}, - [944] = {.lex_state = 13}, - [945] = {.lex_state = 13}, - [946] = {.lex_state = 13}, - [947] = {.lex_state = 13}, - [948] = {.lex_state = 13}, - [949] = {.lex_state = 13}, - [950] = {.lex_state = 13}, - [951] = {.lex_state = 13}, - [952] = {.lex_state = 13}, - [953] = {.lex_state = 13}, - [954] = {.lex_state = 13}, - [955] = {.lex_state = 13}, - [956] = {.lex_state = 14}, - [957] = {.lex_state = 13}, - [958] = {.lex_state = 13}, - [959] = {.lex_state = 13}, - [960] = {.lex_state = 13}, - [961] = {.lex_state = 13}, - [962] = {.lex_state = 13}, - [963] = {.lex_state = 13}, - [964] = {.lex_state = 13}, - [965] = {.lex_state = 13}, - [966] = {.lex_state = 13}, - [967] = {.lex_state = 13}, - [968] = {.lex_state = 13}, - [969] = {.lex_state = 13}, - [970] = {.lex_state = 13}, - [971] = {.lex_state = 13}, - [972] = {.lex_state = 13, .external_lex_state = 2}, - [973] = {.lex_state = 13, .external_lex_state = 2}, - [974] = {.lex_state = 13}, - [975] = {.lex_state = 13}, - [976] = {.lex_state = 13}, - [977] = {.lex_state = 13}, - [978] = {.lex_state = 13}, - [979] = {.lex_state = 13}, - [980] = {.lex_state = 13}, - [981] = {.lex_state = 13}, - [982] = {.lex_state = 13}, - [983] = {.lex_state = 13}, - [984] = {.lex_state = 13}, - [985] = {.lex_state = 13}, - [986] = {.lex_state = 13}, - [987] = {.lex_state = 13}, - [988] = {.lex_state = 13}, - [989] = {.lex_state = 13}, - [990] = {.lex_state = 13}, - [991] = {.lex_state = 13}, - [992] = {.lex_state = 13}, - [993] = {.lex_state = 13}, - [994] = {.lex_state = 13}, - [995] = {.lex_state = 13}, - [996] = {.lex_state = 13}, - [997] = {.lex_state = 13}, - [998] = {.lex_state = 13}, - [999] = {.lex_state = 13}, - [1000] = {.lex_state = 13}, - [1001] = {.lex_state = 13}, - [1002] = {.lex_state = 13}, - [1003] = {.lex_state = 13}, - [1004] = {.lex_state = 13}, - [1005] = {.lex_state = 13}, - [1006] = {.lex_state = 13}, - [1007] = {.lex_state = 13}, - [1008] = {.lex_state = 13}, - [1009] = {.lex_state = 13}, - [1010] = {.lex_state = 13}, - [1011] = {.lex_state = 13}, - [1012] = {.lex_state = 13}, - [1013] = {.lex_state = 13}, - [1014] = {.lex_state = 13}, - [1015] = {.lex_state = 13}, - [1016] = {.lex_state = 13}, - [1017] = {.lex_state = 13}, - [1018] = {.lex_state = 13}, - [1019] = {.lex_state = 13}, - [1020] = {.lex_state = 13}, - [1021] = {.lex_state = 76}, - [1022] = {.lex_state = 13}, - [1023] = {.lex_state = 13}, - [1024] = {.lex_state = 13}, - [1025] = {.lex_state = 13}, - [1026] = {.lex_state = 13}, - [1027] = {.lex_state = 13}, - [1028] = {.lex_state = 13}, - [1029] = {.lex_state = 13}, - [1030] = {.lex_state = 13}, - [1031] = {.lex_state = 13}, - [1032] = {.lex_state = 13}, - [1033] = {.lex_state = 13}, - [1034] = {.lex_state = 13}, - [1035] = {.lex_state = 13}, - [1036] = {.lex_state = 13}, - [1037] = {.lex_state = 13}, - [1038] = {.lex_state = 13}, - [1039] = {.lex_state = 13, .external_lex_state = 2}, - [1040] = {.lex_state = 13, .external_lex_state = 2}, - [1041] = {.lex_state = 13, .external_lex_state = 2}, - [1042] = {.lex_state = 13, .external_lex_state = 2}, - [1043] = {.lex_state = 13, .external_lex_state = 2}, - [1044] = {.lex_state = 13, .external_lex_state = 2}, - [1045] = {.lex_state = 13, .external_lex_state = 2}, - [1046] = {.lex_state = 13, .external_lex_state = 2}, - [1047] = {.lex_state = 13, .external_lex_state = 2}, - [1048] = {.lex_state = 13, .external_lex_state = 2}, - [1049] = {.lex_state = 13, .external_lex_state = 2}, - [1050] = {.lex_state = 13, .external_lex_state = 2}, - [1051] = {.lex_state = 13, .external_lex_state = 2}, - [1052] = {.lex_state = 13, .external_lex_state = 2}, - [1053] = {.lex_state = 13, .external_lex_state = 2}, - [1054] = {.lex_state = 13, .external_lex_state = 2}, - [1055] = {.lex_state = 13, .external_lex_state = 2}, - [1056] = {.lex_state = 76}, - [1057] = {.lex_state = 13, .external_lex_state = 2}, - [1058] = {.lex_state = 13, .external_lex_state = 2}, - [1059] = {.lex_state = 13, .external_lex_state = 2}, - [1060] = {.lex_state = 13, .external_lex_state = 2}, - [1061] = {.lex_state = 13, .external_lex_state = 2}, - [1062] = {.lex_state = 13, .external_lex_state = 2}, - [1063] = {.lex_state = 13, .external_lex_state = 2}, - [1064] = {.lex_state = 13, .external_lex_state = 2}, - [1065] = {.lex_state = 13, .external_lex_state = 2}, - [1066] = {.lex_state = 13, .external_lex_state = 2}, - [1067] = {.lex_state = 13, .external_lex_state = 2}, - [1068] = {.lex_state = 13, .external_lex_state = 2}, - [1069] = {.lex_state = 13, .external_lex_state = 2}, - [1070] = {.lex_state = 13, .external_lex_state = 2}, - [1071] = {.lex_state = 13, .external_lex_state = 2}, - [1072] = {.lex_state = 76}, - [1073] = {.lex_state = 13, .external_lex_state = 2}, - [1074] = {.lex_state = 13, .external_lex_state = 2}, - [1075] = {.lex_state = 13, .external_lex_state = 2}, - [1076] = {.lex_state = 13, .external_lex_state = 2}, - [1077] = {.lex_state = 13, .external_lex_state = 2}, - [1078] = {.lex_state = 13, .external_lex_state = 2}, - [1079] = {.lex_state = 13, .external_lex_state = 2}, - [1080] = {.lex_state = 13, .external_lex_state = 2}, - [1081] = {.lex_state = 13, .external_lex_state = 2}, - [1082] = {.lex_state = 13, .external_lex_state = 2}, - [1083] = {.lex_state = 13, .external_lex_state = 2}, - [1084] = {.lex_state = 13, .external_lex_state = 2}, - [1085] = {.lex_state = 13, .external_lex_state = 2}, - [1086] = {.lex_state = 13, .external_lex_state = 2}, - [1087] = {.lex_state = 13, .external_lex_state = 2}, - [1088] = {.lex_state = 13, .external_lex_state = 2}, - [1089] = {.lex_state = 13, .external_lex_state = 2}, - [1090] = {.lex_state = 13, .external_lex_state = 2}, - [1091] = {.lex_state = 13, .external_lex_state = 2}, - [1092] = {.lex_state = 13, .external_lex_state = 2}, - [1093] = {.lex_state = 13, .external_lex_state = 2}, - [1094] = {.lex_state = 76}, - [1095] = {.lex_state = 76}, - [1096] = {.lex_state = 13, .external_lex_state = 2}, - [1097] = {.lex_state = 13, .external_lex_state = 2}, - [1098] = {.lex_state = 13, .external_lex_state = 2}, - [1099] = {.lex_state = 13, .external_lex_state = 2}, - [1100] = {.lex_state = 13, .external_lex_state = 2}, - [1101] = {.lex_state = 13, .external_lex_state = 2}, - [1102] = {.lex_state = 13, .external_lex_state = 2}, - [1103] = {.lex_state = 13, .external_lex_state = 2}, - [1104] = {.lex_state = 13, .external_lex_state = 2}, - [1105] = {.lex_state = 13, .external_lex_state = 2}, - [1106] = {.lex_state = 13, .external_lex_state = 2}, - [1107] = {.lex_state = 13, .external_lex_state = 2}, - [1108] = {.lex_state = 13, .external_lex_state = 2}, - [1109] = {.lex_state = 13, .external_lex_state = 2}, - [1110] = {.lex_state = 13, .external_lex_state = 2}, - [1111] = {.lex_state = 13, .external_lex_state = 2}, - [1112] = {.lex_state = 13, .external_lex_state = 2}, - [1113] = {.lex_state = 13, .external_lex_state = 2}, - [1114] = {.lex_state = 13, .external_lex_state = 2}, - [1115] = {.lex_state = 13, .external_lex_state = 2}, - [1116] = {.lex_state = 13, .external_lex_state = 2}, - [1117] = {.lex_state = 13, .external_lex_state = 2}, - [1118] = {.lex_state = 13, .external_lex_state = 2}, - [1119] = {.lex_state = 13, .external_lex_state = 2}, - [1120] = {.lex_state = 13, .external_lex_state = 2}, - [1121] = {.lex_state = 13, .external_lex_state = 2}, - [1122] = {.lex_state = 13, .external_lex_state = 2}, - [1123] = {.lex_state = 13, .external_lex_state = 2}, - [1124] = {.lex_state = 13, .external_lex_state = 2}, - [1125] = {.lex_state = 13, .external_lex_state = 2}, - [1126] = {.lex_state = 13, .external_lex_state = 2}, - [1127] = {.lex_state = 13, .external_lex_state = 2}, - [1128] = {.lex_state = 13, .external_lex_state = 2}, - [1129] = {.lex_state = 13, .external_lex_state = 2}, - [1130] = {.lex_state = 13, .external_lex_state = 2}, - [1131] = {.lex_state = 13, .external_lex_state = 2}, - [1132] = {.lex_state = 13, .external_lex_state = 2}, - [1133] = {.lex_state = 76}, - [1134] = {.lex_state = 76}, - [1135] = {.lex_state = 13, .external_lex_state = 2}, - [1136] = {.lex_state = 13, .external_lex_state = 2}, - [1137] = {.lex_state = 13, .external_lex_state = 2}, - [1138] = {.lex_state = 13, .external_lex_state = 2}, - [1139] = {.lex_state = 13, .external_lex_state = 2}, - [1140] = {.lex_state = 13, .external_lex_state = 2}, - [1141] = {.lex_state = 13, .external_lex_state = 2}, - [1142] = {.lex_state = 13, .external_lex_state = 2}, - [1143] = {.lex_state = 13, .external_lex_state = 2}, - [1144] = {.lex_state = 13}, - [1145] = {.lex_state = 13}, - [1146] = {.lex_state = 13}, - [1147] = {.lex_state = 13}, - [1148] = {.lex_state = 13}, - [1149] = {.lex_state = 13}, - [1150] = {.lex_state = 13}, - [1151] = {.lex_state = 13}, - [1152] = {.lex_state = 13}, - [1153] = {.lex_state = 13}, - [1154] = {.lex_state = 13}, - [1155] = {.lex_state = 13}, - [1156] = {.lex_state = 13}, - [1157] = {.lex_state = 14}, - [1158] = {.lex_state = 13}, - [1159] = {.lex_state = 13}, - [1160] = {.lex_state = 13}, - [1161] = {.lex_state = 13}, - [1162] = {.lex_state = 13}, - [1163] = {.lex_state = 13}, - [1164] = {.lex_state = 13}, - [1165] = {.lex_state = 13}, - [1166] = {.lex_state = 13}, - [1167] = {.lex_state = 13}, - [1168] = {.lex_state = 13}, - [1169] = {.lex_state = 13}, - [1170] = {.lex_state = 13}, - [1171] = {.lex_state = 13}, - [1172] = {.lex_state = 13}, - [1173] = {.lex_state = 13}, - [1174] = {.lex_state = 13}, - [1175] = {.lex_state = 13}, - [1176] = {.lex_state = 13}, - [1177] = {.lex_state = 13}, - [1178] = {.lex_state = 13}, - [1179] = {.lex_state = 14}, - [1180] = {.lex_state = 13, .external_lex_state = 2}, - [1181] = {.lex_state = 13}, - [1182] = {.lex_state = 13}, - [1183] = {.lex_state = 13, .external_lex_state = 2}, - [1184] = {.lex_state = 13, .external_lex_state = 2}, - [1185] = {.lex_state = 13}, - [1186] = {.lex_state = 13}, - [1187] = {.lex_state = 13, .external_lex_state = 2}, - [1188] = {.lex_state = 13, .external_lex_state = 2}, - [1189] = {.lex_state = 13}, - [1190] = {.lex_state = 13}, - [1191] = {.lex_state = 13}, - [1192] = {.lex_state = 13}, - [1193] = {.lex_state = 21}, - [1194] = {.lex_state = 13}, - [1195] = {.lex_state = 13}, - [1196] = {.lex_state = 13, .external_lex_state = 2}, - [1197] = {.lex_state = 13, .external_lex_state = 2}, - [1198] = {.lex_state = 13}, - [1199] = {.lex_state = 13, .external_lex_state = 2}, - [1200] = {.lex_state = 13}, - [1201] = {.lex_state = 13}, - [1202] = {.lex_state = 13}, - [1203] = {.lex_state = 76}, - [1204] = {.lex_state = 13}, - [1205] = {.lex_state = 76}, - [1206] = {.lex_state = 13}, - [1207] = {.lex_state = 13}, - [1208] = {.lex_state = 21}, - [1209] = {.lex_state = 21}, - [1210] = {.lex_state = 13}, - [1211] = {.lex_state = 13}, - [1212] = {.lex_state = 13}, - [1213] = {.lex_state = 21}, - [1214] = {.lex_state = 13}, - [1215] = {.lex_state = 21}, - [1216] = {.lex_state = 13}, - [1217] = {.lex_state = 21}, - [1218] = {.lex_state = 13}, - [1219] = {.lex_state = 13}, - [1220] = {.lex_state = 13}, - [1221] = {.lex_state = 13, .external_lex_state = 2}, - [1222] = {.lex_state = 14}, - [1223] = {.lex_state = 13}, - [1224] = {.lex_state = 13}, - [1225] = {.lex_state = 13}, - [1226] = {.lex_state = 14}, - [1227] = {.lex_state = 21}, - [1228] = {.lex_state = 13}, - [1229] = {.lex_state = 21}, - [1230] = {.lex_state = 13}, - [1231] = {.lex_state = 13}, - [1232] = {.lex_state = 13, .external_lex_state = 2}, - [1233] = {.lex_state = 13}, - [1234] = {.lex_state = 13}, - [1235] = {.lex_state = 13}, - [1236] = {.lex_state = 13, .external_lex_state = 2}, - [1237] = {.lex_state = 13}, - [1238] = {.lex_state = 13, .external_lex_state = 2}, - [1239] = {.lex_state = 13}, - [1240] = {.lex_state = 21}, - [1241] = {.lex_state = 13, .external_lex_state = 2}, - [1242] = {.lex_state = 13}, - [1243] = {.lex_state = 13}, - [1244] = {.lex_state = 13}, - [1245] = {.lex_state = 13}, - [1246] = {.lex_state = 13}, - [1247] = {.lex_state = 13}, - [1248] = {.lex_state = 13}, - [1249] = {.lex_state = 13}, - [1250] = {.lex_state = 13}, - [1251] = {.lex_state = 13}, - [1252] = {.lex_state = 13}, - [1253] = {.lex_state = 13}, - [1254] = {.lex_state = 13}, - [1255] = {.lex_state = 13}, - [1256] = {.lex_state = 13}, - [1257] = {.lex_state = 13}, - [1258] = {.lex_state = 13}, - [1259] = {.lex_state = 13}, - [1260] = {.lex_state = 13}, - [1261] = {.lex_state = 13}, - [1262] = {.lex_state = 13}, - [1263] = {.lex_state = 13}, - [1264] = {.lex_state = 13}, - [1265] = {.lex_state = 13}, - [1266] = {.lex_state = 13}, - [1267] = {.lex_state = 13}, - [1268] = {.lex_state = 13}, - [1269] = {.lex_state = 13}, - [1270] = {.lex_state = 13}, - [1271] = {.lex_state = 13}, - [1272] = {.lex_state = 13}, - [1273] = {.lex_state = 13}, - [1274] = {.lex_state = 13}, - [1275] = {.lex_state = 13}, - [1276] = {.lex_state = 13}, - [1277] = {.lex_state = 13}, - [1278] = {.lex_state = 13}, - [1279] = {.lex_state = 13}, - [1280] = {.lex_state = 13}, - [1281] = {.lex_state = 13}, - [1282] = {.lex_state = 13}, - [1283] = {.lex_state = 13}, - [1284] = {.lex_state = 13}, - [1285] = {.lex_state = 76}, - [1286] = {.lex_state = 13}, - [1287] = {.lex_state = 13}, - [1288] = {.lex_state = 13}, - [1289] = {.lex_state = 13}, - [1290] = {.lex_state = 13}, - [1291] = {.lex_state = 13}, - [1292] = {.lex_state = 13}, - [1293] = {.lex_state = 13}, - [1294] = {.lex_state = 13}, - [1295] = {.lex_state = 13}, - [1296] = {.lex_state = 13}, - [1297] = {.lex_state = 13}, - [1298] = {.lex_state = 13}, - [1299] = {.lex_state = 13}, - [1300] = {.lex_state = 13}, - [1301] = {.lex_state = 13}, - [1302] = {.lex_state = 14}, - [1303] = {.lex_state = 13}, - [1304] = {.lex_state = 13}, - [1305] = {.lex_state = 13}, - [1306] = {.lex_state = 13}, - [1307] = {.lex_state = 13}, - [1308] = {.lex_state = 13}, - [1309] = {.lex_state = 14}, - [1310] = {.lex_state = 13}, - [1311] = {.lex_state = 21}, - [1312] = {.lex_state = 76}, - [1313] = {.lex_state = 76}, - [1314] = {.lex_state = 21}, - [1315] = {.lex_state = 21}, - [1316] = {.lex_state = 21}, - [1317] = {.lex_state = 76}, - [1318] = {.lex_state = 21}, - [1319] = {.lex_state = 76}, - [1320] = {.lex_state = 76}, - [1321] = {.lex_state = 76}, - [1322] = {.lex_state = 76}, - [1323] = {.lex_state = 20}, - [1324] = {.lex_state = 20}, - [1325] = {.lex_state = 14}, - [1326] = {.lex_state = 14}, - [1327] = {.lex_state = 14}, - [1328] = {.lex_state = 14}, - [1329] = {.lex_state = 20}, - [1330] = {.lex_state = 14}, - [1331] = {.lex_state = 20}, - [1332] = {.lex_state = 14}, - [1333] = {.lex_state = 20}, - [1334] = {.lex_state = 14}, - [1335] = {.lex_state = 14}, - [1336] = {.lex_state = 14}, - [1337] = {.lex_state = 14}, - [1338] = {.lex_state = 20}, - [1339] = {.lex_state = 14}, - [1340] = {.lex_state = 14}, - [1341] = {.lex_state = 14}, - [1342] = {.lex_state = 14}, - [1343] = {.lex_state = 14}, - [1344] = {.lex_state = 14}, - [1345] = {.lex_state = 14}, - [1346] = {.lex_state = 14}, - [1347] = {.lex_state = 14}, - [1348] = {.lex_state = 14}, - [1349] = {.lex_state = 14}, - [1350] = {.lex_state = 14}, - [1351] = {.lex_state = 76}, - [1352] = {.lex_state = 76}, + [793] = {.lex_state = 13, .external_lex_state = 2}, + [794] = {.lex_state = 11}, + [795] = {.lex_state = 13, .external_lex_state = 2}, + [796] = {.lex_state = 13, .external_lex_state = 2}, + [797] = {.lex_state = 13, .external_lex_state = 2}, + [798] = {.lex_state = 13, .external_lex_state = 2}, + [799] = {.lex_state = 13, .external_lex_state = 2}, + [800] = {.lex_state = 13, .external_lex_state = 2}, + [801] = {.lex_state = 11, .external_lex_state = 2}, + [802] = {.lex_state = 13, .external_lex_state = 2}, + [803] = {.lex_state = 13, .external_lex_state = 2}, + [804] = {.lex_state = 13, .external_lex_state = 2}, + [805] = {.lex_state = 11, .external_lex_state = 2}, + [806] = {.lex_state = 11, .external_lex_state = 2}, + [807] = {.lex_state = 16}, + [808] = {.lex_state = 11, .external_lex_state = 2}, + [809] = {.lex_state = 11, .external_lex_state = 2}, + [810] = {.lex_state = 11, .external_lex_state = 2}, + [811] = {.lex_state = 16}, + [812] = {.lex_state = 11, .external_lex_state = 2}, + [813] = {.lex_state = 16}, + [814] = {.lex_state = 16}, + [815] = {.lex_state = 11, .external_lex_state = 2}, + [816] = {.lex_state = 16}, + [817] = {.lex_state = 11, .external_lex_state = 2}, + [818] = {.lex_state = 13, .external_lex_state = 2}, + [819] = {.lex_state = 11, .external_lex_state = 2}, + [820] = {.lex_state = 11, .external_lex_state = 2}, + [821] = {.lex_state = 16}, + [822] = {.lex_state = 11, .external_lex_state = 2}, + [823] = {.lex_state = 11, .external_lex_state = 2}, + [824] = {.lex_state = 11, .external_lex_state = 2}, + [825] = {.lex_state = 16}, + [826] = {.lex_state = 11, .external_lex_state = 2}, + [827] = {.lex_state = 12}, + [828] = {.lex_state = 11, .external_lex_state = 2}, + [829] = {.lex_state = 11, .external_lex_state = 2}, + [830] = {.lex_state = 16}, + [831] = {.lex_state = 11, .external_lex_state = 2}, + [832] = {.lex_state = 11, .external_lex_state = 2}, + [833] = {.lex_state = 16}, + [834] = {.lex_state = 12}, + [835] = {.lex_state = 11, .external_lex_state = 2}, + [836] = {.lex_state = 11, .external_lex_state = 2}, + [837] = {.lex_state = 11, .external_lex_state = 2}, + [838] = {.lex_state = 11, .external_lex_state = 2}, + [839] = {.lex_state = 16}, + [840] = {.lex_state = 11, .external_lex_state = 2}, + [841] = {.lex_state = 11, .external_lex_state = 2}, + [842] = {.lex_state = 11, .external_lex_state = 2}, + [843] = {.lex_state = 11, .external_lex_state = 2}, + [844] = {.lex_state = 13, .external_lex_state = 2}, + [845] = {.lex_state = 11, .external_lex_state = 2}, + [846] = {.lex_state = 16}, + [847] = {.lex_state = 11, .external_lex_state = 2}, + [848] = {.lex_state = 16}, + [849] = {.lex_state = 11, .external_lex_state = 2}, + [850] = {.lex_state = 16}, + [851] = {.lex_state = 11, .external_lex_state = 2}, + [852] = {.lex_state = 11, .external_lex_state = 2}, + [853] = {.lex_state = 16}, + [854] = {.lex_state = 16}, + [855] = {.lex_state = 11, .external_lex_state = 2}, + [856] = {.lex_state = 11, .external_lex_state = 2}, + [857] = {.lex_state = 11, .external_lex_state = 2}, + [858] = {.lex_state = 11, .external_lex_state = 2}, + [859] = {.lex_state = 11, .external_lex_state = 2}, + [860] = {.lex_state = 11, .external_lex_state = 2}, + [861] = {.lex_state = 11, .external_lex_state = 2}, + [862] = {.lex_state = 11, .external_lex_state = 2}, + [863] = {.lex_state = 11, .external_lex_state = 2}, + [864] = {.lex_state = 11, .external_lex_state = 2}, + [865] = {.lex_state = 11, .external_lex_state = 2}, + [866] = {.lex_state = 11, .external_lex_state = 2}, + [867] = {.lex_state = 11, .external_lex_state = 2}, + [868] = {.lex_state = 11, .external_lex_state = 2}, + [869] = {.lex_state = 11, .external_lex_state = 2}, + [870] = {.lex_state = 11, .external_lex_state = 2}, + [871] = {.lex_state = 11, .external_lex_state = 2}, + [872] = {.lex_state = 11, .external_lex_state = 2}, + [873] = {.lex_state = 11, .external_lex_state = 2}, + [874] = {.lex_state = 11, .external_lex_state = 2}, + [875] = {.lex_state = 11, .external_lex_state = 2}, + [876] = {.lex_state = 11, .external_lex_state = 2}, + [877] = {.lex_state = 11, .external_lex_state = 2}, + [878] = {.lex_state = 11, .external_lex_state = 2}, + [879] = {.lex_state = 11, .external_lex_state = 2}, + [880] = {.lex_state = 11, .external_lex_state = 2}, + [881] = {.lex_state = 11, .external_lex_state = 2}, + [882] = {.lex_state = 11, .external_lex_state = 2}, + [883] = {.lex_state = 11, .external_lex_state = 2}, + [884] = {.lex_state = 11, .external_lex_state = 2}, + [885] = {.lex_state = 11, .external_lex_state = 2}, + [886] = {.lex_state = 11, .external_lex_state = 2}, + [887] = {.lex_state = 11, .external_lex_state = 2}, + [888] = {.lex_state = 11, .external_lex_state = 2}, + [889] = {.lex_state = 11, .external_lex_state = 2}, + [890] = {.lex_state = 11, .external_lex_state = 2}, + [891] = {.lex_state = 11, .external_lex_state = 2}, + [892] = {.lex_state = 11, .external_lex_state = 2}, + [893] = {.lex_state = 11, .external_lex_state = 2}, + [894] = {.lex_state = 11}, + [895] = {.lex_state = 11, .external_lex_state = 2}, + [896] = {.lex_state = 11, .external_lex_state = 2}, + [897] = {.lex_state = 11, .external_lex_state = 2}, + [898] = {.lex_state = 11, .external_lex_state = 2}, + [899] = {.lex_state = 11}, + [900] = {.lex_state = 11, .external_lex_state = 2}, + [901] = {.lex_state = 11, .external_lex_state = 2}, + [902] = {.lex_state = 11, .external_lex_state = 2}, + [903] = {.lex_state = 11, .external_lex_state = 2}, + [904] = {.lex_state = 11, .external_lex_state = 2}, + [905] = {.lex_state = 11, .external_lex_state = 2}, + [906] = {.lex_state = 12}, + [907] = {.lex_state = 12}, + [908] = {.lex_state = 12}, + [909] = {.lex_state = 12}, + [910] = {.lex_state = 12}, + [911] = {.lex_state = 12}, + [912] = {.lex_state = 12}, + [913] = {.lex_state = 12}, + [914] = {.lex_state = 12}, + [915] = {.lex_state = 12}, + [916] = {.lex_state = 12}, + [917] = {.lex_state = 12}, + [918] = {.lex_state = 12}, + [919] = {.lex_state = 12}, + [920] = {.lex_state = 12}, + [921] = {.lex_state = 12}, + [922] = {.lex_state = 12}, + [923] = {.lex_state = 12}, + [924] = {.lex_state = 12}, + [925] = {.lex_state = 12}, + [926] = {.lex_state = 12}, + [927] = {.lex_state = 12}, + [928] = {.lex_state = 12}, + [929] = {.lex_state = 12}, + [930] = {.lex_state = 12}, + [931] = {.lex_state = 12}, + [932] = {.lex_state = 12}, + [933] = {.lex_state = 12}, + [934] = {.lex_state = 12}, + [935] = {.lex_state = 12}, + [936] = {.lex_state = 12}, + [937] = {.lex_state = 12}, + [938] = {.lex_state = 12}, + [939] = {.lex_state = 12}, + [940] = {.lex_state = 12}, + [941] = {.lex_state = 12}, + [942] = {.lex_state = 12}, + [943] = {.lex_state = 12}, + [944] = {.lex_state = 12}, + [945] = {.lex_state = 12}, + [946] = {.lex_state = 12}, + [947] = {.lex_state = 12}, + [948] = {.lex_state = 12}, + [949] = {.lex_state = 12}, + [950] = {.lex_state = 12}, + [951] = {.lex_state = 12}, + [952] = {.lex_state = 12}, + [953] = {.lex_state = 12}, + [954] = {.lex_state = 12}, + [955] = {.lex_state = 12}, + [956] = {.lex_state = 20}, + [957] = {.lex_state = 12}, + [958] = {.lex_state = 12}, + [959] = {.lex_state = 12}, + [960] = {.lex_state = 12}, + [961] = {.lex_state = 12}, + [962] = {.lex_state = 12}, + [963] = {.lex_state = 12}, + [964] = {.lex_state = 12}, + [965] = {.lex_state = 12}, + [966] = {.lex_state = 12}, + [967] = {.lex_state = 12}, + [968] = {.lex_state = 12}, + [969] = {.lex_state = 12}, + [970] = {.lex_state = 12}, + [971] = {.lex_state = 12}, + [972] = {.lex_state = 12, .external_lex_state = 2}, + [973] = {.lex_state = 12, .external_lex_state = 2}, + [974] = {.lex_state = 12}, + [975] = {.lex_state = 12}, + [976] = {.lex_state = 12}, + [977] = {.lex_state = 12}, + [978] = {.lex_state = 12}, + [979] = {.lex_state = 12}, + [980] = {.lex_state = 12}, + [981] = {.lex_state = 12}, + [982] = {.lex_state = 12}, + [983] = {.lex_state = 12}, + [984] = {.lex_state = 12}, + [985] = {.lex_state = 12}, + [986] = {.lex_state = 12}, + [987] = {.lex_state = 12}, + [988] = {.lex_state = 12}, + [989] = {.lex_state = 12}, + [990] = {.lex_state = 12}, + [991] = {.lex_state = 12}, + [992] = {.lex_state = 12}, + [993] = {.lex_state = 12}, + [994] = {.lex_state = 12}, + [995] = {.lex_state = 12}, + [996] = {.lex_state = 12}, + [997] = {.lex_state = 12}, + [998] = {.lex_state = 12}, + [999] = {.lex_state = 12}, + [1000] = {.lex_state = 12}, + [1001] = {.lex_state = 12}, + [1002] = {.lex_state = 12}, + [1003] = {.lex_state = 12}, + [1004] = {.lex_state = 12}, + [1005] = {.lex_state = 12}, + [1006] = {.lex_state = 12}, + [1007] = {.lex_state = 12}, + [1008] = {.lex_state = 12}, + [1009] = {.lex_state = 12}, + [1010] = {.lex_state = 12}, + [1011] = {.lex_state = 12}, + [1012] = {.lex_state = 12}, + [1013] = {.lex_state = 12}, + [1014] = {.lex_state = 12}, + [1015] = {.lex_state = 12}, + [1016] = {.lex_state = 12}, + [1017] = {.lex_state = 12}, + [1018] = {.lex_state = 12}, + [1019] = {.lex_state = 12}, + [1020] = {.lex_state = 12}, + [1021] = {.lex_state = 73}, + [1022] = {.lex_state = 12}, + [1023] = {.lex_state = 12}, + [1024] = {.lex_state = 12}, + [1025] = {.lex_state = 12}, + [1026] = {.lex_state = 12}, + [1027] = {.lex_state = 12}, + [1028] = {.lex_state = 12}, + [1029] = {.lex_state = 12}, + [1030] = {.lex_state = 12}, + [1031] = {.lex_state = 12}, + [1032] = {.lex_state = 12}, + [1033] = {.lex_state = 12}, + [1034] = {.lex_state = 12}, + [1035] = {.lex_state = 12}, + [1036] = {.lex_state = 12}, + [1037] = {.lex_state = 12}, + [1038] = {.lex_state = 12}, + [1039] = {.lex_state = 12, .external_lex_state = 2}, + [1040] = {.lex_state = 12, .external_lex_state = 2}, + [1041] = {.lex_state = 12, .external_lex_state = 2}, + [1042] = {.lex_state = 12, .external_lex_state = 2}, + [1043] = {.lex_state = 12, .external_lex_state = 2}, + [1044] = {.lex_state = 12, .external_lex_state = 2}, + [1045] = {.lex_state = 12, .external_lex_state = 2}, + [1046] = {.lex_state = 12, .external_lex_state = 2}, + [1047] = {.lex_state = 12, .external_lex_state = 2}, + [1048] = {.lex_state = 12, .external_lex_state = 2}, + [1049] = {.lex_state = 12, .external_lex_state = 2}, + [1050] = {.lex_state = 12, .external_lex_state = 2}, + [1051] = {.lex_state = 12, .external_lex_state = 2}, + [1052] = {.lex_state = 12, .external_lex_state = 2}, + [1053] = {.lex_state = 12, .external_lex_state = 2}, + [1054] = {.lex_state = 12, .external_lex_state = 2}, + [1055] = {.lex_state = 12, .external_lex_state = 2}, + [1056] = {.lex_state = 73}, + [1057] = {.lex_state = 12, .external_lex_state = 2}, + [1058] = {.lex_state = 12, .external_lex_state = 2}, + [1059] = {.lex_state = 12, .external_lex_state = 2}, + [1060] = {.lex_state = 12, .external_lex_state = 2}, + [1061] = {.lex_state = 12, .external_lex_state = 2}, + [1062] = {.lex_state = 12, .external_lex_state = 2}, + [1063] = {.lex_state = 12, .external_lex_state = 2}, + [1064] = {.lex_state = 12, .external_lex_state = 2}, + [1065] = {.lex_state = 12, .external_lex_state = 2}, + [1066] = {.lex_state = 12, .external_lex_state = 2}, + [1067] = {.lex_state = 12, .external_lex_state = 2}, + [1068] = {.lex_state = 12, .external_lex_state = 2}, + [1069] = {.lex_state = 12, .external_lex_state = 2}, + [1070] = {.lex_state = 12, .external_lex_state = 2}, + [1071] = {.lex_state = 12, .external_lex_state = 2}, + [1072] = {.lex_state = 73}, + [1073] = {.lex_state = 12, .external_lex_state = 2}, + [1074] = {.lex_state = 12, .external_lex_state = 2}, + [1075] = {.lex_state = 12, .external_lex_state = 2}, + [1076] = {.lex_state = 12, .external_lex_state = 2}, + [1077] = {.lex_state = 12, .external_lex_state = 2}, + [1078] = {.lex_state = 12, .external_lex_state = 2}, + [1079] = {.lex_state = 12, .external_lex_state = 2}, + [1080] = {.lex_state = 12, .external_lex_state = 2}, + [1081] = {.lex_state = 12, .external_lex_state = 2}, + [1082] = {.lex_state = 12, .external_lex_state = 2}, + [1083] = {.lex_state = 12, .external_lex_state = 2}, + [1084] = {.lex_state = 12, .external_lex_state = 2}, + [1085] = {.lex_state = 12, .external_lex_state = 2}, + [1086] = {.lex_state = 12, .external_lex_state = 2}, + [1087] = {.lex_state = 12, .external_lex_state = 2}, + [1088] = {.lex_state = 12, .external_lex_state = 2}, + [1089] = {.lex_state = 12, .external_lex_state = 2}, + [1090] = {.lex_state = 12, .external_lex_state = 2}, + [1091] = {.lex_state = 12, .external_lex_state = 2}, + [1092] = {.lex_state = 12, .external_lex_state = 2}, + [1093] = {.lex_state = 12, .external_lex_state = 2}, + [1094] = {.lex_state = 73}, + [1095] = {.lex_state = 73}, + [1096] = {.lex_state = 12, .external_lex_state = 2}, + [1097] = {.lex_state = 12, .external_lex_state = 2}, + [1098] = {.lex_state = 12, .external_lex_state = 2}, + [1099] = {.lex_state = 12, .external_lex_state = 2}, + [1100] = {.lex_state = 12, .external_lex_state = 2}, + [1101] = {.lex_state = 12, .external_lex_state = 2}, + [1102] = {.lex_state = 12, .external_lex_state = 2}, + [1103] = {.lex_state = 12, .external_lex_state = 2}, + [1104] = {.lex_state = 12, .external_lex_state = 2}, + [1105] = {.lex_state = 12, .external_lex_state = 2}, + [1106] = {.lex_state = 12, .external_lex_state = 2}, + [1107] = {.lex_state = 12, .external_lex_state = 2}, + [1108] = {.lex_state = 12, .external_lex_state = 2}, + [1109] = {.lex_state = 12, .external_lex_state = 2}, + [1110] = {.lex_state = 12, .external_lex_state = 2}, + [1111] = {.lex_state = 12, .external_lex_state = 2}, + [1112] = {.lex_state = 12, .external_lex_state = 2}, + [1113] = {.lex_state = 12, .external_lex_state = 2}, + [1114] = {.lex_state = 12, .external_lex_state = 2}, + [1115] = {.lex_state = 12, .external_lex_state = 2}, + [1116] = {.lex_state = 12, .external_lex_state = 2}, + [1117] = {.lex_state = 12, .external_lex_state = 2}, + [1118] = {.lex_state = 12, .external_lex_state = 2}, + [1119] = {.lex_state = 12, .external_lex_state = 2}, + [1120] = {.lex_state = 12, .external_lex_state = 2}, + [1121] = {.lex_state = 12, .external_lex_state = 2}, + [1122] = {.lex_state = 12, .external_lex_state = 2}, + [1123] = {.lex_state = 12, .external_lex_state = 2}, + [1124] = {.lex_state = 12, .external_lex_state = 2}, + [1125] = {.lex_state = 12, .external_lex_state = 2}, + [1126] = {.lex_state = 12, .external_lex_state = 2}, + [1127] = {.lex_state = 12, .external_lex_state = 2}, + [1128] = {.lex_state = 12, .external_lex_state = 2}, + [1129] = {.lex_state = 12, .external_lex_state = 2}, + [1130] = {.lex_state = 12, .external_lex_state = 2}, + [1131] = {.lex_state = 12, .external_lex_state = 2}, + [1132] = {.lex_state = 12, .external_lex_state = 2}, + [1133] = {.lex_state = 73}, + [1134] = {.lex_state = 73}, + [1135] = {.lex_state = 12, .external_lex_state = 2}, + [1136] = {.lex_state = 12, .external_lex_state = 2}, + [1137] = {.lex_state = 12, .external_lex_state = 2}, + [1138] = {.lex_state = 12, .external_lex_state = 2}, + [1139] = {.lex_state = 12, .external_lex_state = 2}, + [1140] = {.lex_state = 12, .external_lex_state = 2}, + [1141] = {.lex_state = 12, .external_lex_state = 2}, + [1142] = {.lex_state = 12, .external_lex_state = 2}, + [1143] = {.lex_state = 12, .external_lex_state = 2}, + [1144] = {.lex_state = 12}, + [1145] = {.lex_state = 12}, + [1146] = {.lex_state = 12}, + [1147] = {.lex_state = 12}, + [1148] = {.lex_state = 12}, + [1149] = {.lex_state = 12}, + [1150] = {.lex_state = 12}, + [1151] = {.lex_state = 12}, + [1152] = {.lex_state = 12}, + [1153] = {.lex_state = 12}, + [1154] = {.lex_state = 12}, + [1155] = {.lex_state = 12}, + [1156] = {.lex_state = 12}, + [1157] = {.lex_state = 12}, + [1158] = {.lex_state = 12}, + [1159] = {.lex_state = 12}, + [1160] = {.lex_state = 12}, + [1161] = {.lex_state = 12}, + [1162] = {.lex_state = 12}, + [1163] = {.lex_state = 12}, + [1164] = {.lex_state = 12}, + [1165] = {.lex_state = 12}, + [1166] = {.lex_state = 12}, + [1167] = {.lex_state = 12}, + [1168] = {.lex_state = 12}, + [1169] = {.lex_state = 12}, + [1170] = {.lex_state = 12}, + [1171] = {.lex_state = 12}, + [1172] = {.lex_state = 12}, + [1173] = {.lex_state = 12}, + [1174] = {.lex_state = 12}, + [1175] = {.lex_state = 12}, + [1176] = {.lex_state = 12}, + [1177] = {.lex_state = 12}, + [1178] = {.lex_state = 12}, + [1179] = {.lex_state = 12}, + [1180] = {.lex_state = 12, .external_lex_state = 2}, + [1181] = {.lex_state = 12}, + [1182] = {.lex_state = 12}, + [1183] = {.lex_state = 12, .external_lex_state = 2}, + [1184] = {.lex_state = 12, .external_lex_state = 2}, + [1185] = {.lex_state = 12}, + [1186] = {.lex_state = 12}, + [1187] = {.lex_state = 12, .external_lex_state = 2}, + [1188] = {.lex_state = 12, .external_lex_state = 2}, + [1189] = {.lex_state = 12}, + [1190] = {.lex_state = 12}, + [1191] = {.lex_state = 12}, + [1192] = {.lex_state = 12}, + [1193] = {.lex_state = 19}, + [1194] = {.lex_state = 12}, + [1195] = {.lex_state = 12}, + [1196] = {.lex_state = 12, .external_lex_state = 2}, + [1197] = {.lex_state = 12, .external_lex_state = 2}, + [1198] = {.lex_state = 12}, + [1199] = {.lex_state = 12, .external_lex_state = 2}, + [1200] = {.lex_state = 12}, + [1201] = {.lex_state = 12}, + [1202] = {.lex_state = 12}, + [1203] = {.lex_state = 73}, + [1204] = {.lex_state = 12}, + [1205] = {.lex_state = 73}, + [1206] = {.lex_state = 12}, + [1207] = {.lex_state = 12}, + [1208] = {.lex_state = 19}, + [1209] = {.lex_state = 19}, + [1210] = {.lex_state = 12}, + [1211] = {.lex_state = 12}, + [1212] = {.lex_state = 12}, + [1213] = {.lex_state = 19}, + [1214] = {.lex_state = 12}, + [1215] = {.lex_state = 19}, + [1216] = {.lex_state = 12}, + [1217] = {.lex_state = 19}, + [1218] = {.lex_state = 12}, + [1219] = {.lex_state = 12}, + [1220] = {.lex_state = 12}, + [1221] = {.lex_state = 12, .external_lex_state = 2}, + [1222] = {.lex_state = 12}, + [1223] = {.lex_state = 12}, + [1224] = {.lex_state = 12}, + [1225] = {.lex_state = 12}, + [1226] = {.lex_state = 12}, + [1227] = {.lex_state = 19}, + [1228] = {.lex_state = 12}, + [1229] = {.lex_state = 19}, + [1230] = {.lex_state = 12}, + [1231] = {.lex_state = 12}, + [1232] = {.lex_state = 12, .external_lex_state = 2}, + [1233] = {.lex_state = 12}, + [1234] = {.lex_state = 12}, + [1235] = {.lex_state = 12}, + [1236] = {.lex_state = 12, .external_lex_state = 2}, + [1237] = {.lex_state = 12}, + [1238] = {.lex_state = 12, .external_lex_state = 2}, + [1239] = {.lex_state = 12}, + [1240] = {.lex_state = 19}, + [1241] = {.lex_state = 12, .external_lex_state = 2}, + [1242] = {.lex_state = 12}, + [1243] = {.lex_state = 12}, + [1244] = {.lex_state = 12}, + [1245] = {.lex_state = 12}, + [1246] = {.lex_state = 12}, + [1247] = {.lex_state = 12}, + [1248] = {.lex_state = 12}, + [1249] = {.lex_state = 12}, + [1250] = {.lex_state = 12}, + [1251] = {.lex_state = 12}, + [1252] = {.lex_state = 12}, + [1253] = {.lex_state = 12}, + [1254] = {.lex_state = 12}, + [1255] = {.lex_state = 12}, + [1256] = {.lex_state = 12}, + [1257] = {.lex_state = 12}, + [1258] = {.lex_state = 12}, + [1259] = {.lex_state = 12}, + [1260] = {.lex_state = 12}, + [1261] = {.lex_state = 12}, + [1262] = {.lex_state = 12}, + [1263] = {.lex_state = 12}, + [1264] = {.lex_state = 12}, + [1265] = {.lex_state = 12}, + [1266] = {.lex_state = 12}, + [1267] = {.lex_state = 12}, + [1268] = {.lex_state = 12}, + [1269] = {.lex_state = 12}, + [1270] = {.lex_state = 12}, + [1271] = {.lex_state = 12}, + [1272] = {.lex_state = 12}, + [1273] = {.lex_state = 12}, + [1274] = {.lex_state = 12}, + [1275] = {.lex_state = 12}, + [1276] = {.lex_state = 12}, + [1277] = {.lex_state = 12}, + [1278] = {.lex_state = 12}, + [1279] = {.lex_state = 12}, + [1280] = {.lex_state = 12}, + [1281] = {.lex_state = 12}, + [1282] = {.lex_state = 12}, + [1283] = {.lex_state = 12}, + [1284] = {.lex_state = 12}, + [1285] = {.lex_state = 73}, + [1286] = {.lex_state = 12}, + [1287] = {.lex_state = 12}, + [1288] = {.lex_state = 12}, + [1289] = {.lex_state = 12}, + [1290] = {.lex_state = 12}, + [1291] = {.lex_state = 12}, + [1292] = {.lex_state = 12}, + [1293] = {.lex_state = 12}, + [1294] = {.lex_state = 12}, + [1295] = {.lex_state = 12}, + [1296] = {.lex_state = 12}, + [1297] = {.lex_state = 12}, + [1298] = {.lex_state = 12}, + [1299] = {.lex_state = 12}, + [1300] = {.lex_state = 12}, + [1301] = {.lex_state = 12}, + [1302] = {.lex_state = 12}, + [1303] = {.lex_state = 12}, + [1304] = {.lex_state = 12}, + [1305] = {.lex_state = 12}, + [1306] = {.lex_state = 12}, + [1307] = {.lex_state = 12}, + [1308] = {.lex_state = 12}, + [1309] = {.lex_state = 12}, + [1310] = {.lex_state = 12}, + [1311] = {.lex_state = 19}, + [1312] = {.lex_state = 73}, + [1313] = {.lex_state = 73}, + [1314] = {.lex_state = 19}, + [1315] = {.lex_state = 19}, + [1316] = {.lex_state = 19}, + [1317] = {.lex_state = 73}, + [1318] = {.lex_state = 19}, + [1319] = {.lex_state = 73}, + [1320] = {.lex_state = 73}, + [1321] = {.lex_state = 73}, + [1322] = {.lex_state = 73}, + [1323] = {.lex_state = 18}, + [1324] = {.lex_state = 18}, + [1325] = {.lex_state = 12}, + [1326] = {.lex_state = 12}, + [1327] = {.lex_state = 12}, + [1328] = {.lex_state = 12}, + [1329] = {.lex_state = 18}, + [1330] = {.lex_state = 12}, + [1331] = {.lex_state = 18}, + [1332] = {.lex_state = 12}, + [1333] = {.lex_state = 18}, + [1334] = {.lex_state = 12}, + [1335] = {.lex_state = 12}, + [1336] = {.lex_state = 12}, + [1337] = {.lex_state = 12}, + [1338] = {.lex_state = 18}, + [1339] = {.lex_state = 12}, + [1340] = {.lex_state = 12}, + [1341] = {.lex_state = 12}, + [1342] = {.lex_state = 12}, + [1343] = {.lex_state = 12}, + [1344] = {.lex_state = 12}, + [1345] = {.lex_state = 12}, + [1346] = {.lex_state = 72}, + [1347] = {.lex_state = 72}, + [1348] = {.lex_state = 72}, + [1349] = {.lex_state = 12}, + [1350] = {.lex_state = 12}, + [1351] = {.lex_state = 9}, + [1352] = {.lex_state = 9}, [1353] = {.lex_state = 3, .external_lex_state = 3}, [1354] = {.lex_state = 3, .external_lex_state = 3}, [1355] = {.lex_state = 3, .external_lex_state = 3}, [1356] = {.lex_state = 3, .external_lex_state = 4}, [1357] = {.lex_state = 3, .external_lex_state = 3}, - [1358] = {.lex_state = 76}, + [1358] = {.lex_state = 9}, [1359] = {.lex_state = 3, .external_lex_state = 3}, - [1360] = {.lex_state = 76}, - [1361] = {.lex_state = 21}, - [1362] = {.lex_state = 21}, - [1363] = {.lex_state = 76}, - [1364] = {.lex_state = 18}, - [1365] = {.lex_state = 17}, - [1366] = {.lex_state = 23, .external_lex_state = 4}, - [1367] = {.lex_state = 21}, - [1368] = {.lex_state = 21}, - [1369] = {.lex_state = 21}, - [1370] = {.lex_state = 21}, - [1371] = {.lex_state = 21}, - [1372] = {.lex_state = 21}, - [1373] = {.lex_state = 21}, - [1374] = {.lex_state = 21}, - [1375] = {.lex_state = 21}, - [1376] = {.lex_state = 21}, - [1377] = {.lex_state = 21}, - [1378] = {.lex_state = 18, .external_lex_state = 5}, - [1379] = {.lex_state = 18, .external_lex_state = 5}, - [1380] = {.lex_state = 21}, - [1381] = {.lex_state = 21}, - [1382] = {.lex_state = 21}, - [1383] = {.lex_state = 21}, - [1384] = {.lex_state = 18, .external_lex_state = 5}, - [1385] = {.lex_state = 21}, - [1386] = {.lex_state = 21}, - [1387] = {.lex_state = 21}, - [1388] = {.lex_state = 21}, - [1389] = {.lex_state = 21}, - [1390] = {.lex_state = 18, .external_lex_state = 5}, - [1391] = {.lex_state = 21}, - [1392] = {.lex_state = 18, .external_lex_state = 5}, - [1393] = {.lex_state = 21}, - [1394] = {.lex_state = 21}, - [1395] = {.lex_state = 21}, - [1396] = {.lex_state = 18, .external_lex_state = 6}, - [1397] = {.lex_state = 21}, - [1398] = {.lex_state = 21}, - [1399] = {.lex_state = 21}, - [1400] = {.lex_state = 21}, + [1360] = {.lex_state = 9}, + [1361] = {.lex_state = 19}, + [1362] = {.lex_state = 19}, + [1363] = {.lex_state = 9}, + [1364] = {.lex_state = 17}, + [1365] = {.lex_state = 16}, + [1366] = {.lex_state = 21, .external_lex_state = 4}, + [1367] = {.lex_state = 19}, + [1368] = {.lex_state = 19}, + [1369] = {.lex_state = 19}, + [1370] = {.lex_state = 19}, + [1371] = {.lex_state = 19}, + [1372] = {.lex_state = 19}, + [1373] = {.lex_state = 19}, + [1374] = {.lex_state = 19}, + [1375] = {.lex_state = 19}, + [1376] = {.lex_state = 19}, + [1377] = {.lex_state = 19}, + [1378] = {.lex_state = 9, .external_lex_state = 5}, + [1379] = {.lex_state = 9, .external_lex_state = 5}, + [1380] = {.lex_state = 19}, + [1381] = {.lex_state = 19}, + [1382] = {.lex_state = 19}, + [1383] = {.lex_state = 19}, + [1384] = {.lex_state = 9, .external_lex_state = 5}, + [1385] = {.lex_state = 19}, + [1386] = {.lex_state = 19}, + [1387] = {.lex_state = 19}, + [1388] = {.lex_state = 19}, + [1389] = {.lex_state = 19}, + [1390] = {.lex_state = 9, .external_lex_state = 5}, + [1391] = {.lex_state = 19}, + [1392] = {.lex_state = 9, .external_lex_state = 5}, + [1393] = {.lex_state = 19}, + [1394] = {.lex_state = 19}, + [1395] = {.lex_state = 19}, + [1396] = {.lex_state = 9, .external_lex_state = 6}, + [1397] = {.lex_state = 19}, + [1398] = {.lex_state = 19}, + [1399] = {.lex_state = 19}, + [1400] = {.lex_state = 19}, [1401] = {.lex_state = 3, .external_lex_state = 7}, - [1402] = {.lex_state = 21}, - [1403] = {.lex_state = 76}, - [1404] = {.lex_state = 18, .external_lex_state = 6}, - [1405] = {.lex_state = 18, .external_lex_state = 6}, - [1406] = {.lex_state = 21}, - [1407] = {.lex_state = 21}, - [1408] = {.lex_state = 21}, - [1409] = {.lex_state = 21}, - [1410] = {.lex_state = 21}, - [1411] = {.lex_state = 18, .external_lex_state = 6}, - [1412] = {.lex_state = 21}, - [1413] = {.lex_state = 21}, - [1414] = {.lex_state = 21}, - [1415] = {.lex_state = 21}, + [1402] = {.lex_state = 19}, + [1403] = {.lex_state = 9}, + [1404] = {.lex_state = 9, .external_lex_state = 6}, + [1405] = {.lex_state = 9, .external_lex_state = 6}, + [1406] = {.lex_state = 19}, + [1407] = {.lex_state = 19}, + [1408] = {.lex_state = 19}, + [1409] = {.lex_state = 19}, + [1410] = {.lex_state = 19}, + [1411] = {.lex_state = 9, .external_lex_state = 6}, + [1412] = {.lex_state = 19}, + [1413] = {.lex_state = 19}, + [1414] = {.lex_state = 19}, + [1415] = {.lex_state = 19}, [1416] = {.lex_state = 3, .external_lex_state = 7}, - [1417] = {.lex_state = 21}, - [1418] = {.lex_state = 21}, - [1419] = {.lex_state = 21}, - [1420] = {.lex_state = 76}, - [1421] = {.lex_state = 21}, - [1422] = {.lex_state = 21}, - [1423] = {.lex_state = 76}, - [1424] = {.lex_state = 21}, - [1425] = {.lex_state = 21}, - [1426] = {.lex_state = 21}, - [1427] = {.lex_state = 21}, - [1428] = {.lex_state = 21}, - [1429] = {.lex_state = 76}, - [1430] = {.lex_state = 21}, - [1431] = {.lex_state = 18, .external_lex_state = 6}, - [1432] = {.lex_state = 76}, - [1433] = {.lex_state = 21}, - [1434] = {.lex_state = 76}, - [1435] = {.lex_state = 76}, - [1436] = {.lex_state = 76}, - [1437] = {.lex_state = 76}, - [1438] = {.lex_state = 76}, - [1439] = {.lex_state = 76}, - [1440] = {.lex_state = 25}, - [1441] = {.lex_state = 25}, - [1442] = {.lex_state = 17}, - [1443] = {.lex_state = 76}, - [1444] = {.lex_state = 25}, - [1445] = {.lex_state = 76}, - [1446] = {.lex_state = 76}, - [1447] = {.lex_state = 17}, - [1448] = {.lex_state = 76}, - [1449] = {.lex_state = 25}, - [1450] = {.lex_state = 76}, - [1451] = {.lex_state = 76}, - [1452] = {.lex_state = 76}, - [1453] = {.lex_state = 76}, - [1454] = {.lex_state = 76}, + [1417] = {.lex_state = 19}, + [1418] = {.lex_state = 19}, + [1419] = {.lex_state = 19}, + [1420] = {.lex_state = 73}, + [1421] = {.lex_state = 19}, + [1422] = {.lex_state = 19}, + [1423] = {.lex_state = 73}, + [1424] = {.lex_state = 19}, + [1425] = {.lex_state = 19}, + [1426] = {.lex_state = 19}, + [1427] = {.lex_state = 19}, + [1428] = {.lex_state = 19}, + [1429] = {.lex_state = 73}, + [1430] = {.lex_state = 19}, + [1431] = {.lex_state = 9, .external_lex_state = 6}, + [1432] = {.lex_state = 9}, + [1433] = {.lex_state = 19}, + [1434] = {.lex_state = 73}, + [1435] = {.lex_state = 73}, + [1436] = {.lex_state = 9}, + [1437] = {.lex_state = 73}, + [1438] = {.lex_state = 73}, + [1439] = {.lex_state = 73}, + [1440] = {.lex_state = 72}, + [1441] = {.lex_state = 72}, + [1442] = {.lex_state = 16}, + [1443] = {.lex_state = 73}, + [1444] = {.lex_state = 72}, + [1445] = {.lex_state = 73}, + [1446] = {.lex_state = 73}, + [1447] = {.lex_state = 16}, + [1448] = {.lex_state = 73}, + [1449] = {.lex_state = 72}, + [1450] = {.lex_state = 73}, + [1451] = {.lex_state = 73}, + [1452] = {.lex_state = 73}, + [1453] = {.lex_state = 73}, + [1454] = {.lex_state = 73}, [1455] = {.lex_state = 3, .external_lex_state = 3}, [1456] = {.lex_state = 3, .external_lex_state = 3}, - [1457] = {.lex_state = 76}, - [1458] = {.lex_state = 18, .external_lex_state = 8}, + [1457] = {.lex_state = 73}, + [1458] = {.lex_state = 9, .external_lex_state = 8}, [1459] = {.lex_state = 3, .external_lex_state = 3}, [1460] = {.lex_state = 3, .external_lex_state = 3}, - [1461] = {.lex_state = 17}, - [1462] = {.lex_state = 18, .external_lex_state = 8}, + [1461] = {.lex_state = 72}, + [1462] = {.lex_state = 9, .external_lex_state = 8}, [1463] = {.lex_state = 3, .external_lex_state = 3}, [1464] = {.lex_state = 3, .external_lex_state = 3}, - [1465] = {.lex_state = 17}, + [1465] = {.lex_state = 72}, [1466] = {.lex_state = 3, .external_lex_state = 3}, - [1467] = {.lex_state = 76}, - [1468] = {.lex_state = 76}, - [1469] = {.lex_state = 76}, + [1467] = {.lex_state = 9}, + [1468] = {.lex_state = 73}, + [1469] = {.lex_state = 73}, [1470] = {.lex_state = 3, .external_lex_state = 3}, - [1471] = {.lex_state = 76}, - [1472] = {.lex_state = 76}, - [1473] = {.lex_state = 17}, + [1471] = {.lex_state = 73}, + [1472] = {.lex_state = 73}, + [1473] = {.lex_state = 72}, [1474] = {.lex_state = 3, .external_lex_state = 3}, [1475] = {.lex_state = 3, .external_lex_state = 3}, - [1476] = {.lex_state = 25}, - [1477] = {.lex_state = 76}, - [1478] = {.lex_state = 17}, - [1479] = {.lex_state = 76}, - [1480] = {.lex_state = 17}, - [1481] = {.lex_state = 76}, - [1482] = {.lex_state = 76}, - [1483] = {.lex_state = 76}, + [1476] = {.lex_state = 72}, + [1477] = {.lex_state = 73}, + [1478] = {.lex_state = 72}, + [1479] = {.lex_state = 73}, + [1480] = {.lex_state = 72}, + [1481] = {.lex_state = 9}, + [1482] = {.lex_state = 73}, + [1483] = {.lex_state = 73}, [1484] = {.lex_state = 3, .external_lex_state = 3}, - [1485] = {.lex_state = 76}, - [1486] = {.lex_state = 76}, - [1487] = {.lex_state = 18, .external_lex_state = 9}, - [1488] = {.lex_state = 76}, - [1489] = {.lex_state = 76}, - [1490] = {.lex_state = 76}, - [1491] = {.lex_state = 76}, - [1492] = {.lex_state = 76}, - [1493] = {.lex_state = 76}, - [1494] = {.lex_state = 76}, - [1495] = {.lex_state = 17}, - [1496] = {.lex_state = 17}, - [1497] = {.lex_state = 76}, - [1498] = {.lex_state = 76}, - [1499] = {.lex_state = 76}, - [1500] = {.lex_state = 17}, - [1501] = {.lex_state = 76}, - [1502] = {.lex_state = 76}, - [1503] = {.lex_state = 76}, - [1504] = {.lex_state = 76}, - [1505] = {.lex_state = 76}, - [1506] = {.lex_state = 76}, - [1507] = {.lex_state = 76}, - [1508] = {.lex_state = 76}, - [1509] = {.lex_state = 76}, - [1510] = {.lex_state = 76}, - [1511] = {.lex_state = 76}, - [1512] = {.lex_state = 76}, - [1513] = {.lex_state = 76}, - [1514] = {.lex_state = 17}, - [1515] = {.lex_state = 76}, - [1516] = {.lex_state = 17}, - [1517] = {.lex_state = 76}, - [1518] = {.lex_state = 17}, - [1519] = {.lex_state = 17}, - [1520] = {.lex_state = 76}, - [1521] = {.lex_state = 76}, - [1522] = {.lex_state = 76}, - [1523] = {.lex_state = 76}, - [1524] = {.lex_state = 76}, - [1525] = {.lex_state = 76}, - [1526] = {.lex_state = 76}, - [1527] = {.lex_state = 76}, - [1528] = {.lex_state = 76}, - [1529] = {.lex_state = 76}, - [1530] = {.lex_state = 76}, - [1531] = {.lex_state = 76}, - [1532] = {.lex_state = 76}, - [1533] = {.lex_state = 76}, - [1534] = {.lex_state = 76}, - [1535] = {.lex_state = 18, .external_lex_state = 9}, - [1536] = {.lex_state = 76}, - [1537] = {.lex_state = 17}, - [1538] = {.lex_state = 76}, - [1539] = {.lex_state = 76}, - [1540] = {.lex_state = 76}, - [1541] = {.lex_state = 76}, - [1542] = {.lex_state = 76}, - [1543] = {.lex_state = 17}, - [1544] = {.lex_state = 17}, - [1545] = {.lex_state = 76}, - [1546] = {.lex_state = 17}, - [1547] = {.lex_state = 17}, - [1548] = {.lex_state = 76}, - [1549] = {.lex_state = 17}, - [1550] = {.lex_state = 76}, - [1551] = {.lex_state = 76}, - [1552] = {.lex_state = 76}, - [1553] = {.lex_state = 17}, - [1554] = {.lex_state = 14}, - [1555] = {.lex_state = 14}, - [1556] = {.lex_state = 14}, - [1557] = {.lex_state = 17}, - [1558] = {.lex_state = 14}, - [1559] = {.lex_state = 25}, - [1560] = {.lex_state = 14}, - [1561] = {.lex_state = 17}, - [1562] = {.lex_state = 76, .external_lex_state = 2}, - [1563] = {.lex_state = 14}, - [1564] = {.lex_state = 14}, - [1565] = {.lex_state = 14}, - [1566] = {.lex_state = 76, .external_lex_state = 2}, - [1567] = {.lex_state = 14}, - [1568] = {.lex_state = 17}, - [1569] = {.lex_state = 17}, - [1570] = {.lex_state = 25}, - [1571] = {.lex_state = 17}, - [1572] = {.lex_state = 17}, - [1573] = {.lex_state = 18, .external_lex_state = 5}, - [1574] = {.lex_state = 14}, - [1575] = {.lex_state = 17}, - [1576] = {.lex_state = 17}, - [1577] = {.lex_state = 18, .external_lex_state = 5}, - [1578] = {.lex_state = 17}, - [1579] = {.lex_state = 76}, - [1580] = {.lex_state = 17}, - [1581] = {.lex_state = 17}, - [1582] = {.lex_state = 18, .external_lex_state = 5}, - [1583] = {.lex_state = 17}, - [1584] = {.lex_state = 17}, - [1585] = {.lex_state = 17}, - [1586] = {.lex_state = 18, .external_lex_state = 5}, - [1587] = {.lex_state = 17}, - [1588] = {.lex_state = 18, .external_lex_state = 5}, - [1589] = {.lex_state = 18, .external_lex_state = 5}, - [1590] = {.lex_state = 17}, - [1591] = {.lex_state = 17}, - [1592] = {.lex_state = 17}, - [1593] = {.lex_state = 17}, - [1594] = {.lex_state = 14}, - [1595] = {.lex_state = 76}, - [1596] = {.lex_state = 76, .external_lex_state = 2}, - [1597] = {.lex_state = 18, .external_lex_state = 5}, - [1598] = {.lex_state = 17}, - [1599] = {.lex_state = 17}, - [1600] = {.lex_state = 18, .external_lex_state = 5}, - [1601] = {.lex_state = 14, .external_lex_state = 2}, - [1602] = {.lex_state = 76}, - [1603] = {.lex_state = 76}, - [1604] = {.lex_state = 18, .external_lex_state = 5}, - [1605] = {.lex_state = 17}, - [1606] = {.lex_state = 76}, - [1607] = {.lex_state = 17}, - [1608] = {.lex_state = 18, .external_lex_state = 5}, - [1609] = {.lex_state = 18, .external_lex_state = 5}, - [1610] = {.lex_state = 17}, - [1611] = {.lex_state = 14}, - [1612] = {.lex_state = 14}, - [1613] = {.lex_state = 14}, - [1614] = {.lex_state = 14}, - [1615] = {.lex_state = 14}, - [1616] = {.lex_state = 14}, - [1617] = {.lex_state = 14}, - [1618] = {.lex_state = 18, .external_lex_state = 6}, - [1619] = {.lex_state = 76}, - [1620] = {.lex_state = 14}, - [1621] = {.lex_state = 14}, - [1622] = {.lex_state = 14}, - [1623] = {.lex_state = 76, .external_lex_state = 2}, - [1624] = {.lex_state = 18, .external_lex_state = 6}, - [1625] = {.lex_state = 14}, - [1626] = {.lex_state = 14}, - [1627] = {.lex_state = 14}, - [1628] = {.lex_state = 14}, - [1629] = {.lex_state = 14}, - [1630] = {.lex_state = 76}, - [1631] = {.lex_state = 14}, - [1632] = {.lex_state = 14}, - [1633] = {.lex_state = 76, .external_lex_state = 2}, - [1634] = {.lex_state = 14}, - [1635] = {.lex_state = 14}, - [1636] = {.lex_state = 18, .external_lex_state = 6}, - [1637] = {.lex_state = 18, .external_lex_state = 6}, - [1638] = {.lex_state = 14}, - [1639] = {.lex_state = 14}, - [1640] = {.lex_state = 14}, - [1641] = {.lex_state = 14}, - [1642] = {.lex_state = 14}, - [1643] = {.lex_state = 14}, - [1644] = {.lex_state = 14}, - [1645] = {.lex_state = 14}, - [1646] = {.lex_state = 76}, - [1647] = {.lex_state = 14}, - [1648] = {.lex_state = 14}, - [1649] = {.lex_state = 14}, - [1650] = {.lex_state = 14}, - [1651] = {.lex_state = 14}, - [1652] = {.lex_state = 77, .external_lex_state = 10}, - [1653] = {.lex_state = 14}, - [1654] = {.lex_state = 14}, - [1655] = {.lex_state = 18, .external_lex_state = 6}, - [1656] = {.lex_state = 14}, - [1657] = {.lex_state = 14}, - [1658] = {.lex_state = 14}, - [1659] = {.lex_state = 14}, - [1660] = {.lex_state = 14}, - [1661] = {.lex_state = 14}, - [1662] = {.lex_state = 76}, - [1663] = {.lex_state = 18, .external_lex_state = 6}, - [1664] = {.lex_state = 18, .external_lex_state = 6}, - [1665] = {.lex_state = 14}, - [1666] = {.lex_state = 14}, - [1667] = {.lex_state = 14}, - [1668] = {.lex_state = 14}, - [1669] = {.lex_state = 14}, - [1670] = {.lex_state = 76}, - [1671] = {.lex_state = 18, .external_lex_state = 6}, - [1672] = {.lex_state = 76}, - [1673] = {.lex_state = 76, .external_lex_state = 2}, - [1674] = {.lex_state = 76}, - [1675] = {.lex_state = 14}, - [1676] = {.lex_state = 18, .external_lex_state = 6}, - [1677] = {.lex_state = 14}, - [1678] = {.lex_state = 76}, - [1679] = {.lex_state = 14}, - [1680] = {.lex_state = 14}, - [1681] = {.lex_state = 14}, - [1682] = {.lex_state = 14}, - [1683] = {.lex_state = 18, .external_lex_state = 6}, - [1684] = {.lex_state = 76, .external_lex_state = 2}, - [1685] = {.lex_state = 76, .external_lex_state = 2}, - [1686] = {.lex_state = 76, .external_lex_state = 2}, - [1687] = {.lex_state = 76, .external_lex_state = 2}, - [1688] = {.lex_state = 17}, - [1689] = {.lex_state = 14}, - [1690] = {.lex_state = 14}, - [1691] = {.lex_state = 76}, - [1692] = {.lex_state = 14, .external_lex_state = 2}, - [1693] = {.lex_state = 17}, - [1694] = {.lex_state = 14}, - [1695] = {.lex_state = 14}, - [1696] = {.lex_state = 76, .external_lex_state = 2}, - [1697] = {.lex_state = 14}, - [1698] = {.lex_state = 14}, - [1699] = {.lex_state = 76, .external_lex_state = 2}, - [1700] = {.lex_state = 14, .external_lex_state = 2}, - [1701] = {.lex_state = 14}, - [1702] = {.lex_state = 14, .external_lex_state = 2}, - [1703] = {.lex_state = 76}, - [1704] = {.lex_state = 14}, - [1705] = {.lex_state = 17}, - [1706] = {.lex_state = 17}, - [1707] = {.lex_state = 17}, - [1708] = {.lex_state = 14}, - [1709] = {.lex_state = 14}, - [1710] = {.lex_state = 14}, - [1711] = {.lex_state = 14, .external_lex_state = 2}, - [1712] = {.lex_state = 17}, - [1713] = {.lex_state = 14, .external_lex_state = 2}, - [1714] = {.lex_state = 14, .external_lex_state = 2}, - [1715] = {.lex_state = 14, .external_lex_state = 2}, - [1716] = {.lex_state = 17}, - [1717] = {.lex_state = 17}, - [1718] = {.lex_state = 14, .external_lex_state = 2}, - [1719] = {.lex_state = 14}, - [1720] = {.lex_state = 14}, - [1721] = {.lex_state = 76}, - [1722] = {.lex_state = 14}, - [1723] = {.lex_state = 14, .external_lex_state = 2}, - [1724] = {.lex_state = 17}, - [1725] = {.lex_state = 17}, - [1726] = {.lex_state = 14, .external_lex_state = 2}, - [1727] = {.lex_state = 76}, - [1728] = {.lex_state = 76, .external_lex_state = 2}, - [1729] = {.lex_state = 76, .external_lex_state = 2}, - [1730] = {.lex_state = 76, .external_lex_state = 2}, - [1731] = {.lex_state = 14}, - [1732] = {.lex_state = 14}, - [1733] = {.lex_state = 76}, - [1734] = {.lex_state = 14, .external_lex_state = 2}, - [1735] = {.lex_state = 14}, - [1736] = {.lex_state = 14}, - [1737] = {.lex_state = 14}, - [1738] = {.lex_state = 14}, - [1739] = {.lex_state = 14, .external_lex_state = 2}, - [1740] = {.lex_state = 14}, - [1741] = {.lex_state = 14}, - [1742] = {.lex_state = 14}, - [1743] = {.lex_state = 14, .external_lex_state = 2}, - [1744] = {.lex_state = 14, .external_lex_state = 2}, - [1745] = {.lex_state = 76, .external_lex_state = 2}, - [1746] = {.lex_state = 76}, - [1747] = {.lex_state = 76}, - [1748] = {.lex_state = 76, .external_lex_state = 2}, - [1749] = {.lex_state = 14}, - [1750] = {.lex_state = 14, .external_lex_state = 2}, - [1751] = {.lex_state = 14}, - [1752] = {.lex_state = 76}, - [1753] = {.lex_state = 76}, - [1754] = {.lex_state = 76, .external_lex_state = 2}, - [1755] = {.lex_state = 76, .external_lex_state = 2}, - [1756] = {.lex_state = 76, .external_lex_state = 2}, - [1757] = {.lex_state = 76, .external_lex_state = 2}, - [1758] = {.lex_state = 76, .external_lex_state = 2}, - [1759] = {.lex_state = 14, .external_lex_state = 2}, - [1760] = {.lex_state = 76}, - [1761] = {.lex_state = 76}, - [1762] = {.lex_state = 76, .external_lex_state = 2}, - [1763] = {.lex_state = 14, .external_lex_state = 2}, - [1764] = {.lex_state = 76}, - [1765] = {.lex_state = 77}, - [1766] = {.lex_state = 17}, - [1767] = {.lex_state = 14}, - [1768] = {.lex_state = 76, .external_lex_state = 2}, - [1769] = {.lex_state = 76, .external_lex_state = 2}, - [1770] = {.lex_state = 14}, - [1771] = {.lex_state = 76, .external_lex_state = 2}, - [1772] = {.lex_state = 76, .external_lex_state = 2}, - [1773] = {.lex_state = 77, .external_lex_state = 10}, - [1774] = {.lex_state = 77, .external_lex_state = 10}, - [1775] = {.lex_state = 76}, - [1776] = {.lex_state = 76}, - [1777] = {.lex_state = 14, .external_lex_state = 2}, - [1778] = {.lex_state = 17}, - [1779] = {.lex_state = 14}, - [1780] = {.lex_state = 14, .external_lex_state = 2}, - [1781] = {.lex_state = 14}, - [1782] = {.lex_state = 14}, - [1783] = {.lex_state = 14}, - [1784] = {.lex_state = 77}, - [1785] = {.lex_state = 14}, - [1786] = {.lex_state = 14}, - [1787] = {.lex_state = 76, .external_lex_state = 2}, - [1788] = {.lex_state = 76}, - [1789] = {.lex_state = 76}, - [1790] = {.lex_state = 14}, - [1791] = {.lex_state = 76}, - [1792] = {.lex_state = 14}, - [1793] = {.lex_state = 76, .external_lex_state = 2}, - [1794] = {.lex_state = 76, .external_lex_state = 2}, - [1795] = {.lex_state = 77, .external_lex_state = 10}, - [1796] = {.lex_state = 76}, - [1797] = {.lex_state = 76}, - [1798] = {.lex_state = 76}, - [1799] = {.lex_state = 76}, - [1800] = {.lex_state = 76}, - [1801] = {.lex_state = 76, .external_lex_state = 2}, - [1802] = {.lex_state = 76, .external_lex_state = 2}, - [1803] = {.lex_state = 76, .external_lex_state = 2}, - [1804] = {.lex_state = 76, .external_lex_state = 2}, - [1805] = {.lex_state = 76, .external_lex_state = 2}, - [1806] = {.lex_state = 14}, - [1807] = {.lex_state = 76, .external_lex_state = 2}, - [1808] = {.lex_state = 76}, - [1809] = {.lex_state = 14}, - [1810] = {.lex_state = 76}, - [1811] = {.lex_state = 76}, - [1812] = {.lex_state = 76, .external_lex_state = 2}, - [1813] = {.lex_state = 14}, + [1485] = {.lex_state = 73}, + [1486] = {.lex_state = 9}, + [1487] = {.lex_state = 9, .external_lex_state = 9}, + [1488] = {.lex_state = 9}, + [1489] = {.lex_state = 9}, + [1490] = {.lex_state = 9}, + [1491] = {.lex_state = 9}, + [1492] = {.lex_state = 9}, + [1493] = {.lex_state = 9}, + [1494] = {.lex_state = 73}, + [1495] = {.lex_state = 72}, + [1496] = {.lex_state = 72}, + [1497] = {.lex_state = 9}, + [1498] = {.lex_state = 9}, + [1499] = {.lex_state = 9}, + [1500] = {.lex_state = 72}, + [1501] = {.lex_state = 9}, + [1502] = {.lex_state = 9}, + [1503] = {.lex_state = 9}, + [1504] = {.lex_state = 9}, + [1505] = {.lex_state = 9}, + [1506] = {.lex_state = 9}, + [1507] = {.lex_state = 9}, + [1508] = {.lex_state = 9}, + [1509] = {.lex_state = 9}, + [1510] = {.lex_state = 9}, + [1511] = {.lex_state = 9}, + [1512] = {.lex_state = 9}, + [1513] = {.lex_state = 9}, + [1514] = {.lex_state = 72}, + [1515] = {.lex_state = 73}, + [1516] = {.lex_state = 72}, + [1517] = {.lex_state = 9}, + [1518] = {.lex_state = 72}, + [1519] = {.lex_state = 72}, + [1520] = {.lex_state = 9}, + [1521] = {.lex_state = 9}, + [1522] = {.lex_state = 9}, + [1523] = {.lex_state = 9}, + [1524] = {.lex_state = 9}, + [1525] = {.lex_state = 9}, + [1526] = {.lex_state = 9}, + [1527] = {.lex_state = 9}, + [1528] = {.lex_state = 9}, + [1529] = {.lex_state = 9}, + [1530] = {.lex_state = 9}, + [1531] = {.lex_state = 9}, + [1532] = {.lex_state = 9}, + [1533] = {.lex_state = 9}, + [1534] = {.lex_state = 9}, + [1535] = {.lex_state = 9, .external_lex_state = 9}, + [1536] = {.lex_state = 9}, + [1537] = {.lex_state = 72}, + [1538] = {.lex_state = 9}, + [1539] = {.lex_state = 9}, + [1540] = {.lex_state = 9}, + [1541] = {.lex_state = 9}, + [1542] = {.lex_state = 9}, + [1543] = {.lex_state = 72}, + [1544] = {.lex_state = 72}, + [1545] = {.lex_state = 9}, + [1546] = {.lex_state = 72}, + [1547] = {.lex_state = 72}, + [1548] = {.lex_state = 9}, + [1549] = {.lex_state = 72}, + [1550] = {.lex_state = 9}, + [1551] = {.lex_state = 9}, + [1552] = {.lex_state = 9}, + [1553] = {.lex_state = 72}, + [1554] = {.lex_state = 72}, + [1555] = {.lex_state = 72}, + [1556] = {.lex_state = 72}, + [1557] = {.lex_state = 72}, + [1558] = {.lex_state = 72}, + [1559] = {.lex_state = 72}, + [1560] = {.lex_state = 72}, + [1561] = {.lex_state = 72}, + [1562] = {.lex_state = 72, .external_lex_state = 2}, + [1563] = {.lex_state = 72}, + [1564] = {.lex_state = 72}, + [1565] = {.lex_state = 72}, + [1566] = {.lex_state = 72, .external_lex_state = 2}, + [1567] = {.lex_state = 72}, + [1568] = {.lex_state = 72}, + [1569] = {.lex_state = 72}, + [1570] = {.lex_state = 72}, + [1571] = {.lex_state = 72}, + [1572] = {.lex_state = 72}, + [1573] = {.lex_state = 9, .external_lex_state = 5}, + [1574] = {.lex_state = 11}, + [1575] = {.lex_state = 72}, + [1576] = {.lex_state = 72}, + [1577] = {.lex_state = 9, .external_lex_state = 5}, + [1578] = {.lex_state = 72}, + [1579] = {.lex_state = 9}, + [1580] = {.lex_state = 72}, + [1581] = {.lex_state = 72}, + [1582] = {.lex_state = 9, .external_lex_state = 5}, + [1583] = {.lex_state = 72}, + [1584] = {.lex_state = 72}, + [1585] = {.lex_state = 72}, + [1586] = {.lex_state = 9, .external_lex_state = 5}, + [1587] = {.lex_state = 72}, + [1588] = {.lex_state = 9, .external_lex_state = 5}, + [1589] = {.lex_state = 9, .external_lex_state = 5}, + [1590] = {.lex_state = 72}, + [1591] = {.lex_state = 72}, + [1592] = {.lex_state = 72}, + [1593] = {.lex_state = 72}, + [1594] = {.lex_state = 72}, + [1595] = {.lex_state = 73}, + [1596] = {.lex_state = 72, .external_lex_state = 2}, + [1597] = {.lex_state = 9, .external_lex_state = 5}, + [1598] = {.lex_state = 72}, + [1599] = {.lex_state = 72}, + [1600] = {.lex_state = 9, .external_lex_state = 5}, + [1601] = {.lex_state = 72, .external_lex_state = 2}, + [1602] = {.lex_state = 73}, + [1603] = {.lex_state = 9}, + [1604] = {.lex_state = 9, .external_lex_state = 5}, + [1605] = {.lex_state = 72}, + [1606] = {.lex_state = 9}, + [1607] = {.lex_state = 72}, + [1608] = {.lex_state = 9, .external_lex_state = 5}, + [1609] = {.lex_state = 9, .external_lex_state = 5}, + [1610] = {.lex_state = 72}, + [1611] = {.lex_state = 11}, + [1612] = {.lex_state = 11}, + [1613] = {.lex_state = 72}, + [1614] = {.lex_state = 72}, + [1615] = {.lex_state = 72}, + [1616] = {.lex_state = 72}, + [1617] = {.lex_state = 72}, + [1618] = {.lex_state = 9, .external_lex_state = 6}, + [1619] = {.lex_state = 9}, + [1620] = {.lex_state = 72}, + [1621] = {.lex_state = 72}, + [1622] = {.lex_state = 72}, + [1623] = {.lex_state = 72, .external_lex_state = 2}, + [1624] = {.lex_state = 9, .external_lex_state = 6}, + [1625] = {.lex_state = 72}, + [1626] = {.lex_state = 72}, + [1627] = {.lex_state = 72}, + [1628] = {.lex_state = 72}, + [1629] = {.lex_state = 72}, + [1630] = {.lex_state = 9}, + [1631] = {.lex_state = 72}, + [1632] = {.lex_state = 72}, + [1633] = {.lex_state = 72, .external_lex_state = 2}, + [1634] = {.lex_state = 72}, + [1635] = {.lex_state = 72}, + [1636] = {.lex_state = 9, .external_lex_state = 6}, + [1637] = {.lex_state = 9, .external_lex_state = 6}, + [1638] = {.lex_state = 72}, + [1639] = {.lex_state = 72}, + [1640] = {.lex_state = 72}, + [1641] = {.lex_state = 72}, + [1642] = {.lex_state = 72}, + [1643] = {.lex_state = 72}, + [1644] = {.lex_state = 72}, + [1645] = {.lex_state = 72}, + [1646] = {.lex_state = 9}, + [1647] = {.lex_state = 72}, + [1648] = {.lex_state = 72}, + [1649] = {.lex_state = 72}, + [1650] = {.lex_state = 72}, + [1651] = {.lex_state = 72}, + [1652] = {.lex_state = 74, .external_lex_state = 10}, + [1653] = {.lex_state = 72}, + [1654] = {.lex_state = 72}, + [1655] = {.lex_state = 9, .external_lex_state = 6}, + [1656] = {.lex_state = 72}, + [1657] = {.lex_state = 72}, + [1658] = {.lex_state = 72}, + [1659] = {.lex_state = 72}, + [1660] = {.lex_state = 72}, + [1661] = {.lex_state = 72}, + [1662] = {.lex_state = 9}, + [1663] = {.lex_state = 9, .external_lex_state = 6}, + [1664] = {.lex_state = 9, .external_lex_state = 6}, + [1665] = {.lex_state = 72}, + [1666] = {.lex_state = 72}, + [1667] = {.lex_state = 72}, + [1668] = {.lex_state = 72}, + [1669] = {.lex_state = 72}, + [1670] = {.lex_state = 9}, + [1671] = {.lex_state = 9, .external_lex_state = 6}, + [1672] = {.lex_state = 72}, + [1673] = {.lex_state = 72, .external_lex_state = 2}, + [1674] = {.lex_state = 9}, + [1675] = {.lex_state = 72}, + [1676] = {.lex_state = 9, .external_lex_state = 6}, + [1677] = {.lex_state = 72}, + [1678] = {.lex_state = 9}, + [1679] = {.lex_state = 72}, + [1680] = {.lex_state = 72}, + [1681] = {.lex_state = 72}, + [1682] = {.lex_state = 72}, + [1683] = {.lex_state = 9, .external_lex_state = 6}, + [1684] = {.lex_state = 72, .external_lex_state = 2}, + [1685] = {.lex_state = 72, .external_lex_state = 2}, + [1686] = {.lex_state = 72, .external_lex_state = 2}, + [1687] = {.lex_state = 72, .external_lex_state = 2}, + [1688] = {.lex_state = 72}, + [1689] = {.lex_state = 72}, + [1690] = {.lex_state = 72}, + [1691] = {.lex_state = 73}, + [1692] = {.lex_state = 72, .external_lex_state = 2}, + [1693] = {.lex_state = 72}, + [1694] = {.lex_state = 72}, + [1695] = {.lex_state = 72}, + [1696] = {.lex_state = 72, .external_lex_state = 2}, + [1697] = {.lex_state = 72}, + [1698] = {.lex_state = 72}, + [1699] = {.lex_state = 72, .external_lex_state = 2}, + [1700] = {.lex_state = 72, .external_lex_state = 2}, + [1701] = {.lex_state = 72}, + [1702] = {.lex_state = 72, .external_lex_state = 2}, + [1703] = {.lex_state = 9}, + [1704] = {.lex_state = 72}, + [1705] = {.lex_state = 72}, + [1706] = {.lex_state = 72}, + [1707] = {.lex_state = 72}, + [1708] = {.lex_state = 72}, + [1709] = {.lex_state = 72}, + [1710] = {.lex_state = 72}, + [1711] = {.lex_state = 72, .external_lex_state = 2}, + [1712] = {.lex_state = 72}, + [1713] = {.lex_state = 72, .external_lex_state = 2}, + [1714] = {.lex_state = 72, .external_lex_state = 2}, + [1715] = {.lex_state = 72, .external_lex_state = 2}, + [1716] = {.lex_state = 72}, + [1717] = {.lex_state = 72}, + [1718] = {.lex_state = 72, .external_lex_state = 2}, + [1719] = {.lex_state = 72}, + [1720] = {.lex_state = 72}, + [1721] = {.lex_state = 72}, + [1722] = {.lex_state = 72}, + [1723] = {.lex_state = 72, .external_lex_state = 2}, + [1724] = {.lex_state = 72}, + [1725] = {.lex_state = 72}, + [1726] = {.lex_state = 72, .external_lex_state = 2}, + [1727] = {.lex_state = 72}, + [1728] = {.lex_state = 72, .external_lex_state = 2}, + [1729] = {.lex_state = 72, .external_lex_state = 2}, + [1730] = {.lex_state = 72, .external_lex_state = 2}, + [1731] = {.lex_state = 72}, + [1732] = {.lex_state = 72}, + [1733] = {.lex_state = 72}, + [1734] = {.lex_state = 72, .external_lex_state = 2}, + [1735] = {.lex_state = 72}, + [1736] = {.lex_state = 72}, + [1737] = {.lex_state = 72}, + [1738] = {.lex_state = 72}, + [1739] = {.lex_state = 72, .external_lex_state = 2}, + [1740] = {.lex_state = 72}, + [1741] = {.lex_state = 72}, + [1742] = {.lex_state = 72}, + [1743] = {.lex_state = 72, .external_lex_state = 2}, + [1744] = {.lex_state = 72, .external_lex_state = 2}, + [1745] = {.lex_state = 72, .external_lex_state = 2}, + [1746] = {.lex_state = 73}, + [1747] = {.lex_state = 73}, + [1748] = {.lex_state = 72, .external_lex_state = 2}, + [1749] = {.lex_state = 72}, + [1750] = {.lex_state = 72, .external_lex_state = 2}, + [1751] = {.lex_state = 72}, + [1752] = {.lex_state = 73}, + [1753] = {.lex_state = 73}, + [1754] = {.lex_state = 72, .external_lex_state = 2}, + [1755] = {.lex_state = 72, .external_lex_state = 2}, + [1756] = {.lex_state = 72, .external_lex_state = 2}, + [1757] = {.lex_state = 72, .external_lex_state = 2}, + [1758] = {.lex_state = 72, .external_lex_state = 2}, + [1759] = {.lex_state = 72, .external_lex_state = 2}, + [1760] = {.lex_state = 73}, + [1761] = {.lex_state = 73}, + [1762] = {.lex_state = 72, .external_lex_state = 2}, + [1763] = {.lex_state = 72, .external_lex_state = 2}, + [1764] = {.lex_state = 73}, + [1765] = {.lex_state = 74}, + [1766] = {.lex_state = 72}, + [1767] = {.lex_state = 72}, + [1768] = {.lex_state = 72, .external_lex_state = 2}, + [1769] = {.lex_state = 72, .external_lex_state = 2}, + [1770] = {.lex_state = 72}, + [1771] = {.lex_state = 72, .external_lex_state = 2}, + [1772] = {.lex_state = 72, .external_lex_state = 2}, + [1773] = {.lex_state = 74, .external_lex_state = 10}, + [1774] = {.lex_state = 74, .external_lex_state = 10}, + [1775] = {.lex_state = 72}, + [1776] = {.lex_state = 72}, + [1777] = {.lex_state = 72, .external_lex_state = 2}, + [1778] = {.lex_state = 72}, + [1779] = {.lex_state = 72}, + [1780] = {.lex_state = 72, .external_lex_state = 2}, + [1781] = {.lex_state = 72}, + [1782] = {.lex_state = 72}, + [1783] = {.lex_state = 72}, + [1784] = {.lex_state = 74}, + [1785] = {.lex_state = 72}, + [1786] = {.lex_state = 72}, + [1787] = {.lex_state = 72, .external_lex_state = 2}, + [1788] = {.lex_state = 72}, + [1789] = {.lex_state = 73}, + [1790] = {.lex_state = 72}, + [1791] = {.lex_state = 72}, + [1792] = {.lex_state = 72}, + [1793] = {.lex_state = 72, .external_lex_state = 2}, + [1794] = {.lex_state = 72, .external_lex_state = 2}, + [1795] = {.lex_state = 74, .external_lex_state = 10}, + [1796] = {.lex_state = 72}, + [1797] = {.lex_state = 72}, + [1798] = {.lex_state = 73}, + [1799] = {.lex_state = 72}, + [1800] = {.lex_state = 72}, + [1801] = {.lex_state = 72, .external_lex_state = 2}, + [1802] = {.lex_state = 72, .external_lex_state = 2}, + [1803] = {.lex_state = 72, .external_lex_state = 2}, + [1804] = {.lex_state = 72, .external_lex_state = 2}, + [1805] = {.lex_state = 72, .external_lex_state = 2}, + [1806] = {.lex_state = 72}, + [1807] = {.lex_state = 72, .external_lex_state = 2}, + [1808] = {.lex_state = 72}, + [1809] = {.lex_state = 72}, + [1810] = {.lex_state = 72}, + [1811] = {.lex_state = 72}, + [1812] = {.lex_state = 72, .external_lex_state = 2}, + [1813] = {.lex_state = 72}, [1814] = {.lex_state = 5, .external_lex_state = 11}, - [1815] = {.lex_state = 14}, - [1816] = {.lex_state = 76, .external_lex_state = 2}, - [1817] = {.lex_state = 76}, - [1818] = {.lex_state = 77}, - [1819] = {.lex_state = 14}, - [1820] = {.lex_state = 76, .external_lex_state = 2}, - [1821] = {.lex_state = 76, .external_lex_state = 2}, - [1822] = {.lex_state = 76, .external_lex_state = 2}, - [1823] = {.lex_state = 76}, - [1824] = {.lex_state = 76, .external_lex_state = 2}, - [1825] = {.lex_state = 76, .external_lex_state = 2}, - [1826] = {.lex_state = 14}, - [1827] = {.lex_state = 76, .external_lex_state = 2}, - [1828] = {.lex_state = 76, .external_lex_state = 2}, - [1829] = {.lex_state = 76}, - [1830] = {.lex_state = 76, .external_lex_state = 2}, - [1831] = {.lex_state = 76, .external_lex_state = 2}, - [1832] = {.lex_state = 14}, - [1833] = {.lex_state = 14}, - [1834] = {.lex_state = 26}, - [1835] = {.lex_state = 76}, - [1836] = {.lex_state = 76}, - [1837] = {.lex_state = 14}, - [1838] = {.lex_state = 14}, - [1839] = {.lex_state = 76}, - [1840] = {.lex_state = 14}, - [1841] = {.lex_state = 76, .external_lex_state = 2}, - [1842] = {.lex_state = 76, .external_lex_state = 2}, - [1843] = {.lex_state = 76, .external_lex_state = 2}, - [1844] = {.lex_state = 76}, - [1845] = {.lex_state = 76, .external_lex_state = 2}, - [1846] = {.lex_state = 76, .external_lex_state = 2}, - [1847] = {.lex_state = 14}, - [1848] = {.lex_state = 76, .external_lex_state = 2}, - [1849] = {.lex_state = 76, .external_lex_state = 2}, - [1850] = {.lex_state = 14}, - [1851] = {.lex_state = 14}, - [1852] = {.lex_state = 76, .external_lex_state = 2}, - [1853] = {.lex_state = 76, .external_lex_state = 2}, - [1854] = {.lex_state = 26}, - [1855] = {.lex_state = 76}, - [1856] = {.lex_state = 76, .external_lex_state = 2}, - [1857] = {.lex_state = 76, .external_lex_state = 2}, - [1858] = {.lex_state = 76}, - [1859] = {.lex_state = 76, .external_lex_state = 2}, - [1860] = {.lex_state = 76, .external_lex_state = 2}, - [1861] = {.lex_state = 76, .external_lex_state = 2}, - [1862] = {.lex_state = 76, .external_lex_state = 2}, - [1863] = {.lex_state = 76, .external_lex_state = 2}, + [1815] = {.lex_state = 72}, + [1816] = {.lex_state = 72, .external_lex_state = 2}, + [1817] = {.lex_state = 72}, + [1818] = {.lex_state = 74}, + [1819] = {.lex_state = 72}, + [1820] = {.lex_state = 72, .external_lex_state = 2}, + [1821] = {.lex_state = 72, .external_lex_state = 2}, + [1822] = {.lex_state = 72, .external_lex_state = 2}, + [1823] = {.lex_state = 72}, + [1824] = {.lex_state = 72, .external_lex_state = 2}, + [1825] = {.lex_state = 72, .external_lex_state = 2}, + [1826] = {.lex_state = 72}, + [1827] = {.lex_state = 72, .external_lex_state = 2}, + [1828] = {.lex_state = 72, .external_lex_state = 2}, + [1829] = {.lex_state = 72}, + [1830] = {.lex_state = 72, .external_lex_state = 2}, + [1831] = {.lex_state = 72, .external_lex_state = 2}, + [1832] = {.lex_state = 72}, + [1833] = {.lex_state = 72}, + [1834] = {.lex_state = 23}, + [1835] = {.lex_state = 72}, + [1836] = {.lex_state = 72}, + [1837] = {.lex_state = 72}, + [1838] = {.lex_state = 72}, + [1839] = {.lex_state = 72}, + [1840] = {.lex_state = 72}, + [1841] = {.lex_state = 72, .external_lex_state = 2}, + [1842] = {.lex_state = 72, .external_lex_state = 2}, + [1843] = {.lex_state = 72, .external_lex_state = 2}, + [1844] = {.lex_state = 72}, + [1845] = {.lex_state = 72, .external_lex_state = 2}, + [1846] = {.lex_state = 72, .external_lex_state = 2}, + [1847] = {.lex_state = 72}, + [1848] = {.lex_state = 72, .external_lex_state = 2}, + [1849] = {.lex_state = 72, .external_lex_state = 2}, + [1850] = {.lex_state = 72}, + [1851] = {.lex_state = 72}, + [1852] = {.lex_state = 72, .external_lex_state = 2}, + [1853] = {.lex_state = 72, .external_lex_state = 2}, + [1854] = {.lex_state = 23}, + [1855] = {.lex_state = 72}, + [1856] = {.lex_state = 72, .external_lex_state = 2}, + [1857] = {.lex_state = 72, .external_lex_state = 2}, + [1858] = {.lex_state = 72}, + [1859] = {.lex_state = 72, .external_lex_state = 2}, + [1860] = {.lex_state = 72, .external_lex_state = 2}, + [1861] = {.lex_state = 72, .external_lex_state = 2}, + [1862] = {.lex_state = 72, .external_lex_state = 2}, + [1863] = {.lex_state = 72, .external_lex_state = 2}, [1864] = {.lex_state = 5, .external_lex_state = 11}, - [1865] = {.lex_state = 76}, - [1866] = {.lex_state = 76}, - [1867] = {.lex_state = 14}, - [1868] = {.lex_state = 14}, - [1869] = {.lex_state = 14}, - [1870] = {.lex_state = 76, .external_lex_state = 2}, - [1871] = {.lex_state = 76, .external_lex_state = 2}, - [1872] = {.lex_state = 76, .external_lex_state = 2}, - [1873] = {.lex_state = 76, .external_lex_state = 2}, - [1874] = {.lex_state = 76, .external_lex_state = 2}, - [1875] = {.lex_state = 76, .external_lex_state = 2}, - [1876] = {.lex_state = 76, .external_lex_state = 2}, - [1877] = {.lex_state = 76, .external_lex_state = 2}, - [1878] = {.lex_state = 76}, - [1879] = {.lex_state = 76}, - [1880] = {.lex_state = 14}, - [1881] = {.lex_state = 76, .external_lex_state = 2}, - [1882] = {.lex_state = 76}, - [1883] = {.lex_state = 76}, - [1884] = {.lex_state = 14}, - [1885] = {.lex_state = 76}, - [1886] = {.lex_state = 14}, - [1887] = {.lex_state = 76}, - [1888] = {.lex_state = 14}, - [1889] = {.lex_state = 26}, - [1890] = {.lex_state = 14}, - [1891] = {.lex_state = 76}, - [1892] = {.lex_state = 76}, - [1893] = {.lex_state = 76}, - [1894] = {.lex_state = 14}, - [1895] = {.lex_state = 76, .external_lex_state = 2}, - [1896] = {.lex_state = 14}, - [1897] = {.lex_state = 14}, - [1898] = {.lex_state = 14}, - [1899] = {.lex_state = 76}, - [1900] = {.lex_state = 76}, - [1901] = {.lex_state = 14}, - [1902] = {.lex_state = 76}, - [1903] = {.lex_state = 76}, - [1904] = {.lex_state = 76}, - [1905] = {.lex_state = 14}, - [1906] = {.lex_state = 14}, - [1907] = {.lex_state = 26}, - [1908] = {.lex_state = 76, .external_lex_state = 2}, - [1909] = {.lex_state = 76, .external_lex_state = 2}, - [1910] = {.lex_state = 76, .external_lex_state = 2}, - [1911] = {.lex_state = 14}, - [1912] = {.lex_state = 14}, - [1913] = {.lex_state = 76, .external_lex_state = 2}, - [1914] = {.lex_state = 76}, - [1915] = {.lex_state = 76, .external_lex_state = 2}, - [1916] = {.lex_state = 76, .external_lex_state = 2}, - [1917] = {.lex_state = 76, .external_lex_state = 2}, - [1918] = {.lex_state = 14}, - [1919] = {.lex_state = 76, .external_lex_state = 2}, - [1920] = {.lex_state = 76, .external_lex_state = 2}, - [1921] = {.lex_state = 76, .external_lex_state = 2}, - [1922] = {.lex_state = 76, .external_lex_state = 2}, - [1923] = {.lex_state = 14}, - [1924] = {.lex_state = 76, .external_lex_state = 2}, - [1925] = {.lex_state = 14}, - [1926] = {.lex_state = 76, .external_lex_state = 2}, - [1927] = {.lex_state = 76, .external_lex_state = 2}, - [1928] = {.lex_state = 76, .external_lex_state = 2}, - [1929] = {.lex_state = 14}, - [1930] = {.lex_state = 76}, - [1931] = {.lex_state = 76}, - [1932] = {.lex_state = 76, .external_lex_state = 2}, - [1933] = {.lex_state = 76, .external_lex_state = 2}, - [1934] = {.lex_state = 14}, - [1935] = {.lex_state = 26}, - [1936] = {.lex_state = 76}, - [1937] = {.lex_state = 76, .external_lex_state = 2}, - [1938] = {.lex_state = 14}, - [1939] = {.lex_state = 76, .external_lex_state = 2}, - [1940] = {.lex_state = 76}, - [1941] = {.lex_state = 76}, - [1942] = {.lex_state = 76, .external_lex_state = 2}, - [1943] = {.lex_state = 76, .external_lex_state = 2}, - [1944] = {.lex_state = 76, .external_lex_state = 2}, - [1945] = {.lex_state = 14}, - [1946] = {.lex_state = 14}, - [1947] = {.lex_state = 14}, - [1948] = {.lex_state = 76, .external_lex_state = 2}, - [1949] = {.lex_state = 76, .external_lex_state = 2}, - [1950] = {.lex_state = 76}, - [1951] = {.lex_state = 14}, - [1952] = {.lex_state = 14}, - [1953] = {.lex_state = 76}, - [1954] = {.lex_state = 76}, - [1955] = {.lex_state = 14}, - [1956] = {.lex_state = 76}, - [1957] = {.lex_state = 14}, - [1958] = {.lex_state = 14}, - [1959] = {.lex_state = 14}, - [1960] = {.lex_state = 76, .external_lex_state = 12}, - [1961] = {.lex_state = 76}, - [1962] = {.lex_state = 14}, - [1963] = {.lex_state = 14}, - [1964] = {.lex_state = 14}, - [1965] = {.lex_state = 14}, - [1966] = {.lex_state = 76}, - [1967] = {.lex_state = 76}, - [1968] = {.lex_state = 14}, - [1969] = {.lex_state = 76}, - [1970] = {.lex_state = 76}, - [1971] = {.lex_state = 14}, - [1972] = {.lex_state = 14}, - [1973] = {.lex_state = 14}, - [1974] = {.lex_state = 76}, - [1975] = {.lex_state = 76}, - [1976] = {.lex_state = 14}, - [1977] = {.lex_state = 14}, - [1978] = {.lex_state = 76}, - [1979] = {.lex_state = 14}, - [1980] = {.lex_state = 14}, - [1981] = {.lex_state = 76}, - [1982] = {.lex_state = 76}, - [1983] = {.lex_state = 14}, - [1984] = {.lex_state = 14}, - [1985] = {.lex_state = 14}, - [1986] = {.lex_state = 14}, - [1987] = {.lex_state = 14}, - [1988] = {.lex_state = 14}, - [1989] = {.lex_state = 76}, - [1990] = {.lex_state = 14}, - [1991] = {.lex_state = 14}, - [1992] = {.lex_state = 14}, - [1993] = {.lex_state = 14}, - [1994] = {.lex_state = 14}, - [1995] = {.lex_state = 14}, - [1996] = {.lex_state = 76}, - [1997] = {.lex_state = 14}, - [1998] = {.lex_state = 76}, - [1999] = {.lex_state = 14}, - [2000] = {.lex_state = 76}, - [2001] = {.lex_state = 14}, - [2002] = {.lex_state = 14}, - [2003] = {.lex_state = 14}, - [2004] = {.lex_state = 76}, - [2005] = {.lex_state = 76}, - [2006] = {.lex_state = 14}, - [2007] = {.lex_state = 14}, + [1865] = {.lex_state = 73}, + [1866] = {.lex_state = 72}, + [1867] = {.lex_state = 72}, + [1868] = {.lex_state = 72}, + [1869] = {.lex_state = 72}, + [1870] = {.lex_state = 72, .external_lex_state = 2}, + [1871] = {.lex_state = 72, .external_lex_state = 2}, + [1872] = {.lex_state = 72, .external_lex_state = 2}, + [1873] = {.lex_state = 72, .external_lex_state = 2}, + [1874] = {.lex_state = 72, .external_lex_state = 2}, + [1875] = {.lex_state = 72, .external_lex_state = 2}, + [1876] = {.lex_state = 72, .external_lex_state = 2}, + [1877] = {.lex_state = 72, .external_lex_state = 2}, + [1878] = {.lex_state = 72}, + [1879] = {.lex_state = 72}, + [1880] = {.lex_state = 72}, + [1881] = {.lex_state = 72, .external_lex_state = 2}, + [1882] = {.lex_state = 72}, + [1883] = {.lex_state = 72}, + [1884] = {.lex_state = 72}, + [1885] = {.lex_state = 72}, + [1886] = {.lex_state = 72}, + [1887] = {.lex_state = 72}, + [1888] = {.lex_state = 72}, + [1889] = {.lex_state = 23}, + [1890] = {.lex_state = 72}, + [1891] = {.lex_state = 72}, + [1892] = {.lex_state = 72}, + [1893] = {.lex_state = 72}, + [1894] = {.lex_state = 72}, + [1895] = {.lex_state = 72, .external_lex_state = 2}, + [1896] = {.lex_state = 72}, + [1897] = {.lex_state = 72}, + [1898] = {.lex_state = 72}, + [1899] = {.lex_state = 72}, + [1900] = {.lex_state = 9}, + [1901] = {.lex_state = 72}, + [1902] = {.lex_state = 72}, + [1903] = {.lex_state = 72}, + [1904] = {.lex_state = 72}, + [1905] = {.lex_state = 72}, + [1906] = {.lex_state = 72}, + [1907] = {.lex_state = 23}, + [1908] = {.lex_state = 72, .external_lex_state = 2}, + [1909] = {.lex_state = 72, .external_lex_state = 2}, + [1910] = {.lex_state = 72, .external_lex_state = 2}, + [1911] = {.lex_state = 72}, + [1912] = {.lex_state = 72}, + [1913] = {.lex_state = 72, .external_lex_state = 2}, + [1914] = {.lex_state = 9}, + [1915] = {.lex_state = 72, .external_lex_state = 2}, + [1916] = {.lex_state = 72, .external_lex_state = 2}, + [1917] = {.lex_state = 72, .external_lex_state = 2}, + [1918] = {.lex_state = 72}, + [1919] = {.lex_state = 72, .external_lex_state = 2}, + [1920] = {.lex_state = 72, .external_lex_state = 2}, + [1921] = {.lex_state = 72, .external_lex_state = 2}, + [1922] = {.lex_state = 72, .external_lex_state = 2}, + [1923] = {.lex_state = 72}, + [1924] = {.lex_state = 72, .external_lex_state = 2}, + [1925] = {.lex_state = 72}, + [1926] = {.lex_state = 72, .external_lex_state = 2}, + [1927] = {.lex_state = 72, .external_lex_state = 2}, + [1928] = {.lex_state = 72, .external_lex_state = 2}, + [1929] = {.lex_state = 72}, + [1930] = {.lex_state = 72}, + [1931] = {.lex_state = 72}, + [1932] = {.lex_state = 72, .external_lex_state = 2}, + [1933] = {.lex_state = 72, .external_lex_state = 2}, + [1934] = {.lex_state = 72}, + [1935] = {.lex_state = 23}, + [1936] = {.lex_state = 72}, + [1937] = {.lex_state = 72, .external_lex_state = 2}, + [1938] = {.lex_state = 72}, + [1939] = {.lex_state = 72, .external_lex_state = 2}, + [1940] = {.lex_state = 72}, + [1941] = {.lex_state = 72}, + [1942] = {.lex_state = 72, .external_lex_state = 2}, + [1943] = {.lex_state = 72, .external_lex_state = 2}, + [1944] = {.lex_state = 72, .external_lex_state = 2}, + [1945] = {.lex_state = 72}, + [1946] = {.lex_state = 72}, + [1947] = {.lex_state = 72}, + [1948] = {.lex_state = 72, .external_lex_state = 2}, + [1949] = {.lex_state = 72, .external_lex_state = 2}, + [1950] = {.lex_state = 72}, + [1951] = {.lex_state = 72}, + [1952] = {.lex_state = 72}, + [1953] = {.lex_state = 72}, + [1954] = {.lex_state = 72}, + [1955] = {.lex_state = 72}, + [1956] = {.lex_state = 72}, + [1957] = {.lex_state = 72}, + [1958] = {.lex_state = 72}, + [1959] = {.lex_state = 72}, + [1960] = {.lex_state = 72, .external_lex_state = 12}, + [1961] = {.lex_state = 72}, + [1962] = {.lex_state = 72}, + [1963] = {.lex_state = 72}, + [1964] = {.lex_state = 72}, + [1965] = {.lex_state = 72}, + [1966] = {.lex_state = 72}, + [1967] = {.lex_state = 72}, + [1968] = {.lex_state = 72}, + [1969] = {.lex_state = 72}, + [1970] = {.lex_state = 72}, + [1971] = {.lex_state = 72}, + [1972] = {.lex_state = 72}, + [1973] = {.lex_state = 72}, + [1974] = {.lex_state = 72}, + [1975] = {.lex_state = 72}, + [1976] = {.lex_state = 72}, + [1977] = {.lex_state = 72}, + [1978] = {.lex_state = 72}, + [1979] = {.lex_state = 72}, + [1980] = {.lex_state = 72}, + [1981] = {.lex_state = 72}, + [1982] = {.lex_state = 72}, + [1983] = {.lex_state = 72}, + [1984] = {.lex_state = 72}, + [1985] = {.lex_state = 72}, + [1986] = {.lex_state = 72}, + [1987] = {.lex_state = 72}, + [1988] = {.lex_state = 72}, + [1989] = {.lex_state = 72}, + [1990] = {.lex_state = 72}, + [1991] = {.lex_state = 72}, + [1992] = {.lex_state = 72}, + [1993] = {.lex_state = 72}, + [1994] = {.lex_state = 72}, + [1995] = {.lex_state = 72}, + [1996] = {.lex_state = 72}, + [1997] = {.lex_state = 72}, + [1998] = {.lex_state = 72}, + [1999] = {.lex_state = 72}, + [2000] = {.lex_state = 72}, + [2001] = {.lex_state = 72}, + [2002] = {.lex_state = 72}, + [2003] = {.lex_state = 72}, + [2004] = {.lex_state = 72}, + [2005] = {.lex_state = 72}, + [2006] = {.lex_state = 72}, + [2007] = {.lex_state = 72}, [2008] = {.lex_state = 5, .external_lex_state = 13}, [2009] = {.lex_state = 5, .external_lex_state = 13}, - [2010] = {.lex_state = 14}, - [2011] = {.lex_state = 76}, - [2012] = {.lex_state = 14}, - [2013] = {.lex_state = 14}, - [2014] = {.lex_state = 14}, - [2015] = {.lex_state = 76, .external_lex_state = 2}, + [2010] = {.lex_state = 72}, + [2011] = {.lex_state = 72}, + [2012] = {.lex_state = 72}, + [2013] = {.lex_state = 72}, + [2014] = {.lex_state = 72}, + [2015] = {.lex_state = 72, .external_lex_state = 2}, [2016] = {.lex_state = 5, .external_lex_state = 13}, - [2017] = {.lex_state = 14}, - [2018] = {.lex_state = 14}, - [2019] = {.lex_state = 14}, - [2020] = {.lex_state = 76}, - [2021] = {.lex_state = 76}, - [2022] = {.lex_state = 76}, - [2023] = {.lex_state = 14}, - [2024] = {.lex_state = 76}, - [2025] = {.lex_state = 76}, - [2026] = {.lex_state = 76}, - [2027] = {.lex_state = 76}, - [2028] = {.lex_state = 14}, - [2029] = {.lex_state = 14}, - [2030] = {.lex_state = 14}, - [2031] = {.lex_state = 76}, - [2032] = {.lex_state = 26}, - [2033] = {.lex_state = 14}, + [2017] = {.lex_state = 72}, + [2018] = {.lex_state = 72}, + [2019] = {.lex_state = 72}, + [2020] = {.lex_state = 72}, + [2021] = {.lex_state = 72}, + [2022] = {.lex_state = 72}, + [2023] = {.lex_state = 72}, + [2024] = {.lex_state = 72}, + [2025] = {.lex_state = 72}, + [2026] = {.lex_state = 72}, + [2027] = {.lex_state = 72}, + [2028] = {.lex_state = 72}, + [2029] = {.lex_state = 72}, + [2030] = {.lex_state = 72}, + [2031] = {.lex_state = 72}, + [2032] = {.lex_state = 23}, + [2033] = {.lex_state = 72}, [2034] = {.lex_state = 5, .external_lex_state = 13}, - [2035] = {.lex_state = 14}, - [2036] = {.lex_state = 14}, - [2037] = {.lex_state = 14}, - [2038] = {.lex_state = 76}, - [2039] = {.lex_state = 14}, - [2040] = {.lex_state = 14}, - [2041] = {.lex_state = 76}, - [2042] = {.lex_state = 76}, - [2043] = {.lex_state = 14}, - [2044] = {.lex_state = 76}, - [2045] = {.lex_state = 14}, - [2046] = {.lex_state = 14}, - [2047] = {.lex_state = 76, .external_lex_state = 2}, - [2048] = {.lex_state = 14}, - [2049] = {.lex_state = 14}, - [2050] = {.lex_state = 14}, - [2051] = {.lex_state = 76}, - [2052] = {.lex_state = 76}, - [2053] = {.lex_state = 76}, - [2054] = {.lex_state = 76}, - [2055] = {.lex_state = 76}, - [2056] = {.lex_state = 14}, - [2057] = {.lex_state = 76}, - [2058] = {.lex_state = 76}, - [2059] = {.lex_state = 14}, - [2060] = {.lex_state = 14}, - [2061] = {.lex_state = 76}, - [2062] = {.lex_state = 14}, - [2063] = {.lex_state = 14}, - [2064] = {.lex_state = 14}, - [2065] = {.lex_state = 14}, - [2066] = {.lex_state = 14}, - [2067] = {.lex_state = 76}, - [2068] = {.lex_state = 14}, - [2069] = {.lex_state = 14}, - [2070] = {.lex_state = 76, .external_lex_state = 2}, - [2071] = {.lex_state = 76}, - [2072] = {.lex_state = 14}, + [2035] = {.lex_state = 72}, + [2036] = {.lex_state = 72}, + [2037] = {.lex_state = 72}, + [2038] = {.lex_state = 72}, + [2039] = {.lex_state = 72}, + [2040] = {.lex_state = 72}, + [2041] = {.lex_state = 72}, + [2042] = {.lex_state = 72}, + [2043] = {.lex_state = 72}, + [2044] = {.lex_state = 72}, + [2045] = {.lex_state = 72}, + [2046] = {.lex_state = 72}, + [2047] = {.lex_state = 72, .external_lex_state = 2}, + [2048] = {.lex_state = 72}, + [2049] = {.lex_state = 72}, + [2050] = {.lex_state = 72}, + [2051] = {.lex_state = 72}, + [2052] = {.lex_state = 73}, + [2053] = {.lex_state = 72}, + [2054] = {.lex_state = 72}, + [2055] = {.lex_state = 72}, + [2056] = {.lex_state = 72}, + [2057] = {.lex_state = 72}, + [2058] = {.lex_state = 72}, + [2059] = {.lex_state = 72}, + [2060] = {.lex_state = 72}, + [2061] = {.lex_state = 72}, + [2062] = {.lex_state = 72}, + [2063] = {.lex_state = 72}, + [2064] = {.lex_state = 72}, + [2065] = {.lex_state = 72}, + [2066] = {.lex_state = 72}, + [2067] = {.lex_state = 72}, + [2068] = {.lex_state = 72}, + [2069] = {.lex_state = 72}, + [2070] = {.lex_state = 72, .external_lex_state = 2}, + [2071] = {.lex_state = 72}, + [2072] = {.lex_state = 72}, [2073] = {.lex_state = 5, .external_lex_state = 11}, - [2074] = {.lex_state = 14}, - [2075] = {.lex_state = 14}, - [2076] = {.lex_state = 14}, - [2077] = {.lex_state = 14}, - [2078] = {.lex_state = 76}, - [2079] = {.lex_state = 76}, - [2080] = {.lex_state = 14}, - [2081] = {.lex_state = 76}, - [2082] = {.lex_state = 76}, - [2083] = {.lex_state = 14}, - [2084] = {.lex_state = 76}, - [2085] = {.lex_state = 76}, - [2086] = {.lex_state = 76}, - [2087] = {.lex_state = 76}, - [2088] = {.lex_state = 14}, - [2089] = {.lex_state = 14}, - [2090] = {.lex_state = 14}, - [2091] = {.lex_state = 14}, - [2092] = {.lex_state = 14}, - [2093] = {.lex_state = 76}, - [2094] = {.lex_state = 76, .external_lex_state = 2}, - [2095] = {.lex_state = 76}, - [2096] = {.lex_state = 76}, - [2097] = {.lex_state = 76, .external_lex_state = 2}, - [2098] = {.lex_state = 76}, - [2099] = {.lex_state = 14}, - [2100] = {.lex_state = 14}, - [2101] = {.lex_state = 76}, - [2102] = {.lex_state = 14}, - [2103] = {.lex_state = 14}, - [2104] = {.lex_state = 76}, - [2105] = {.lex_state = 76}, - [2106] = {.lex_state = 14}, - [2107] = {.lex_state = 14}, - [2108] = {.lex_state = 76}, - [2109] = {.lex_state = 14}, - [2110] = {.lex_state = 76, .external_lex_state = 2}, - [2111] = {.lex_state = 14}, - [2112] = {.lex_state = 203, .external_lex_state = 14}, - [2113] = {.lex_state = 76, .external_lex_state = 2}, - [2114] = {.lex_state = 14}, - [2115] = {.lex_state = 14}, - [2116] = {.lex_state = 76}, - [2117] = {.lex_state = 76}, - [2118] = {.lex_state = 76}, - [2119] = {.lex_state = 76}, - [2120] = {.lex_state = 14}, - [2121] = {.lex_state = 14}, - [2122] = {.lex_state = 76, .external_lex_state = 2}, - [2123] = {.lex_state = 76, .external_lex_state = 2}, - [2124] = {.lex_state = 14}, - [2125] = {.lex_state = 14}, - [2126] = {.lex_state = 14}, - [2127] = {.lex_state = 76}, - [2128] = {.lex_state = 76}, - [2129] = {.lex_state = 76}, - [2130] = {.lex_state = 76}, - [2131] = {.lex_state = 76}, - [2132] = {.lex_state = 76}, - [2133] = {.lex_state = 76}, - [2134] = {.lex_state = 76}, - [2135] = {.lex_state = 76}, - [2136] = {.lex_state = 14}, - [2137] = {.lex_state = 14}, - [2138] = {.lex_state = 14}, - [2139] = {.lex_state = 76}, - [2140] = {.lex_state = 14}, - [2141] = {.lex_state = 76}, - [2142] = {.lex_state = 14}, - [2143] = {.lex_state = 76}, - [2144] = {.lex_state = 14}, - [2145] = {.lex_state = 76}, - [2146] = {.lex_state = 14}, - [2147] = {.lex_state = 76}, - [2148] = {.lex_state = 14}, - [2149] = {.lex_state = 76}, - [2150] = {.lex_state = 14}, - [2151] = {.lex_state = 14}, - [2152] = {.lex_state = 14}, - [2153] = {.lex_state = 76}, - [2154] = {.lex_state = 14}, - [2155] = {.lex_state = 14}, - [2156] = {.lex_state = 76}, - [2157] = {.lex_state = 76}, - [2158] = {.lex_state = 14}, - [2159] = {.lex_state = 76, .external_lex_state = 2}, - [2160] = {.lex_state = 14}, - [2161] = {.lex_state = 76, .external_lex_state = 2}, - [2162] = {.lex_state = 14}, - [2163] = {.lex_state = 14}, - [2164] = {.lex_state = 76}, - [2165] = {.lex_state = 14, .external_lex_state = 2}, - [2166] = {.lex_state = 76}, - [2167] = {.lex_state = 14}, - [2168] = {.lex_state = 14}, - [2169] = {.lex_state = 76}, - [2170] = {.lex_state = 14}, - [2171] = {.lex_state = 76}, - [2172] = {.lex_state = 76}, - [2173] = {.lex_state = 76}, - [2174] = {.lex_state = 14, .external_lex_state = 2}, - [2175] = {.lex_state = 76, .external_lex_state = 12}, - [2176] = {.lex_state = 14}, - [2177] = {.lex_state = 76}, - [2178] = {.lex_state = 76}, - [2179] = {.lex_state = 76}, - [2180] = {.lex_state = 76, .external_lex_state = 2}, - [2181] = {.lex_state = 76}, - [2182] = {.lex_state = 76}, - [2183] = {.lex_state = 76}, - [2184] = {.lex_state = 76}, - [2185] = {.lex_state = 76}, - [2186] = {.lex_state = 76}, - [2187] = {.lex_state = 76}, - [2188] = {.lex_state = 76}, - [2189] = {.lex_state = 76}, - [2190] = {.lex_state = 76}, - [2191] = {.lex_state = 76}, - [2192] = {.lex_state = 76}, - [2193] = {.lex_state = 76}, - [2194] = {.lex_state = 76}, - [2195] = {.lex_state = 76}, - [2196] = {.lex_state = 76}, - [2197] = {.lex_state = 76}, - [2198] = {.lex_state = 76}, - [2199] = {.lex_state = 76}, - [2200] = {.lex_state = 76}, - [2201] = {.lex_state = 76}, - [2202] = {.lex_state = 76}, - [2203] = {.lex_state = 76}, - [2204] = {.lex_state = 76}, - [2205] = {.lex_state = 14}, - [2206] = {.lex_state = 76}, - [2207] = {.lex_state = 76}, - [2208] = {.lex_state = 76}, - [2209] = {.lex_state = 76}, - [2210] = {.lex_state = 76}, - [2211] = {.lex_state = 76}, - [2212] = {.lex_state = 76, .external_lex_state = 2}, - [2213] = {.lex_state = 76}, - [2214] = {.lex_state = 76}, - [2215] = {.lex_state = 76}, - [2216] = {.lex_state = 76}, + [2074] = {.lex_state = 72}, + [2075] = {.lex_state = 72}, + [2076] = {.lex_state = 72}, + [2077] = {.lex_state = 72}, + [2078] = {.lex_state = 72}, + [2079] = {.lex_state = 72}, + [2080] = {.lex_state = 72}, + [2081] = {.lex_state = 72}, + [2082] = {.lex_state = 72}, + [2083] = {.lex_state = 72}, + [2084] = {.lex_state = 72}, + [2085] = {.lex_state = 72}, + [2086] = {.lex_state = 72}, + [2087] = {.lex_state = 72}, + [2088] = {.lex_state = 72}, + [2089] = {.lex_state = 72}, + [2090] = {.lex_state = 72}, + [2091] = {.lex_state = 72}, + [2092] = {.lex_state = 72}, + [2093] = {.lex_state = 72}, + [2094] = {.lex_state = 72, .external_lex_state = 2}, + [2095] = {.lex_state = 72}, + [2096] = {.lex_state = 72}, + [2097] = {.lex_state = 72, .external_lex_state = 2}, + [2098] = {.lex_state = 72}, + [2099] = {.lex_state = 72}, + [2100] = {.lex_state = 72}, + [2101] = {.lex_state = 72}, + [2102] = {.lex_state = 72}, + [2103] = {.lex_state = 72}, + [2104] = {.lex_state = 72}, + [2105] = {.lex_state = 72}, + [2106] = {.lex_state = 72}, + [2107] = {.lex_state = 72}, + [2108] = {.lex_state = 72}, + [2109] = {.lex_state = 72}, + [2110] = {.lex_state = 72, .external_lex_state = 2}, + [2111] = {.lex_state = 72}, + [2112] = {.lex_state = 199, .external_lex_state = 14}, + [2113] = {.lex_state = 72, .external_lex_state = 2}, + [2114] = {.lex_state = 72}, + [2115] = {.lex_state = 72}, + [2116] = {.lex_state = 72}, + [2117] = {.lex_state = 72}, + [2118] = {.lex_state = 72}, + [2119] = {.lex_state = 72}, + [2120] = {.lex_state = 72}, + [2121] = {.lex_state = 72}, + [2122] = {.lex_state = 72, .external_lex_state = 2}, + [2123] = {.lex_state = 72, .external_lex_state = 2}, + [2124] = {.lex_state = 72}, + [2125] = {.lex_state = 72}, + [2126] = {.lex_state = 72}, + [2127] = {.lex_state = 72}, + [2128] = {.lex_state = 72}, + [2129] = {.lex_state = 72}, + [2130] = {.lex_state = 72}, + [2131] = {.lex_state = 73}, + [2132] = {.lex_state = 72}, + [2133] = {.lex_state = 72}, + [2134] = {.lex_state = 73}, + [2135] = {.lex_state = 72}, + [2136] = {.lex_state = 72}, + [2137] = {.lex_state = 72}, + [2138] = {.lex_state = 72}, + [2139] = {.lex_state = 72}, + [2140] = {.lex_state = 72}, + [2141] = {.lex_state = 72}, + [2142] = {.lex_state = 72}, + [2143] = {.lex_state = 72}, + [2144] = {.lex_state = 72}, + [2145] = {.lex_state = 72}, + [2146] = {.lex_state = 72}, + [2147] = {.lex_state = 72}, + [2148] = {.lex_state = 72}, + [2149] = {.lex_state = 72}, + [2150] = {.lex_state = 72}, + [2151] = {.lex_state = 72}, + [2152] = {.lex_state = 72}, + [2153] = {.lex_state = 72}, + [2154] = {.lex_state = 72}, + [2155] = {.lex_state = 72}, + [2156] = {.lex_state = 72}, + [2157] = {.lex_state = 72}, + [2158] = {.lex_state = 72}, + [2159] = {.lex_state = 72, .external_lex_state = 2}, + [2160] = {.lex_state = 72}, + [2161] = {.lex_state = 72, .external_lex_state = 2}, + [2162] = {.lex_state = 72}, + [2163] = {.lex_state = 72}, + [2164] = {.lex_state = 72}, + [2165] = {.lex_state = 72, .external_lex_state = 2}, + [2166] = {.lex_state = 72}, + [2167] = {.lex_state = 72}, + [2168] = {.lex_state = 72}, + [2169] = {.lex_state = 72}, + [2170] = {.lex_state = 72}, + [2171] = {.lex_state = 72}, + [2172] = {.lex_state = 72}, + [2173] = {.lex_state = 72}, + [2174] = {.lex_state = 72, .external_lex_state = 2}, + [2175] = {.lex_state = 72, .external_lex_state = 12}, + [2176] = {.lex_state = 72}, + [2177] = {.lex_state = 72}, + [2178] = {.lex_state = 72}, + [2179] = {.lex_state = 72}, + [2180] = {.lex_state = 72, .external_lex_state = 2}, + [2181] = {.lex_state = 73}, + [2182] = {.lex_state = 72}, + [2183] = {.lex_state = 72}, + [2184] = {.lex_state = 72}, + [2185] = {.lex_state = 72}, + [2186] = {.lex_state = 72}, + [2187] = {.lex_state = 72}, + [2188] = {.lex_state = 72}, + [2189] = {.lex_state = 72}, + [2190] = {.lex_state = 72}, + [2191] = {.lex_state = 72}, + [2192] = {.lex_state = 72}, + [2193] = {.lex_state = 72}, + [2194] = {.lex_state = 72}, + [2195] = {.lex_state = 72}, + [2196] = {.lex_state = 72}, + [2197] = {.lex_state = 72}, + [2198] = {.lex_state = 72}, + [2199] = {.lex_state = 72}, + [2200] = {.lex_state = 72}, + [2201] = {.lex_state = 72}, + [2202] = {.lex_state = 72}, + [2203] = {.lex_state = 72}, + [2204] = {.lex_state = 72}, + [2205] = {.lex_state = 72}, + [2206] = {.lex_state = 72}, + [2207] = {.lex_state = 72}, + [2208] = {.lex_state = 72}, + [2209] = {.lex_state = 72}, + [2210] = {.lex_state = 72}, + [2211] = {.lex_state = 72}, + [2212] = {.lex_state = 72, .external_lex_state = 2}, + [2213] = {.lex_state = 72}, + [2214] = {.lex_state = 72}, + [2215] = {.lex_state = 72}, + [2216] = {.lex_state = 72}, [2217] = {.lex_state = 5, .external_lex_state = 13}, [2218] = {.lex_state = 5, .external_lex_state = 13}, - [2219] = {.lex_state = 76}, - [2220] = {.lex_state = 76}, - [2221] = {.lex_state = 76, .external_lex_state = 2}, - [2222] = {.lex_state = 14}, - [2223] = {.lex_state = 76, .external_lex_state = 2}, - [2224] = {.lex_state = 76}, - [2225] = {.lex_state = 76}, - [2226] = {.lex_state = 76}, - [2227] = {.lex_state = 76, .external_lex_state = 2}, - [2228] = {.lex_state = 76}, - [2229] = {.lex_state = 76, .external_lex_state = 2}, - [2230] = {.lex_state = 76}, - [2231] = {.lex_state = 76}, - [2232] = {.lex_state = 76}, - [2233] = {.lex_state = 76}, - [2234] = {.lex_state = 76, .external_lex_state = 10}, - [2235] = {.lex_state = 76, .external_lex_state = 2}, - [2236] = {.lex_state = 76}, - [2237] = {.lex_state = 76}, - [2238] = {.lex_state = 76}, - [2239] = {.lex_state = 76}, - [2240] = {.lex_state = 76}, - [2241] = {.lex_state = 14}, - [2242] = {.lex_state = 76}, - [2243] = {.lex_state = 76}, - [2244] = {.lex_state = 14}, - [2245] = {.lex_state = 76}, - [2246] = {.lex_state = 14}, - [2247] = {.lex_state = 76}, - [2248] = {.lex_state = 76}, - [2249] = {.lex_state = 76}, - [2250] = {.lex_state = 76, .external_lex_state = 2}, - [2251] = {.lex_state = 76}, - [2252] = {.lex_state = 76}, - [2253] = {.lex_state = 76}, - [2254] = {.lex_state = 76}, - [2255] = {.lex_state = 76}, - [2256] = {.lex_state = 76}, - [2257] = {.lex_state = 76}, - [2258] = {.lex_state = 76}, - [2259] = {.lex_state = 76, .external_lex_state = 2}, - [2260] = {.lex_state = 14}, - [2261] = {.lex_state = 76, .external_lex_state = 2}, - [2262] = {.lex_state = 76}, - [2263] = {.lex_state = 76}, - [2264] = {.lex_state = 76}, - [2265] = {.lex_state = 76}, - [2266] = {.lex_state = 76}, - [2267] = {.lex_state = 76}, - [2268] = {.lex_state = 76}, - [2269] = {.lex_state = 76}, - [2270] = {.lex_state = 76}, - [2271] = {.lex_state = 76}, - [2272] = {.lex_state = 76}, - [2273] = {.lex_state = 76}, - [2274] = {.lex_state = 76}, - [2275] = {.lex_state = 76}, - [2276] = {.lex_state = 76}, - [2277] = {.lex_state = 76}, - [2278] = {.lex_state = 76}, - [2279] = {.lex_state = 76, .external_lex_state = 2}, - [2280] = {.lex_state = 76}, - [2281] = {.lex_state = 76}, - [2282] = {.lex_state = 76}, - [2283] = {.lex_state = 76}, - [2284] = {.lex_state = 76}, - [2285] = {.lex_state = 76, .external_lex_state = 2}, - [2286] = {.lex_state = 76, .external_lex_state = 2}, - [2287] = {.lex_state = 76}, + [2219] = {.lex_state = 72}, + [2220] = {.lex_state = 72}, + [2221] = {.lex_state = 72, .external_lex_state = 2}, + [2222] = {.lex_state = 72}, + [2223] = {.lex_state = 72, .external_lex_state = 2}, + [2224] = {.lex_state = 72}, + [2225] = {.lex_state = 72}, + [2226] = {.lex_state = 72}, + [2227] = {.lex_state = 72, .external_lex_state = 2}, + [2228] = {.lex_state = 72}, + [2229] = {.lex_state = 72, .external_lex_state = 2}, + [2230] = {.lex_state = 72}, + [2231] = {.lex_state = 73}, + [2232] = {.lex_state = 72}, + [2233] = {.lex_state = 72}, + [2234] = {.lex_state = 73, .external_lex_state = 10}, + [2235] = {.lex_state = 72, .external_lex_state = 2}, + [2236] = {.lex_state = 72}, + [2237] = {.lex_state = 72}, + [2238] = {.lex_state = 72}, + [2239] = {.lex_state = 72}, + [2240] = {.lex_state = 72}, + [2241] = {.lex_state = 72}, + [2242] = {.lex_state = 72}, + [2243] = {.lex_state = 72}, + [2244] = {.lex_state = 72}, + [2245] = {.lex_state = 72}, + [2246] = {.lex_state = 72}, + [2247] = {.lex_state = 72}, + [2248] = {.lex_state = 72}, + [2249] = {.lex_state = 72}, + [2250] = {.lex_state = 72, .external_lex_state = 2}, + [2251] = {.lex_state = 72}, + [2252] = {.lex_state = 72}, + [2253] = {.lex_state = 72}, + [2254] = {.lex_state = 72}, + [2255] = {.lex_state = 72}, + [2256] = {.lex_state = 72}, + [2257] = {.lex_state = 72}, + [2258] = {.lex_state = 72}, + [2259] = {.lex_state = 72, .external_lex_state = 2}, + [2260] = {.lex_state = 72}, + [2261] = {.lex_state = 72, .external_lex_state = 2}, + [2262] = {.lex_state = 72}, + [2263] = {.lex_state = 72}, + [2264] = {.lex_state = 72}, + [2265] = {.lex_state = 72}, + [2266] = {.lex_state = 72}, + [2267] = {.lex_state = 72}, + [2268] = {.lex_state = 72}, + [2269] = {.lex_state = 72}, + [2270] = {.lex_state = 72}, + [2271] = {.lex_state = 72}, + [2272] = {.lex_state = 72}, + [2273] = {.lex_state = 72}, + [2274] = {.lex_state = 72}, + [2275] = {.lex_state = 72}, + [2276] = {.lex_state = 72}, + [2277] = {.lex_state = 72}, + [2278] = {.lex_state = 72}, + [2279] = {.lex_state = 72, .external_lex_state = 2}, + [2280] = {.lex_state = 72}, + [2281] = {.lex_state = 72}, + [2282] = {.lex_state = 72}, + [2283] = {.lex_state = 72}, + [2284] = {.lex_state = 72}, + [2285] = {.lex_state = 72, .external_lex_state = 2}, + [2286] = {.lex_state = 72, .external_lex_state = 2}, + [2287] = {.lex_state = 72}, [2288] = {.lex_state = 5, .external_lex_state = 13}, - [2289] = {.lex_state = 76}, - [2290] = {.lex_state = 76, .external_lex_state = 2}, - [2291] = {.lex_state = 76, .external_lex_state = 2}, - [2292] = {.lex_state = 76}, - [2293] = {.lex_state = 76}, - [2294] = {.lex_state = 76, .external_lex_state = 2}, - [2295] = {.lex_state = 76}, - [2296] = {.lex_state = 14}, - [2297] = {.lex_state = 76, .external_lex_state = 2}, - [2298] = {.lex_state = 76}, - [2299] = {.lex_state = 76}, - [2300] = {.lex_state = 76}, - [2301] = {.lex_state = 76}, - [2302] = {.lex_state = 76}, - [2303] = {.lex_state = 76}, - [2304] = {.lex_state = 76}, - [2305] = {.lex_state = 76}, - [2306] = {.lex_state = 76}, - [2307] = {.lex_state = 76}, - [2308] = {.lex_state = 76}, - [2309] = {.lex_state = 14}, - [2310] = {.lex_state = 76}, - [2311] = {.lex_state = 76}, - [2312] = {.lex_state = 76, .external_lex_state = 2}, - [2313] = {.lex_state = 76, .external_lex_state = 2}, - [2314] = {.lex_state = 76}, - [2315] = {.lex_state = 76}, - [2316] = {.lex_state = 76, .external_lex_state = 2}, - [2317] = {.lex_state = 76, .external_lex_state = 2}, - [2318] = {.lex_state = 76}, - [2319] = {.lex_state = 76}, - [2320] = {.lex_state = 76, .external_lex_state = 2}, - [2321] = {.lex_state = 76, .external_lex_state = 2}, - [2322] = {.lex_state = 76, .external_lex_state = 2}, - [2323] = {.lex_state = 76, .external_lex_state = 2}, - [2324] = {.lex_state = 76}, - [2325] = {.lex_state = 76}, - [2326] = {.lex_state = 14}, - [2327] = {.lex_state = 76}, - [2328] = {.lex_state = 76, .external_lex_state = 2}, - [2329] = {.lex_state = 76}, - [2330] = {.lex_state = 76}, - [2331] = {.lex_state = 76}, - [2332] = {.lex_state = 76}, - [2333] = {.lex_state = 76, .external_lex_state = 2}, - [2334] = {.lex_state = 76, .external_lex_state = 2}, - [2335] = {.lex_state = 14}, - [2336] = {.lex_state = 76}, - [2337] = {.lex_state = 76, .external_lex_state = 2}, - [2338] = {.lex_state = 76}, - [2339] = {.lex_state = 76, .external_lex_state = 2}, - [2340] = {.lex_state = 76}, - [2341] = {.lex_state = 76}, - [2342] = {.lex_state = 76}, - [2343] = {.lex_state = 76}, - [2344] = {.lex_state = 76}, - [2345] = {.lex_state = 76}, - [2346] = {.lex_state = 76}, - [2347] = {.lex_state = 76}, - [2348] = {.lex_state = 76}, - [2349] = {.lex_state = 76}, - [2350] = {.lex_state = 76}, - [2351] = {.lex_state = 76}, - [2352] = {.lex_state = 76}, - [2353] = {.lex_state = 76}, - [2354] = {.lex_state = 76}, - [2355] = {.lex_state = 76}, - [2356] = {.lex_state = 76}, - [2357] = {.lex_state = 76, .external_lex_state = 2}, - [2358] = {.lex_state = 76}, - [2359] = {.lex_state = 76}, - [2360] = {.lex_state = 76}, - [2361] = {.lex_state = 76}, - [2362] = {.lex_state = 76, .external_lex_state = 2}, - [2363] = {.lex_state = 76, .external_lex_state = 2}, - [2364] = {.lex_state = 76}, - [2365] = {.lex_state = 76, .external_lex_state = 2}, - [2366] = {.lex_state = 76, .external_lex_state = 2}, - [2367] = {.lex_state = 76}, - [2368] = {.lex_state = 76, .external_lex_state = 2}, - [2369] = {.lex_state = 76}, - [2370] = {.lex_state = 76}, - [2371] = {.lex_state = 76}, - [2372] = {.lex_state = 76}, - [2373] = {.lex_state = 76}, - [2374] = {.lex_state = 76}, - [2375] = {.lex_state = 14}, - [2376] = {.lex_state = 76}, - [2377] = {.lex_state = 76}, - [2378] = {.lex_state = 76}, - [2379] = {.lex_state = 76}, - [2380] = {.lex_state = 76, .external_lex_state = 2}, - [2381] = {.lex_state = 76, .external_lex_state = 2}, - [2382] = {.lex_state = 76}, - [2383] = {.lex_state = 76}, - [2384] = {.lex_state = 76, .external_lex_state = 2}, - [2385] = {.lex_state = 76}, - [2386] = {.lex_state = 76}, - [2387] = {.lex_state = 76}, - [2388] = {.lex_state = 76}, - [2389] = {.lex_state = 76}, - [2390] = {.lex_state = 76}, - [2391] = {.lex_state = 76, .external_lex_state = 2}, - [2392] = {.lex_state = 76, .external_lex_state = 2}, - [2393] = {.lex_state = 76, .external_lex_state = 2}, - [2394] = {.lex_state = 76}, - [2395] = {.lex_state = 76, .external_lex_state = 2}, - [2396] = {.lex_state = 76}, - [2397] = {.lex_state = 76}, - [2398] = {.lex_state = 76}, - [2399] = {.lex_state = 76}, - [2400] = {.lex_state = 76, .external_lex_state = 2}, - [2401] = {.lex_state = 76, .external_lex_state = 2}, - [2402] = {.lex_state = 76, .external_lex_state = 2}, - [2403] = {.lex_state = 76}, + [2289] = {.lex_state = 72}, + [2290] = {.lex_state = 72, .external_lex_state = 2}, + [2291] = {.lex_state = 72, .external_lex_state = 2}, + [2292] = {.lex_state = 72}, + [2293] = {.lex_state = 72}, + [2294] = {.lex_state = 72, .external_lex_state = 2}, + [2295] = {.lex_state = 72}, + [2296] = {.lex_state = 72}, + [2297] = {.lex_state = 72, .external_lex_state = 2}, + [2298] = {.lex_state = 72}, + [2299] = {.lex_state = 72}, + [2300] = {.lex_state = 72}, + [2301] = {.lex_state = 72}, + [2302] = {.lex_state = 72}, + [2303] = {.lex_state = 72}, + [2304] = {.lex_state = 72}, + [2305] = {.lex_state = 72}, + [2306] = {.lex_state = 72}, + [2307] = {.lex_state = 72}, + [2308] = {.lex_state = 72}, + [2309] = {.lex_state = 72}, + [2310] = {.lex_state = 72}, + [2311] = {.lex_state = 72}, + [2312] = {.lex_state = 72, .external_lex_state = 2}, + [2313] = {.lex_state = 72, .external_lex_state = 2}, + [2314] = {.lex_state = 72}, + [2315] = {.lex_state = 72}, + [2316] = {.lex_state = 72, .external_lex_state = 2}, + [2317] = {.lex_state = 72, .external_lex_state = 2}, + [2318] = {.lex_state = 72}, + [2319] = {.lex_state = 72}, + [2320] = {.lex_state = 72, .external_lex_state = 2}, + [2321] = {.lex_state = 72, .external_lex_state = 2}, + [2322] = {.lex_state = 72, .external_lex_state = 2}, + [2323] = {.lex_state = 72, .external_lex_state = 2}, + [2324] = {.lex_state = 72}, + [2325] = {.lex_state = 72}, + [2326] = {.lex_state = 72}, + [2327] = {.lex_state = 72}, + [2328] = {.lex_state = 72, .external_lex_state = 2}, + [2329] = {.lex_state = 72}, + [2330] = {.lex_state = 72}, + [2331] = {.lex_state = 72}, + [2332] = {.lex_state = 72}, + [2333] = {.lex_state = 72, .external_lex_state = 2}, + [2334] = {.lex_state = 72, .external_lex_state = 2}, + [2335] = {.lex_state = 72}, + [2336] = {.lex_state = 72}, + [2337] = {.lex_state = 72, .external_lex_state = 2}, + [2338] = {.lex_state = 72}, + [2339] = {.lex_state = 72, .external_lex_state = 2}, + [2340] = {.lex_state = 72}, + [2341] = {.lex_state = 72}, + [2342] = {.lex_state = 72}, + [2343] = {.lex_state = 72}, + [2344] = {.lex_state = 72}, + [2345] = {.lex_state = 72}, + [2346] = {.lex_state = 72}, + [2347] = {.lex_state = 72}, + [2348] = {.lex_state = 72}, + [2349] = {.lex_state = 72}, + [2350] = {.lex_state = 72}, + [2351] = {.lex_state = 72}, + [2352] = {.lex_state = 72}, + [2353] = {.lex_state = 72}, + [2354] = {.lex_state = 72}, + [2355] = {.lex_state = 72}, + [2356] = {.lex_state = 72}, + [2357] = {.lex_state = 72, .external_lex_state = 2}, + [2358] = {.lex_state = 72}, + [2359] = {.lex_state = 72}, + [2360] = {.lex_state = 72}, + [2361] = {.lex_state = 72}, + [2362] = {.lex_state = 72, .external_lex_state = 2}, + [2363] = {.lex_state = 72, .external_lex_state = 2}, + [2364] = {.lex_state = 72}, + [2365] = {.lex_state = 72, .external_lex_state = 2}, + [2366] = {.lex_state = 72, .external_lex_state = 2}, + [2367] = {.lex_state = 72}, + [2368] = {.lex_state = 72, .external_lex_state = 2}, + [2369] = {.lex_state = 72}, + [2370] = {.lex_state = 72}, + [2371] = {.lex_state = 72}, + [2372] = {.lex_state = 72}, + [2373] = {.lex_state = 72}, + [2374] = {.lex_state = 72}, + [2375] = {.lex_state = 72}, + [2376] = {.lex_state = 72}, + [2377] = {.lex_state = 72}, + [2378] = {.lex_state = 72}, + [2379] = {.lex_state = 72}, + [2380] = {.lex_state = 72, .external_lex_state = 2}, + [2381] = {.lex_state = 72, .external_lex_state = 2}, + [2382] = {.lex_state = 72}, + [2383] = {.lex_state = 72}, + [2384] = {.lex_state = 72, .external_lex_state = 2}, + [2385] = {.lex_state = 72}, + [2386] = {.lex_state = 72}, + [2387] = {.lex_state = 72}, + [2388] = {.lex_state = 72}, + [2389] = {.lex_state = 72}, + [2390] = {.lex_state = 72}, + [2391] = {.lex_state = 72, .external_lex_state = 2}, + [2392] = {.lex_state = 72, .external_lex_state = 2}, + [2393] = {.lex_state = 72, .external_lex_state = 2}, + [2394] = {.lex_state = 72}, + [2395] = {.lex_state = 72, .external_lex_state = 2}, + [2396] = {.lex_state = 72}, + [2397] = {.lex_state = 72}, + [2398] = {.lex_state = 72}, + [2399] = {.lex_state = 72}, + [2400] = {.lex_state = 72, .external_lex_state = 2}, + [2401] = {.lex_state = 72, .external_lex_state = 2}, + [2402] = {.lex_state = 72, .external_lex_state = 2}, + [2403] = {.lex_state = 72}, [2404] = {.lex_state = 5, .external_lex_state = 13}, - [2405] = {.lex_state = 76}, - [2406] = {.lex_state = 76}, - [2407] = {.lex_state = 76}, - [2408] = {.lex_state = 76}, - [2409] = {.lex_state = 76}, - [2410] = {.lex_state = 14}, - [2411] = {.lex_state = 76}, - [2412] = {.lex_state = 76}, + [2405] = {.lex_state = 72}, + [2406] = {.lex_state = 72}, + [2407] = {.lex_state = 72}, + [2408] = {.lex_state = 72}, + [2409] = {.lex_state = 72}, + [2410] = {.lex_state = 72}, + [2411] = {.lex_state = 72}, + [2412] = {.lex_state = 72}, [2413] = {.lex_state = 5, .external_lex_state = 13}, [2414] = {.lex_state = 5, .external_lex_state = 13}, [2415] = {.lex_state = 5, .external_lex_state = 13}, - [2416] = {.lex_state = 76}, - [2417] = {.lex_state = 76}, - [2418] = {.lex_state = 76}, + [2416] = {.lex_state = 72}, + [2417] = {.lex_state = 72}, + [2418] = {.lex_state = 72}, [2419] = {.lex_state = 5, .external_lex_state = 13}, - [2420] = {.lex_state = 76}, - [2421] = {.lex_state = 76}, - [2422] = {.lex_state = 76}, - [2423] = {.lex_state = 76}, - [2424] = {.lex_state = 76}, - [2425] = {.lex_state = 76}, - [2426] = {.lex_state = 76}, - [2427] = {.lex_state = 76}, - [2428] = {.lex_state = 76}, - [2429] = {.lex_state = 76}, - [2430] = {.lex_state = 76}, - [2431] = {.lex_state = 76}, - [2432] = {.lex_state = 76}, - [2433] = {.lex_state = 76}, - [2434] = {.lex_state = 76}, - [2435] = {.lex_state = 76, .external_lex_state = 2}, - [2436] = {.lex_state = 76, .external_lex_state = 2}, - [2437] = {.lex_state = 76}, - [2438] = {.lex_state = 76, .external_lex_state = 2}, - [2439] = {.lex_state = 76, .external_lex_state = 2}, - [2440] = {.lex_state = 76, .external_lex_state = 2}, - [2441] = {.lex_state = 76}, - [2442] = {.lex_state = 76}, - [2443] = {.lex_state = 76}, - [2444] = {.lex_state = 76}, - [2445] = {.lex_state = 76}, + [2420] = {.lex_state = 72}, + [2421] = {.lex_state = 72}, + [2422] = {.lex_state = 72}, + [2423] = {.lex_state = 72}, + [2424] = {.lex_state = 72}, + [2425] = {.lex_state = 72}, + [2426] = {.lex_state = 72}, + [2427] = {.lex_state = 72}, + [2428] = {.lex_state = 72}, + [2429] = {.lex_state = 72}, + [2430] = {.lex_state = 72}, + [2431] = {.lex_state = 72}, + [2432] = {.lex_state = 72}, + [2433] = {.lex_state = 72}, + [2434] = {.lex_state = 72}, + [2435] = {.lex_state = 72, .external_lex_state = 2}, + [2436] = {.lex_state = 72, .external_lex_state = 2}, + [2437] = {.lex_state = 72}, + [2438] = {.lex_state = 72, .external_lex_state = 2}, + [2439] = {.lex_state = 72, .external_lex_state = 2}, + [2440] = {.lex_state = 72, .external_lex_state = 2}, + [2441] = {.lex_state = 72}, + [2442] = {.lex_state = 72}, + [2443] = {.lex_state = 72}, + [2444] = {.lex_state = 72}, + [2445] = {.lex_state = 72}, [2446] = {.lex_state = 5, .external_lex_state = 13}, - [2447] = {.lex_state = 76}, - [2448] = {.lex_state = 76}, - [2449] = {.lex_state = 76, .external_lex_state = 2}, - [2450] = {.lex_state = 76}, - [2451] = {.lex_state = 76}, - [2452] = {.lex_state = 76, .external_lex_state = 2}, - [2453] = {.lex_state = 76}, - [2454] = {.lex_state = 76}, - [2455] = {.lex_state = 76}, - [2456] = {.lex_state = 76}, - [2457] = {.lex_state = 76}, - [2458] = {.lex_state = 76}, - [2459] = {.lex_state = 76}, - [2460] = {.lex_state = 76}, - [2461] = {.lex_state = 76}, - [2462] = {.lex_state = 76}, - [2463] = {.lex_state = 76}, - [2464] = {.lex_state = 76}, - [2465] = {.lex_state = 76}, - [2466] = {.lex_state = 76}, - [2467] = {.lex_state = 76}, - [2468] = {.lex_state = 76}, - [2469] = {.lex_state = 76}, - [2470] = {.lex_state = 14}, - [2471] = {.lex_state = 76}, - [2472] = {.lex_state = 76}, - [2473] = {.lex_state = 76, .external_lex_state = 2}, - [2474] = {.lex_state = 76}, - [2475] = {.lex_state = 76}, - [2476] = {.lex_state = 76, .external_lex_state = 2}, - [2477] = {.lex_state = 76}, - [2478] = {.lex_state = 76}, - [2479] = {.lex_state = 14}, - [2480] = {.lex_state = 76}, - [2481] = {.lex_state = 76, .external_lex_state = 2}, - [2482] = {.lex_state = 76}, - [2483] = {.lex_state = 76}, - [2484] = {.lex_state = 76, .external_lex_state = 2}, - [2485] = {.lex_state = 76}, - [2486] = {.lex_state = 76}, - [2487] = {.lex_state = 76}, - [2488] = {.lex_state = 76, .external_lex_state = 2}, - [2489] = {.lex_state = 76}, - [2490] = {.lex_state = 14}, - [2491] = {.lex_state = 76}, - [2492] = {.lex_state = 76}, - [2493] = {.lex_state = 76}, - [2494] = {.lex_state = 76}, - [2495] = {.lex_state = 76}, - [2496] = {.lex_state = 76}, - [2497] = {.lex_state = 76}, - [2498] = {.lex_state = 14}, - [2499] = {.lex_state = 76}, - [2500] = {.lex_state = 76}, - [2501] = {.lex_state = 76}, - [2502] = {.lex_state = 76}, - [2503] = {.lex_state = 76}, - [2504] = {.lex_state = 76}, - [2505] = {.lex_state = 76}, - [2506] = {.lex_state = 76}, - [2507] = {.lex_state = 76}, - [2508] = {.lex_state = 76, .external_lex_state = 13}, - [2509] = {.lex_state = 76}, - [2510] = {.lex_state = 76, .external_lex_state = 13}, - [2511] = {.lex_state = 76}, - [2512] = {.lex_state = 76}, - [2513] = {.lex_state = 76}, - [2514] = {.lex_state = 14}, - [2515] = {.lex_state = 14}, - [2516] = {.lex_state = 14}, - [2517] = {.lex_state = 76}, - [2518] = {.lex_state = 14}, - [2519] = {.lex_state = 76}, - [2520] = {.lex_state = 76}, - [2521] = {.lex_state = 14}, - [2522] = {.lex_state = 14}, - [2523] = {.lex_state = 14}, - [2524] = {.lex_state = 76}, - [2525] = {.lex_state = 76}, - [2526] = {.lex_state = 76}, - [2527] = {.lex_state = 14}, - [2528] = {.lex_state = 14}, - [2529] = {.lex_state = 76}, - [2530] = {.lex_state = 76}, - [2531] = {.lex_state = 14}, - [2532] = {.lex_state = 14}, - [2533] = {.lex_state = 76}, - [2534] = {.lex_state = 14}, - [2535] = {.lex_state = 76}, - [2536] = {.lex_state = 76}, - [2537] = {.lex_state = 14}, - [2538] = {.lex_state = 14}, - [2539] = {.lex_state = 76}, - [2540] = {.lex_state = 76}, - [2541] = {.lex_state = 14}, - [2542] = {.lex_state = 14}, - [2543] = {.lex_state = 76}, - [2544] = {.lex_state = 76}, - [2545] = {.lex_state = 14}, - [2546] = {.lex_state = 14}, - [2547] = {.lex_state = 14}, - [2548] = {.lex_state = 76}, - [2549] = {.lex_state = 14}, - [2550] = {.lex_state = 76}, - [2551] = {.lex_state = 76, .external_lex_state = 12}, - [2552] = {.lex_state = 76, .external_lex_state = 12}, - [2553] = {.lex_state = 76, .external_lex_state = 13}, - [2554] = {.lex_state = 76}, - [2555] = {.lex_state = 14}, - [2556] = {.lex_state = 14}, - [2557] = {.lex_state = 76}, - [2558] = {.lex_state = 76}, - [2559] = {.lex_state = 14}, - [2560] = {.lex_state = 76}, - [2561] = {.lex_state = 14}, - [2562] = {.lex_state = 76}, - [2563] = {.lex_state = 76}, - [2564] = {.lex_state = 14}, - [2565] = {.lex_state = 76}, - [2566] = {.lex_state = 76}, - [2567] = {.lex_state = 76}, - [2568] = {.lex_state = 76}, - [2569] = {.lex_state = 76}, - [2570] = {.lex_state = 76}, - [2571] = {.lex_state = 14}, - [2572] = {.lex_state = 76}, - [2573] = {.lex_state = 14}, - [2574] = {.lex_state = 14}, - [2575] = {.lex_state = 76}, - [2576] = {.lex_state = 76}, - [2577] = {.lex_state = 76}, - [2578] = {.lex_state = 14}, - [2579] = {.lex_state = 76, .external_lex_state = 13}, - [2580] = {.lex_state = 76}, - [2581] = {.lex_state = 14}, - [2582] = {.lex_state = 76}, - [2583] = {.lex_state = 76}, - [2584] = {.lex_state = 76}, - [2585] = {.lex_state = 14}, - [2586] = {.lex_state = 14}, - [2587] = {.lex_state = 76, .external_lex_state = 13}, - [2588] = {.lex_state = 76}, - [2589] = {.lex_state = 14}, - [2590] = {.lex_state = 14}, - [2591] = {.lex_state = 14}, - [2592] = {.lex_state = 14}, - [2593] = {.lex_state = 76}, - [2594] = {.lex_state = 76}, - [2595] = {.lex_state = 76}, - [2596] = {.lex_state = 76}, - [2597] = {.lex_state = 14}, - [2598] = {.lex_state = 76}, - [2599] = {.lex_state = 76}, - [2600] = {.lex_state = 76}, - [2601] = {.lex_state = 76}, - [2602] = {.lex_state = 76}, - [2603] = {.lex_state = 14}, - [2604] = {.lex_state = 14}, - [2605] = {.lex_state = 76}, - [2606] = {.lex_state = 14}, - [2607] = {.lex_state = 76}, - [2608] = {.lex_state = 14}, - [2609] = {.lex_state = 14}, - [2610] = {.lex_state = 76}, - [2611] = {.lex_state = 14}, - [2612] = {.lex_state = 76}, - [2613] = {.lex_state = 76}, - [2614] = {.lex_state = 14}, - [2615] = {.lex_state = 76, .external_lex_state = 12}, - [2616] = {.lex_state = 76, .external_lex_state = 12}, - [2617] = {.lex_state = 14}, - [2618] = {.lex_state = 76}, - [2619] = {.lex_state = 14}, - [2620] = {.lex_state = 14}, - [2621] = {.lex_state = 76}, - [2622] = {.lex_state = 76}, - [2623] = {.lex_state = 76}, - [2624] = {.lex_state = 14}, - [2625] = {.lex_state = 76}, - [2626] = {.lex_state = 14}, - [2627] = {.lex_state = 14}, - [2628] = {.lex_state = 14}, - [2629] = {.lex_state = 14}, - [2630] = {.lex_state = 76}, - [2631] = {.lex_state = 14}, - [2632] = {.lex_state = 76}, - [2633] = {.lex_state = 76}, - [2634] = {.lex_state = 76}, - [2635] = {.lex_state = 76}, - [2636] = {.lex_state = 14}, - [2637] = {.lex_state = 76}, - [2638] = {.lex_state = 76}, - [2639] = {.lex_state = 76}, - [2640] = {.lex_state = 76}, - [2641] = {.lex_state = 76}, - [2642] = {.lex_state = 76}, - [2643] = {.lex_state = 14}, - [2644] = {.lex_state = 76}, - [2645] = {.lex_state = 76}, - [2646] = {.lex_state = 14}, - [2647] = {.lex_state = 76}, - [2648] = {.lex_state = 76}, - [2649] = {.lex_state = 76}, - [2650] = {.lex_state = 76}, - [2651] = {.lex_state = 76}, - [2652] = {.lex_state = 76}, - [2653] = {.lex_state = 76}, - [2654] = {.lex_state = 14}, - [2655] = {.lex_state = 14}, - [2656] = {.lex_state = 14}, - [2657] = {.lex_state = 76}, - [2658] = {.lex_state = 76}, - [2659] = {.lex_state = 14}, - [2660] = {.lex_state = 76}, - [2661] = {.lex_state = 14}, - [2662] = {.lex_state = 76}, - [2663] = {.lex_state = 76}, - [2664] = {.lex_state = 76}, - [2665] = {.lex_state = 76}, - [2666] = {.lex_state = 76}, - [2667] = {.lex_state = 76}, - [2668] = {.lex_state = 76}, - [2669] = {.lex_state = 76}, - [2670] = {.lex_state = 14}, - [2671] = {.lex_state = 76}, - [2672] = {.lex_state = 76}, - [2673] = {.lex_state = 76}, - [2674] = {.lex_state = 14}, - [2675] = {.lex_state = 76}, - [2676] = {.lex_state = 76}, - [2677] = {.lex_state = 76}, - [2678] = {.lex_state = 76}, - [2679] = {.lex_state = 76}, - [2680] = {.lex_state = 76}, - [2681] = {.lex_state = 76}, - [2682] = {.lex_state = 76}, - [2683] = {.lex_state = 76, .external_lex_state = 13}, - [2684] = {.lex_state = 14}, - [2685] = {.lex_state = 76}, - [2686] = {.lex_state = 76}, - [2687] = {.lex_state = 76}, - [2688] = {.lex_state = 14}, - [2689] = {.lex_state = 76}, - [2690] = {.lex_state = 14}, - [2691] = {.lex_state = 76}, - [2692] = {.lex_state = 14}, - [2693] = {.lex_state = 76}, - [2694] = {.lex_state = 76}, - [2695] = {.lex_state = 76}, - [2696] = {.lex_state = 76}, - [2697] = {.lex_state = 76}, - [2698] = {.lex_state = 76}, - [2699] = {.lex_state = 76}, - [2700] = {.lex_state = 76}, - [2701] = {.lex_state = 76}, - [2702] = {.lex_state = 76}, - [2703] = {.lex_state = 76}, - [2704] = {.lex_state = 76}, - [2705] = {.lex_state = 76}, - [2706] = {.lex_state = 76}, - [2707] = {.lex_state = 76}, - [2708] = {.lex_state = 76}, - [2709] = {.lex_state = 76}, - [2710] = {.lex_state = 14}, + [2447] = {.lex_state = 72}, + [2448] = {.lex_state = 72}, + [2449] = {.lex_state = 72, .external_lex_state = 2}, + [2450] = {.lex_state = 72}, + [2451] = {.lex_state = 72}, + [2452] = {.lex_state = 72, .external_lex_state = 2}, + [2453] = {.lex_state = 72}, + [2454] = {.lex_state = 72}, + [2455] = {.lex_state = 72}, + [2456] = {.lex_state = 72}, + [2457] = {.lex_state = 72}, + [2458] = {.lex_state = 72}, + [2459] = {.lex_state = 72}, + [2460] = {.lex_state = 72}, + [2461] = {.lex_state = 72}, + [2462] = {.lex_state = 72}, + [2463] = {.lex_state = 72}, + [2464] = {.lex_state = 72}, + [2465] = {.lex_state = 72}, + [2466] = {.lex_state = 72}, + [2467] = {.lex_state = 72}, + [2468] = {.lex_state = 72}, + [2469] = {.lex_state = 72}, + [2470] = {.lex_state = 72}, + [2471] = {.lex_state = 72}, + [2472] = {.lex_state = 72}, + [2473] = {.lex_state = 72, .external_lex_state = 2}, + [2474] = {.lex_state = 72}, + [2475] = {.lex_state = 72}, + [2476] = {.lex_state = 72, .external_lex_state = 2}, + [2477] = {.lex_state = 72}, + [2478] = {.lex_state = 72}, + [2479] = {.lex_state = 72}, + [2480] = {.lex_state = 72}, + [2481] = {.lex_state = 72, .external_lex_state = 2}, + [2482] = {.lex_state = 72}, + [2483] = {.lex_state = 72}, + [2484] = {.lex_state = 72, .external_lex_state = 2}, + [2485] = {.lex_state = 72}, + [2486] = {.lex_state = 72}, + [2487] = {.lex_state = 72}, + [2488] = {.lex_state = 72, .external_lex_state = 2}, + [2489] = {.lex_state = 72}, + [2490] = {.lex_state = 72}, + [2491] = {.lex_state = 72}, + [2492] = {.lex_state = 72}, + [2493] = {.lex_state = 72}, + [2494] = {.lex_state = 72}, + [2495] = {.lex_state = 72}, + [2496] = {.lex_state = 72}, + [2497] = {.lex_state = 72}, + [2498] = {.lex_state = 72}, + [2499] = {.lex_state = 72}, + [2500] = {.lex_state = 72}, + [2501] = {.lex_state = 72}, + [2502] = {.lex_state = 72}, + [2503] = {.lex_state = 72}, + [2504] = {.lex_state = 72}, + [2505] = {.lex_state = 72}, + [2506] = {.lex_state = 72}, + [2507] = {.lex_state = 72}, + [2508] = {.lex_state = 72, .external_lex_state = 13}, + [2509] = {.lex_state = 72}, + [2510] = {.lex_state = 72, .external_lex_state = 13}, + [2511] = {.lex_state = 72}, + [2512] = {.lex_state = 72}, + [2513] = {.lex_state = 72}, + [2514] = {.lex_state = 72}, + [2515] = {.lex_state = 73}, + [2516] = {.lex_state = 73}, + [2517] = {.lex_state = 72}, + [2518] = {.lex_state = 72}, + [2519] = {.lex_state = 72}, + [2520] = {.lex_state = 72}, + [2521] = {.lex_state = 72}, + [2522] = {.lex_state = 72}, + [2523] = {.lex_state = 72}, + [2524] = {.lex_state = 72}, + [2525] = {.lex_state = 72}, + [2526] = {.lex_state = 72}, + [2527] = {.lex_state = 72}, + [2528] = {.lex_state = 72}, + [2529] = {.lex_state = 72}, + [2530] = {.lex_state = 72}, + [2531] = {.lex_state = 72}, + [2532] = {.lex_state = 72}, + [2533] = {.lex_state = 72}, + [2534] = {.lex_state = 72}, + [2535] = {.lex_state = 72}, + [2536] = {.lex_state = 72}, + [2537] = {.lex_state = 72}, + [2538] = {.lex_state = 72}, + [2539] = {.lex_state = 72}, + [2540] = {.lex_state = 72}, + [2541] = {.lex_state = 72}, + [2542] = {.lex_state = 72}, + [2543] = {.lex_state = 72}, + [2544] = {.lex_state = 72}, + [2545] = {.lex_state = 72}, + [2546] = {.lex_state = 72}, + [2547] = {.lex_state = 72}, + [2548] = {.lex_state = 72}, + [2549] = {.lex_state = 72}, + [2550] = {.lex_state = 72}, + [2551] = {.lex_state = 72, .external_lex_state = 12}, + [2552] = {.lex_state = 72, .external_lex_state = 12}, + [2553] = {.lex_state = 72, .external_lex_state = 13}, + [2554] = {.lex_state = 72}, + [2555] = {.lex_state = 72}, + [2556] = {.lex_state = 72}, + [2557] = {.lex_state = 72}, + [2558] = {.lex_state = 72}, + [2559] = {.lex_state = 72}, + [2560] = {.lex_state = 72}, + [2561] = {.lex_state = 72}, + [2562] = {.lex_state = 72}, + [2563] = {.lex_state = 72}, + [2564] = {.lex_state = 72}, + [2565] = {.lex_state = 72}, + [2566] = {.lex_state = 72}, + [2567] = {.lex_state = 72}, + [2568] = {.lex_state = 72}, + [2569] = {.lex_state = 72}, + [2570] = {.lex_state = 72}, + [2571] = {.lex_state = 72}, + [2572] = {.lex_state = 72}, + [2573] = {.lex_state = 72}, + [2574] = {.lex_state = 72}, + [2575] = {.lex_state = 72}, + [2576] = {.lex_state = 72}, + [2577] = {.lex_state = 72}, + [2578] = {.lex_state = 72}, + [2579] = {.lex_state = 72, .external_lex_state = 13}, + [2580] = {.lex_state = 72}, + [2581] = {.lex_state = 72}, + [2582] = {.lex_state = 72}, + [2583] = {.lex_state = 72}, + [2584] = {.lex_state = 72}, + [2585] = {.lex_state = 72}, + [2586] = {.lex_state = 72}, + [2587] = {.lex_state = 72, .external_lex_state = 13}, + [2588] = {.lex_state = 72}, + [2589] = {.lex_state = 72}, + [2590] = {.lex_state = 73}, + [2591] = {.lex_state = 72}, + [2592] = {.lex_state = 73}, + [2593] = {.lex_state = 72}, + [2594] = {.lex_state = 72}, + [2595] = {.lex_state = 72}, + [2596] = {.lex_state = 72}, + [2597] = {.lex_state = 72}, + [2598] = {.lex_state = 72}, + [2599] = {.lex_state = 72}, + [2600] = {.lex_state = 72}, + [2601] = {.lex_state = 72}, + [2602] = {.lex_state = 72}, + [2603] = {.lex_state = 72}, + [2604] = {.lex_state = 72}, + [2605] = {.lex_state = 72}, + [2606] = {.lex_state = 72}, + [2607] = {.lex_state = 72}, + [2608] = {.lex_state = 72}, + [2609] = {.lex_state = 72}, + [2610] = {.lex_state = 72}, + [2611] = {.lex_state = 72}, + [2612] = {.lex_state = 72}, + [2613] = {.lex_state = 72}, + [2614] = {.lex_state = 72}, + [2615] = {.lex_state = 72, .external_lex_state = 12}, + [2616] = {.lex_state = 72, .external_lex_state = 12}, + [2617] = {.lex_state = 72}, + [2618] = {.lex_state = 72}, + [2619] = {.lex_state = 72}, + [2620] = {.lex_state = 72}, + [2621] = {.lex_state = 72}, + [2622] = {.lex_state = 72}, + [2623] = {.lex_state = 72}, + [2624] = {.lex_state = 72}, + [2625] = {.lex_state = 72}, + [2626] = {.lex_state = 72}, + [2627] = {.lex_state = 72}, + [2628] = {.lex_state = 72}, + [2629] = {.lex_state = 72}, + [2630] = {.lex_state = 72}, + [2631] = {.lex_state = 72}, + [2632] = {.lex_state = 72}, + [2633] = {.lex_state = 72}, + [2634] = {.lex_state = 72}, + [2635] = {.lex_state = 72}, + [2636] = {.lex_state = 72}, + [2637] = {.lex_state = 72}, + [2638] = {.lex_state = 72}, + [2639] = {.lex_state = 72}, + [2640] = {.lex_state = 72}, + [2641] = {.lex_state = 72}, + [2642] = {.lex_state = 72}, + [2643] = {.lex_state = 72}, + [2644] = {.lex_state = 72}, + [2645] = {.lex_state = 72}, + [2646] = {.lex_state = 72}, + [2647] = {.lex_state = 72}, + [2648] = {.lex_state = 72}, + [2649] = {.lex_state = 72}, + [2650] = {.lex_state = 72}, + [2651] = {.lex_state = 72}, + [2652] = {.lex_state = 72}, + [2653] = {.lex_state = 72}, + [2654] = {.lex_state = 72}, + [2655] = {.lex_state = 72}, + [2656] = {.lex_state = 72}, + [2657] = {.lex_state = 72}, + [2658] = {.lex_state = 72}, + [2659] = {.lex_state = 72}, + [2660] = {.lex_state = 72}, + [2661] = {.lex_state = 72}, + [2662] = {.lex_state = 72}, + [2663] = {.lex_state = 72}, + [2664] = {.lex_state = 72}, + [2665] = {.lex_state = 72}, + [2666] = {.lex_state = 72}, + [2667] = {.lex_state = 72}, + [2668] = {.lex_state = 72}, + [2669] = {.lex_state = 72}, + [2670] = {.lex_state = 72}, + [2671] = {.lex_state = 72}, + [2672] = {.lex_state = 72}, + [2673] = {.lex_state = 72}, + [2674] = {.lex_state = 72}, + [2675] = {.lex_state = 72}, + [2676] = {.lex_state = 72}, + [2677] = {.lex_state = 72}, + [2678] = {.lex_state = 72}, + [2679] = {.lex_state = 72}, + [2680] = {.lex_state = 72}, + [2681] = {.lex_state = 72}, + [2682] = {.lex_state = 72}, + [2683] = {.lex_state = 72, .external_lex_state = 13}, + [2684] = {.lex_state = 72}, + [2685] = {.lex_state = 72}, + [2686] = {.lex_state = 72}, + [2687] = {.lex_state = 72}, + [2688] = {.lex_state = 72}, + [2689] = {.lex_state = 72}, + [2690] = {.lex_state = 72}, + [2691] = {.lex_state = 72}, + [2692] = {.lex_state = 72}, + [2693] = {.lex_state = 72}, + [2694] = {.lex_state = 72}, + [2695] = {.lex_state = 72}, + [2696] = {.lex_state = 72}, + [2697] = {.lex_state = 72}, + [2698] = {.lex_state = 72}, + [2699] = {.lex_state = 72}, + [2700] = {.lex_state = 72}, + [2701] = {.lex_state = 72}, + [2702] = {.lex_state = 72}, + [2703] = {.lex_state = 72}, + [2704] = {.lex_state = 72}, + [2705] = {.lex_state = 72}, + [2706] = {.lex_state = 72}, + [2707] = {.lex_state = 72}, + [2708] = {.lex_state = 72}, + [2709] = {.lex_state = 72}, + [2710] = {.lex_state = 72}, [2711] = {(TSStateId)(-1)}, [2712] = {(TSStateId)(-1)}, }; @@ -13454,7 +13411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_php_tag] = ACTIONS(9), [anon_sym_QMARK_GT] = ACTIONS(3), [aux_sym_text_token1] = ACTIONS(11), - [aux_sym_text_token2] = ACTIONS(11), + [aux_sym_text_token2] = ACTIONS(13), [sym_comment] = ACTIONS(5), }, [2] = { @@ -13555,87 +13512,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(13), - [sym_name] = ACTIONS(15), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(20), - [aux_sym_function_static_declaration_token1] = ACTIONS(23), - [aux_sym_global_declaration_token1] = ACTIONS(26), - [aux_sym_namespace_definition_token1] = ACTIONS(29), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(32), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(35), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(38), - [anon_sym_BSLASH] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(44), - [anon_sym_RBRACE] = ACTIONS(13), - [aux_sym_trait_declaration_token1] = ACTIONS(47), - [aux_sym_interface_declaration_token1] = ACTIONS(50), - [aux_sym_enum_declaration_token1] = ACTIONS(53), - [aux_sym_enum_case_token1] = ACTIONS(56), - [aux_sym_class_declaration_token1] = ACTIONS(58), - [aux_sym_final_modifier_token1] = ACTIONS(61), - [aux_sym_abstract_modifier_token1] = ACTIONS(64), - [aux_sym_readonly_modifier_token1] = ACTIONS(67), - [aux_sym_visibility_modifier_token1] = ACTIONS(70), - [aux_sym_visibility_modifier_token2] = ACTIONS(70), - [aux_sym_visibility_modifier_token3] = ACTIONS(70), - [aux_sym__arrow_function_header_token1] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(76), - [aux_sym_cast_type_token1] = ACTIONS(79), - [aux_sym_echo_statement_token1] = ACTIONS(82), - [anon_sym_unset] = ACTIONS(85), - [aux_sym_declare_statement_token1] = ACTIONS(88), - [aux_sym_declare_statement_token2] = ACTIONS(56), - [sym_float] = ACTIONS(91), - [aux_sym_try_statement_token1] = ACTIONS(94), - [aux_sym_goto_statement_token1] = ACTIONS(97), - [aux_sym_continue_statement_token1] = ACTIONS(100), - [aux_sym_break_statement_token1] = ACTIONS(103), - [sym_integer] = ACTIONS(91), - [aux_sym_return_statement_token1] = ACTIONS(106), - [aux_sym_throw_expression_token1] = ACTIONS(109), - [aux_sym_while_statement_token1] = ACTIONS(112), - [aux_sym_while_statement_token2] = ACTIONS(56), - [aux_sym_do_statement_token1] = ACTIONS(115), - [aux_sym_for_statement_token1] = ACTIONS(118), - [aux_sym_for_statement_token2] = ACTIONS(56), - [aux_sym_foreach_statement_token1] = ACTIONS(121), - [aux_sym_foreach_statement_token2] = ACTIONS(56), - [aux_sym_if_statement_token1] = ACTIONS(124), - [aux_sym_if_statement_token2] = ACTIONS(56), - [aux_sym_match_expression_token1] = ACTIONS(127), - [aux_sym_match_default_expression_token1] = ACTIONS(56), - [aux_sym_switch_statement_token1] = ACTIONS(130), - [aux_sym_switch_block_token1] = ACTIONS(56), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_TILDE] = ACTIONS(136), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_AT] = ACTIONS(139), - [aux_sym_clone_expression_token1] = ACTIONS(142), - [aux_sym_print_intrinsic_token1] = ACTIONS(145), - [aux_sym_object_creation_expression_token1] = ACTIONS(148), - [anon_sym_DASH_DASH] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(151), - [aux_sym__list_destructing_token1] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_self] = ACTIONS(160), - [anon_sym_parent] = ACTIONS(160), - [aux_sym__argument_name_token1] = ACTIONS(163), - [aux_sym__argument_name_token2] = ACTIONS(166), - [anon_sym_POUND_LBRACK] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(172), - [aux_sym_encapsed_string_token1] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(175), - [aux_sym_string_token1] = ACTIONS(172), - [anon_sym_LT_LT_LT] = ACTIONS(178), - [anon_sym_BQUOTE] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(184), - [aux_sym_yield_expression_token1] = ACTIONS(187), - [aux_sym_include_expression_token1] = ACTIONS(190), - [aux_sym_include_once_expression_token1] = ACTIONS(193), - [aux_sym_require_expression_token1] = ACTIONS(196), - [aux_sym_require_once_expression_token1] = ACTIONS(199), + [ts_builtin_sym_end] = ACTIONS(15), + [sym_name] = ACTIONS(17), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(22), + [aux_sym_function_static_declaration_token1] = ACTIONS(25), + [aux_sym_global_declaration_token1] = ACTIONS(28), + [aux_sym_namespace_definition_token1] = ACTIONS(31), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(34), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(37), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(40), + [anon_sym_BSLASH] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(46), + [anon_sym_RBRACE] = ACTIONS(15), + [aux_sym_trait_declaration_token1] = ACTIONS(49), + [aux_sym_interface_declaration_token1] = ACTIONS(52), + [aux_sym_enum_declaration_token1] = ACTIONS(55), + [aux_sym_enum_case_token1] = ACTIONS(58), + [aux_sym_class_declaration_token1] = ACTIONS(60), + [aux_sym_final_modifier_token1] = ACTIONS(63), + [aux_sym_abstract_modifier_token1] = ACTIONS(66), + [aux_sym_readonly_modifier_token1] = ACTIONS(69), + [aux_sym_visibility_modifier_token1] = ACTIONS(72), + [aux_sym_visibility_modifier_token2] = ACTIONS(72), + [aux_sym_visibility_modifier_token3] = ACTIONS(72), + [aux_sym__arrow_function_header_token1] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(78), + [aux_sym_cast_type_token1] = ACTIONS(81), + [aux_sym_echo_statement_token1] = ACTIONS(84), + [anon_sym_unset] = ACTIONS(87), + [aux_sym_declare_statement_token1] = ACTIONS(90), + [aux_sym_declare_statement_token2] = ACTIONS(58), + [sym_float] = ACTIONS(93), + [aux_sym_try_statement_token1] = ACTIONS(96), + [aux_sym_goto_statement_token1] = ACTIONS(99), + [aux_sym_continue_statement_token1] = ACTIONS(102), + [aux_sym_break_statement_token1] = ACTIONS(105), + [sym_integer] = ACTIONS(93), + [aux_sym_return_statement_token1] = ACTIONS(108), + [aux_sym_throw_expression_token1] = ACTIONS(111), + [aux_sym_while_statement_token1] = ACTIONS(114), + [aux_sym_while_statement_token2] = ACTIONS(58), + [aux_sym_do_statement_token1] = ACTIONS(117), + [aux_sym_for_statement_token1] = ACTIONS(120), + [aux_sym_for_statement_token2] = ACTIONS(58), + [aux_sym_foreach_statement_token1] = ACTIONS(123), + [aux_sym_foreach_statement_token2] = ACTIONS(58), + [aux_sym_if_statement_token1] = ACTIONS(126), + [aux_sym_if_statement_token2] = ACTIONS(58), + [aux_sym_match_expression_token1] = ACTIONS(129), + [aux_sym_match_default_expression_token1] = ACTIONS(58), + [aux_sym_switch_statement_token1] = ACTIONS(132), + [aux_sym_switch_block_token1] = ACTIONS(58), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(138), + [anon_sym_BANG] = ACTIONS(138), + [anon_sym_AT] = ACTIONS(141), + [aux_sym_clone_expression_token1] = ACTIONS(144), + [aux_sym_print_intrinsic_token1] = ACTIONS(147), + [aux_sym_object_creation_expression_token1] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [aux_sym__list_destructing_token1] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_self] = ACTIONS(162), + [anon_sym_parent] = ACTIONS(162), + [aux_sym__argument_name_token1] = ACTIONS(165), + [aux_sym__argument_name_token2] = ACTIONS(168), + [anon_sym_POUND_LBRACK] = ACTIONS(171), + [anon_sym_SQUOTE] = ACTIONS(174), + [aux_sym_encapsed_string_token1] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(177), + [aux_sym_string_token1] = ACTIONS(174), + [anon_sym_LT_LT_LT] = ACTIONS(180), + [anon_sym_BQUOTE] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(186), + [aux_sym_yield_expression_token1] = ACTIONS(189), + [aux_sym_include_expression_token1] = ACTIONS(192), + [aux_sym_include_once_expression_token1] = ACTIONS(195), + [aux_sym_require_expression_token1] = ACTIONS(198), + [aux_sym_require_once_expression_token1] = ACTIONS(201), [sym_comment] = ACTIONS(5), }, [3] = { @@ -13736,81 +13693,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(222), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_enum_case_token1] = ACTIONS(230), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_match_default_expression_token1] = ACTIONS(230), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [aux_sym_switch_block_token1] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(224), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_enum_case_token1] = ACTIONS(232), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_match_default_expression_token1] = ACTIONS(232), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [aux_sym_switch_block_token1] = ACTIONS(232), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [4] = { @@ -13911,81 +13868,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(328), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_enum_case_token1] = ACTIONS(330), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_match_default_expression_token1] = ACTIONS(330), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [aux_sym_switch_block_token1] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(330), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_enum_case_token1] = ACTIONS(332), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_match_default_expression_token1] = ACTIONS(332), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [aux_sym_switch_block_token1] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [5] = { @@ -14086,81 +14043,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(3), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(332), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_enum_case_token1] = ACTIONS(334), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_match_default_expression_token1] = ACTIONS(334), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [aux_sym_switch_block_token1] = ACTIONS(334), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(334), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_enum_case_token1] = ACTIONS(336), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_match_default_expression_token1] = ACTIONS(336), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [aux_sym_switch_block_token1] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [6] = { @@ -14261,81 +14218,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(4), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(336), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_enum_case_token1] = ACTIONS(338), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_match_default_expression_token1] = ACTIONS(338), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [aux_sym_switch_block_token1] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(338), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_enum_case_token1] = ACTIONS(340), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_match_default_expression_token1] = ACTIONS(340), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [aux_sym_switch_block_token1] = ACTIONS(340), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [7] = { @@ -14436,80 +14393,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(11), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token2] = ACTIONS(350), - [aux_sym_else_if_clause_token1] = ACTIONS(350), - [aux_sym_else_clause_token1] = ACTIONS(350), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_if_statement_token2] = ACTIONS(352), + [aux_sym_else_if_clause_token1] = ACTIONS(352), + [aux_sym_else_clause_token1] = ACTIONS(352), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [8] = { @@ -14610,80 +14567,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(10), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_while_statement_token2] = ACTIONS(350), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_foreach_statement_token2] = ACTIONS(350), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_if_statement_token2] = ACTIONS(350), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_while_statement_token2] = ACTIONS(352), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_foreach_statement_token2] = ACTIONS(352), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_if_statement_token2] = ACTIONS(352), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [9] = { @@ -14784,80 +14741,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(9), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(15), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(20), - [aux_sym_function_static_declaration_token1] = ACTIONS(23), - [aux_sym_global_declaration_token1] = ACTIONS(26), - [aux_sym_namespace_definition_token1] = ACTIONS(29), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(32), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(35), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(38), - [anon_sym_BSLASH] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(44), - [aux_sym_trait_declaration_token1] = ACTIONS(47), - [aux_sym_interface_declaration_token1] = ACTIONS(50), - [aux_sym_enum_declaration_token1] = ACTIONS(53), - [aux_sym_class_declaration_token1] = ACTIONS(58), - [aux_sym_final_modifier_token1] = ACTIONS(61), - [aux_sym_abstract_modifier_token1] = ACTIONS(64), - [aux_sym_readonly_modifier_token1] = ACTIONS(67), - [aux_sym_visibility_modifier_token1] = ACTIONS(70), - [aux_sym_visibility_modifier_token2] = ACTIONS(70), - [aux_sym_visibility_modifier_token3] = ACTIONS(70), - [aux_sym__arrow_function_header_token1] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(76), - [aux_sym_cast_type_token1] = ACTIONS(79), - [aux_sym_echo_statement_token1] = ACTIONS(82), - [anon_sym_unset] = ACTIONS(85), - [aux_sym_declare_statement_token1] = ACTIONS(352), - [sym_float] = ACTIONS(91), - [aux_sym_try_statement_token1] = ACTIONS(94), - [aux_sym_goto_statement_token1] = ACTIONS(97), - [aux_sym_continue_statement_token1] = ACTIONS(100), - [aux_sym_break_statement_token1] = ACTIONS(103), - [sym_integer] = ACTIONS(91), - [aux_sym_return_statement_token1] = ACTIONS(106), - [aux_sym_throw_expression_token1] = ACTIONS(109), - [aux_sym_while_statement_token1] = ACTIONS(355), - [aux_sym_do_statement_token1] = ACTIONS(115), - [aux_sym_for_statement_token1] = ACTIONS(358), - [aux_sym_foreach_statement_token1] = ACTIONS(361), - [aux_sym_if_statement_token1] = ACTIONS(364), - [aux_sym_if_statement_token2] = ACTIONS(56), - [aux_sym_else_if_clause_token1] = ACTIONS(56), - [aux_sym_else_clause_token1] = ACTIONS(56), - [aux_sym_match_expression_token1] = ACTIONS(127), - [aux_sym_switch_statement_token1] = ACTIONS(130), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_TILDE] = ACTIONS(136), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_AT] = ACTIONS(139), - [aux_sym_clone_expression_token1] = ACTIONS(142), - [aux_sym_print_intrinsic_token1] = ACTIONS(145), - [aux_sym_object_creation_expression_token1] = ACTIONS(148), - [anon_sym_DASH_DASH] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(151), - [aux_sym__list_destructing_token1] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_self] = ACTIONS(160), - [anon_sym_parent] = ACTIONS(160), - [aux_sym__argument_name_token1] = ACTIONS(163), - [aux_sym__argument_name_token2] = ACTIONS(166), - [anon_sym_POUND_LBRACK] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(172), - [aux_sym_encapsed_string_token1] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(175), - [aux_sym_string_token1] = ACTIONS(172), - [anon_sym_LT_LT_LT] = ACTIONS(178), - [anon_sym_BQUOTE] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(184), - [aux_sym_yield_expression_token1] = ACTIONS(187), - [aux_sym_include_expression_token1] = ACTIONS(190), - [aux_sym_include_once_expression_token1] = ACTIONS(193), - [aux_sym_require_expression_token1] = ACTIONS(196), - [aux_sym_require_once_expression_token1] = ACTIONS(199), + [sym_name] = ACTIONS(17), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(22), + [aux_sym_function_static_declaration_token1] = ACTIONS(25), + [aux_sym_global_declaration_token1] = ACTIONS(28), + [aux_sym_namespace_definition_token1] = ACTIONS(31), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(34), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(37), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(40), + [anon_sym_BSLASH] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(46), + [aux_sym_trait_declaration_token1] = ACTIONS(49), + [aux_sym_interface_declaration_token1] = ACTIONS(52), + [aux_sym_enum_declaration_token1] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(60), + [aux_sym_final_modifier_token1] = ACTIONS(63), + [aux_sym_abstract_modifier_token1] = ACTIONS(66), + [aux_sym_readonly_modifier_token1] = ACTIONS(69), + [aux_sym_visibility_modifier_token1] = ACTIONS(72), + [aux_sym_visibility_modifier_token2] = ACTIONS(72), + [aux_sym_visibility_modifier_token3] = ACTIONS(72), + [aux_sym__arrow_function_header_token1] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(78), + [aux_sym_cast_type_token1] = ACTIONS(81), + [aux_sym_echo_statement_token1] = ACTIONS(84), + [anon_sym_unset] = ACTIONS(87), + [aux_sym_declare_statement_token1] = ACTIONS(354), + [sym_float] = ACTIONS(93), + [aux_sym_try_statement_token1] = ACTIONS(96), + [aux_sym_goto_statement_token1] = ACTIONS(99), + [aux_sym_continue_statement_token1] = ACTIONS(102), + [aux_sym_break_statement_token1] = ACTIONS(105), + [sym_integer] = ACTIONS(93), + [aux_sym_return_statement_token1] = ACTIONS(108), + [aux_sym_throw_expression_token1] = ACTIONS(111), + [aux_sym_while_statement_token1] = ACTIONS(357), + [aux_sym_do_statement_token1] = ACTIONS(117), + [aux_sym_for_statement_token1] = ACTIONS(360), + [aux_sym_foreach_statement_token1] = ACTIONS(363), + [aux_sym_if_statement_token1] = ACTIONS(366), + [aux_sym_if_statement_token2] = ACTIONS(58), + [aux_sym_else_if_clause_token1] = ACTIONS(58), + [aux_sym_else_clause_token1] = ACTIONS(58), + [aux_sym_match_expression_token1] = ACTIONS(129), + [aux_sym_switch_statement_token1] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(138), + [anon_sym_BANG] = ACTIONS(138), + [anon_sym_AT] = ACTIONS(141), + [aux_sym_clone_expression_token1] = ACTIONS(144), + [aux_sym_print_intrinsic_token1] = ACTIONS(147), + [aux_sym_object_creation_expression_token1] = ACTIONS(150), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [aux_sym__list_destructing_token1] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_self] = ACTIONS(162), + [anon_sym_parent] = ACTIONS(162), + [aux_sym__argument_name_token1] = ACTIONS(165), + [aux_sym__argument_name_token2] = ACTIONS(168), + [anon_sym_POUND_LBRACK] = ACTIONS(171), + [anon_sym_SQUOTE] = ACTIONS(174), + [aux_sym_encapsed_string_token1] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(177), + [aux_sym_string_token1] = ACTIONS(174), + [anon_sym_LT_LT_LT] = ACTIONS(180), + [anon_sym_BQUOTE] = ACTIONS(183), + [anon_sym_DOLLAR] = ACTIONS(186), + [aux_sym_yield_expression_token1] = ACTIONS(189), + [aux_sym_include_expression_token1] = ACTIONS(192), + [aux_sym_include_once_expression_token1] = ACTIONS(195), + [aux_sym_require_expression_token1] = ACTIONS(198), + [aux_sym_require_once_expression_token1] = ACTIONS(201), [sym_comment] = ACTIONS(5), }, [10] = { @@ -14958,80 +14915,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_while_statement_token2] = ACTIONS(367), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_foreach_statement_token2] = ACTIONS(367), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_if_statement_token2] = ACTIONS(367), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_while_statement_token2] = ACTIONS(369), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_foreach_statement_token2] = ACTIONS(369), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_if_statement_token2] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [11] = { @@ -15132,80 +15089,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(9), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token2] = ACTIONS(367), - [aux_sym_else_if_clause_token1] = ACTIONS(367), - [aux_sym_else_clause_token1] = ACTIONS(367), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_if_statement_token2] = ACTIONS(369), + [aux_sym_else_if_clause_token1] = ACTIONS(369), + [aux_sym_else_clause_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [12] = { @@ -15306,80 +15263,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(369), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(371), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(373), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(371), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(373), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(375), }, [13] = { [sym_text_interpolation] = STATE(13), @@ -15479,80 +15436,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(369), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(371), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(373), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(371), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(373), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(375), }, [14] = { [sym_text_interpolation] = STATE(14), @@ -15652,80 +15609,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(377), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(371), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(403), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(415), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(421), - [aux_sym_if_statement_token1] = ACTIONS(423), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(427), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(379), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(373), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(405), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(417), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(421), + [aux_sym_foreach_statement_token1] = ACTIONS(423), + [aux_sym_if_statement_token1] = ACTIONS(425), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(429), }, [15] = { [sym_text_interpolation] = STATE(15), @@ -15825,80 +15782,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(377), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(371), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(429), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(431), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(433), - [aux_sym_foreach_statement_token1] = ACTIONS(435), - [aux_sym_if_statement_token1] = ACTIONS(437), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(427), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(379), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(373), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(431), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(433), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(437), + [aux_sym_if_statement_token1] = ACTIONS(439), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(429), }, [16] = { [sym_text_interpolation] = STATE(16), @@ -15997,80 +15954,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(439), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(441), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(443), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(443), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(445), }, [17] = { [sym_text_interpolation] = STATE(17), @@ -16170,78 +16127,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(371), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(373), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [18] = { @@ -16341,80 +16298,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(445), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(447), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(449), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(447), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(449), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(451), }, [19] = { [sym_text_interpolation] = STATE(19), @@ -16514,78 +16471,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(21), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(451), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(453), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [20] = { @@ -16686,78 +16643,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(451), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(453), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [21] = { @@ -16858,78 +16815,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(453), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(455), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [22] = { @@ -17030,78 +16987,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(455), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(457), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [23] = { @@ -17202,78 +17159,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(457), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(459), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [24] = { @@ -17374,78 +17331,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(22), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(453), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(455), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [25] = { @@ -17546,78 +17503,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(28), [aux_sym_attribute_list_repeat1] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(459), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [ts_builtin_sym_end] = ACTIONS(461), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [26] = { @@ -17718,78 +17675,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(66), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(461), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(463), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [27] = { @@ -17890,78 +17847,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(463), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [ts_builtin_sym_end] = ACTIONS(465), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [28] = { @@ -18062,78 +18019,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(465), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [ts_builtin_sym_end] = ACTIONS(467), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [29] = { @@ -18233,80 +18190,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(467), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(469), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(429), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(431), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(433), - [aux_sym_foreach_statement_token1] = ACTIONS(435), - [aux_sym_if_statement_token1] = ACTIONS(437), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(471), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(469), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(471), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(431), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(433), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(437), + [aux_sym_if_statement_token1] = ACTIONS(439), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(473), }, [30] = { [sym_text_interpolation] = STATE(30), @@ -18405,80 +18362,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(473), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(475), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(429), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(431), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(433), - [aux_sym_foreach_statement_token1] = ACTIONS(435), - [aux_sym_if_statement_token1] = ACTIONS(437), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(477), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(475), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(477), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(431), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(433), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(437), + [aux_sym_if_statement_token1] = ACTIONS(439), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(479), }, [31] = { [sym_text_interpolation] = STATE(31), @@ -18577,80 +18534,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(479), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(481), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(483), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(481), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(483), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(485), }, [32] = { [sym_text_interpolation] = STATE(32), @@ -18749,80 +18706,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(485), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(487), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(489), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(487), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(489), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(491), }, [33] = { [sym_text_interpolation] = STATE(33), @@ -18921,80 +18878,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(491), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(493), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(429), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(431), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(433), - [aux_sym_foreach_statement_token1] = ACTIONS(435), - [aux_sym_if_statement_token1] = ACTIONS(437), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(495), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(493), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(495), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(431), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(433), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(437), + [aux_sym_if_statement_token1] = ACTIONS(439), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(497), }, [34] = { [sym_text_interpolation] = STATE(34), @@ -19094,78 +19051,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(20), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(497), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(499), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [35] = { @@ -19266,78 +19223,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(499), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(501), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(403), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(415), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(421), - [aux_sym_if_statement_token1] = ACTIONS(423), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(503), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(405), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(417), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(421), + [aux_sym_foreach_statement_token1] = ACTIONS(423), + [aux_sym_if_statement_token1] = ACTIONS(425), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [36] = { @@ -19437,80 +19394,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(503), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(505), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(507), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(505), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(507), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(509), }, [37] = { [sym_text_interpolation] = STATE(37), @@ -19610,78 +19567,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(48), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(509), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(511), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [38] = { @@ -19782,78 +19739,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(497), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(499), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [39] = { @@ -19954,78 +19911,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [aux_sym_declare_statement_token2] = ACTIONS(511), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [aux_sym_declare_statement_token2] = ACTIONS(513), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [40] = { @@ -20126,78 +20083,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(39), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [aux_sym_declare_statement_token2] = ACTIONS(513), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [aux_sym_declare_statement_token2] = ACTIONS(515), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [41] = { @@ -20298,78 +20255,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(57), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(515), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(517), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [42] = { @@ -20470,78 +20427,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(46), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(517), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(519), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [43] = { @@ -20642,78 +20599,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(499), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(371), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(429), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(431), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(433), - [aux_sym_foreach_statement_token1] = ACTIONS(435), - [aux_sym_if_statement_token1] = ACTIONS(437), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(373), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(431), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(433), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(437), + [aux_sym_if_statement_token1] = ACTIONS(439), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [44] = { @@ -20814,78 +20771,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(499), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(501), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(403), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(415), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(421), - [aux_sym_if_statement_token1] = ACTIONS(423), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(503), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(405), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(417), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(421), + [aux_sym_foreach_statement_token1] = ACTIONS(423), + [aux_sym_if_statement_token1] = ACTIONS(425), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [45] = { @@ -20986,78 +20943,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(27), [aux_sym_attribute_list_repeat1] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(465), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [ts_builtin_sym_end] = ACTIONS(467), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [46] = { @@ -21158,78 +21115,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(519), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(521), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [47] = { @@ -21330,78 +21287,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(501), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(503), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [48] = { @@ -21502,78 +21459,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(521), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(523), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [49] = { @@ -21674,78 +21631,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(63), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(521), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(523), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [50] = { @@ -21846,78 +21803,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(523), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(525), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [51] = { @@ -22018,78 +21975,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(371), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(373), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [52] = { @@ -22190,78 +22147,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(50), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(525), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(527), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [53] = { @@ -22362,78 +22319,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(23), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(527), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(529), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [54] = { @@ -22533,80 +22490,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(473), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(475), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(403), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(415), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(421), - [aux_sym_if_statement_token1] = ACTIONS(423), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(477), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(475), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(477), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(405), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(417), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(421), + [aux_sym_foreach_statement_token1] = ACTIONS(423), + [aux_sym_if_statement_token1] = ACTIONS(425), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(479), }, [55] = { [sym_text_interpolation] = STATE(55), @@ -22706,78 +22663,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(501), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(503), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [56] = { @@ -22877,80 +22834,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(467), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(469), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(403), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(415), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(421), - [aux_sym_if_statement_token1] = ACTIONS(423), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(471), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(469), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(471), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(405), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(417), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(421), + [aux_sym_foreach_statement_token1] = ACTIONS(423), + [aux_sym_if_statement_token1] = ACTIONS(425), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(473), }, [57] = { [sym_text_interpolation] = STATE(57), @@ -23050,78 +23007,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(529), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(531), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [58] = { @@ -23221,80 +23178,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(485), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(487), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(489), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(487), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(489), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(491), }, [59] = { [sym_text_interpolation] = STATE(59), @@ -23393,80 +23350,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(479), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(481), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(483), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(481), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(483), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(485), }, [60] = { [sym_text_interpolation] = STATE(60), @@ -23566,78 +23523,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(38), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(531), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(533), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [61] = { @@ -23737,80 +23694,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(533), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(535), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(403), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(415), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(421), - [aux_sym_if_statement_token1] = ACTIONS(423), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(537), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(537), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(405), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(417), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(421), + [aux_sym_foreach_statement_token1] = ACTIONS(423), + [aux_sym_if_statement_token1] = ACTIONS(425), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(539), }, [62] = { [sym_text_interpolation] = STATE(62), @@ -23910,78 +23867,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [aux_sym_declare_statement_token2] = ACTIONS(539), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [aux_sym_declare_statement_token2] = ACTIONS(541), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [63] = { @@ -24082,78 +24039,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(541), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(543), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [64] = { @@ -24254,78 +24211,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(71), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(541), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(543), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [65] = { @@ -24425,80 +24382,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(543), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(545), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(429), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(431), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(433), - [aux_sym_foreach_statement_token1] = ACTIONS(435), - [aux_sym_if_statement_token1] = ACTIONS(437), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(547), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(547), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(431), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(433), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(437), + [aux_sym_if_statement_token1] = ACTIONS(439), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(549), }, [66] = { [sym_text_interpolation] = STATE(66), @@ -24598,78 +24555,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [anon_sym_RBRACE] = ACTIONS(549), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(551), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [67] = { @@ -24769,80 +24726,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(533), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(535), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(429), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(431), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(433), - [aux_sym_foreach_statement_token1] = ACTIONS(435), - [aux_sym_if_statement_token1] = ACTIONS(437), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(537), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(537), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(431), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(433), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(437), + [aux_sym_if_statement_token1] = ACTIONS(439), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(539), }, [68] = { [sym_text_interpolation] = STATE(68), @@ -24941,80 +24898,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(445), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(447), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(449), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(447), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(449), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(451), }, [69] = { [sym_text_interpolation] = STATE(69), @@ -25114,78 +25071,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(499), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(371), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(403), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(415), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(421), - [aux_sym_if_statement_token1] = ACTIONS(423), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(373), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(405), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(417), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(421), + [aux_sym_foreach_statement_token1] = ACTIONS(423), + [aux_sym_if_statement_token1] = ACTIONS(425), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [70] = { @@ -25285,80 +25242,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(491), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(493), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(403), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(415), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(421), - [aux_sym_if_statement_token1] = ACTIONS(423), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(495), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(493), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(495), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(405), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(417), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(421), + [aux_sym_foreach_statement_token1] = ACTIONS(423), + [aux_sym_if_statement_token1] = ACTIONS(425), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(497), }, [71] = { [sym_text_interpolation] = STATE(71), @@ -25458,78 +25415,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(551), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(553), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [72] = { @@ -25630,78 +25587,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(2), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(553), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(555), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [73] = { @@ -25801,80 +25758,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(543), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(545), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(403), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(415), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(421), - [aux_sym_if_statement_token1] = ACTIONS(423), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(547), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(547), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(405), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(417), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(421), + [aux_sym_foreach_statement_token1] = ACTIONS(423), + [aux_sym_if_statement_token1] = ACTIONS(425), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(549), }, [74] = { [sym_text_interpolation] = STATE(74), @@ -25974,78 +25931,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(72), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_for_statement_token2] = ACTIONS(551), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_for_statement_token2] = ACTIONS(553), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [75] = { @@ -26146,78 +26103,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1599), [aux_sym_program_repeat1] = STATE(62), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [aux_sym_declare_statement_token2] = ACTIONS(555), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [aux_sym_declare_statement_token2] = ACTIONS(557), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [76] = { @@ -26317,80 +26274,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(503), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(505), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(507), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(505), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(507), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(509), }, [77] = { [sym_text_interpolation] = STATE(77), @@ -26489,80 +26446,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(439), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [anon_sym_COLON] = ACTIONS(441), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(443), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(441), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(443), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(445), }, [78] = { [sym_text_interpolation] = STATE(78), @@ -26661,77 +26618,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [79] = { @@ -26831,77 +26788,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(252), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(268), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(272), - [aux_sym_foreach_statement_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(254), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(270), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(274), + [aux_sym_foreach_statement_token1] = ACTIONS(276), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [80] = { @@ -27001,77 +26958,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(204), - [aux_sym_function_static_declaration_token1] = ACTIONS(206), - [aux_sym_global_declaration_token1] = ACTIONS(208), - [aux_sym_namespace_definition_token1] = ACTIONS(210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(216), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(220), - [aux_sym_trait_declaration_token1] = ACTIONS(224), - [aux_sym_interface_declaration_token1] = ACTIONS(226), - [aux_sym_enum_declaration_token1] = ACTIONS(228), - [aux_sym_class_declaration_token1] = ACTIONS(232), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(248), - [anon_sym_unset] = ACTIONS(250), - [aux_sym_declare_statement_token1] = ACTIONS(340), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(256), - [aux_sym_goto_statement_token1] = ACTIONS(258), - [aux_sym_continue_statement_token1] = ACTIONS(260), - [aux_sym_break_statement_token1] = ACTIONS(262), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(270), - [aux_sym_for_statement_token1] = ACTIONS(344), - [aux_sym_foreach_statement_token1] = ACTIONS(346), - [aux_sym_if_statement_token1] = ACTIONS(348), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(280), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(204), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(206), + [aux_sym_function_static_declaration_token1] = ACTIONS(208), + [aux_sym_global_declaration_token1] = ACTIONS(210), + [aux_sym_namespace_definition_token1] = ACTIONS(212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(218), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(222), + [aux_sym_trait_declaration_token1] = ACTIONS(226), + [aux_sym_interface_declaration_token1] = ACTIONS(228), + [aux_sym_enum_declaration_token1] = ACTIONS(230), + [aux_sym_class_declaration_token1] = ACTIONS(234), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(250), + [anon_sym_unset] = ACTIONS(252), + [aux_sym_declare_statement_token1] = ACTIONS(342), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(258), + [aux_sym_goto_statement_token1] = ACTIONS(260), + [aux_sym_continue_statement_token1] = ACTIONS(262), + [aux_sym_break_statement_token1] = ACTIONS(264), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(266), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(344), + [aux_sym_do_statement_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(346), + [aux_sym_foreach_statement_token1] = ACTIONS(348), + [aux_sym_if_statement_token1] = ACTIONS(350), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [81] = { @@ -27171,77 +27128,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(499), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(429), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(431), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(433), - [aux_sym_foreach_statement_token1] = ACTIONS(435), - [aux_sym_if_statement_token1] = ACTIONS(437), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(431), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(433), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(437), + [aux_sym_if_statement_token1] = ACTIONS(439), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [82] = { @@ -27341,77 +27298,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(499), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(429), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(431), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(433), - [aux_sym_foreach_statement_token1] = ACTIONS(435), - [aux_sym_if_statement_token1] = ACTIONS(437), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(431), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(433), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(437), + [aux_sym_if_statement_token1] = ACTIONS(439), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [83] = { @@ -27511,77 +27468,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(499), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(429), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(431), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(433), - [aux_sym_foreach_statement_token1] = ACTIONS(435), - [aux_sym_if_statement_token1] = ACTIONS(437), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(431), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(433), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(437), + [aux_sym_if_statement_token1] = ACTIONS(439), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [84] = { @@ -27681,77 +27638,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(499), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(403), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(415), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(421), - [aux_sym_if_statement_token1] = ACTIONS(423), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(405), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(417), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(421), + [aux_sym_foreach_statement_token1] = ACTIONS(423), + [aux_sym_if_statement_token1] = ACTIONS(425), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [85] = { @@ -27851,77 +27808,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(375), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(499), - [aux_sym_function_static_declaration_token1] = ACTIONS(379), - [aux_sym_global_declaration_token1] = ACTIONS(381), - [aux_sym_namespace_definition_token1] = ACTIONS(383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(385), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(387), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_LBRACE] = ACTIONS(389), - [aux_sym_trait_declaration_token1] = ACTIONS(391), - [aux_sym_interface_declaration_token1] = ACTIONS(393), - [aux_sym_enum_declaration_token1] = ACTIONS(395), - [aux_sym_class_declaration_token1] = ACTIONS(397), - [aux_sym_final_modifier_token1] = ACTIONS(234), - [aux_sym_abstract_modifier_token1] = ACTIONS(236), - [aux_sym_readonly_modifier_token1] = ACTIONS(238), - [aux_sym_visibility_modifier_token1] = ACTIONS(240), - [aux_sym_visibility_modifier_token2] = ACTIONS(240), - [aux_sym_visibility_modifier_token3] = ACTIONS(240), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [aux_sym_echo_statement_token1] = ACTIONS(399), - [anon_sym_unset] = ACTIONS(401), - [aux_sym_declare_statement_token1] = ACTIONS(403), - [sym_float] = ACTIONS(254), - [aux_sym_try_statement_token1] = ACTIONS(405), - [aux_sym_goto_statement_token1] = ACTIONS(407), - [aux_sym_continue_statement_token1] = ACTIONS(409), - [aux_sym_break_statement_token1] = ACTIONS(411), - [sym_integer] = ACTIONS(254), - [aux_sym_return_statement_token1] = ACTIONS(413), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_while_statement_token1] = ACTIONS(415), - [aux_sym_do_statement_token1] = ACTIONS(417), - [aux_sym_for_statement_token1] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(421), - [aux_sym_if_statement_token1] = ACTIONS(423), - [aux_sym_match_expression_token1] = ACTIONS(278), - [aux_sym_switch_statement_token1] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(377), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(381), + [aux_sym_global_declaration_token1] = ACTIONS(383), + [aux_sym_namespace_definition_token1] = ACTIONS(385), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(391), + [aux_sym_trait_declaration_token1] = ACTIONS(393), + [aux_sym_interface_declaration_token1] = ACTIONS(395), + [aux_sym_enum_declaration_token1] = ACTIONS(397), + [aux_sym_class_declaration_token1] = ACTIONS(399), + [aux_sym_final_modifier_token1] = ACTIONS(236), + [aux_sym_abstract_modifier_token1] = ACTIONS(238), + [aux_sym_readonly_modifier_token1] = ACTIONS(240), + [aux_sym_visibility_modifier_token1] = ACTIONS(242), + [aux_sym_visibility_modifier_token2] = ACTIONS(242), + [aux_sym_visibility_modifier_token3] = ACTIONS(242), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [aux_sym_echo_statement_token1] = ACTIONS(401), + [anon_sym_unset] = ACTIONS(403), + [aux_sym_declare_statement_token1] = ACTIONS(405), + [sym_float] = ACTIONS(256), + [aux_sym_try_statement_token1] = ACTIONS(407), + [aux_sym_goto_statement_token1] = ACTIONS(409), + [aux_sym_continue_statement_token1] = ACTIONS(411), + [aux_sym_break_statement_token1] = ACTIONS(413), + [sym_integer] = ACTIONS(256), + [aux_sym_return_statement_token1] = ACTIONS(415), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_while_statement_token1] = ACTIONS(417), + [aux_sym_do_statement_token1] = ACTIONS(419), + [aux_sym_for_statement_token1] = ACTIONS(421), + [aux_sym_foreach_statement_token1] = ACTIONS(423), + [aux_sym_if_statement_token1] = ACTIONS(425), + [aux_sym_match_expression_token1] = ACTIONS(280), + [aux_sym_switch_statement_token1] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [86] = { @@ -27990,84 +27947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym_AMP] = ACTIONS(561), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(569), - [anon_sym_RBRACE] = ACTIONS(559), - [anon_sym_COLON] = ACTIONS(559), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_EQ_GT] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(559), - [anon_sym_DOT_DOT_DOT] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(569), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(583), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_yield_expression_token2] = ACTIONS(615), - [aux_sym_binary_expression_token1] = ACTIONS(569), - [anon_sym_QMARK_QMARK] = ACTIONS(559), - [anon_sym_STAR_STAR] = ACTIONS(559), - [aux_sym_binary_expression_token2] = ACTIONS(569), - [aux_sym_binary_expression_token3] = ACTIONS(569), - [aux_sym_binary_expression_token4] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_CARET] = ACTIONS(559), - [anon_sym_EQ_EQ] = ACTIONS(569), - [anon_sym_BANG_EQ] = ACTIONS(569), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(569), - [anon_sym_GT] = ACTIONS(569), - [anon_sym_LT_EQ] = ACTIONS(569), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LT_EQ_GT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(569), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(559), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_COLON] = ACTIONS(561), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_EQ_GT] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_yield_expression_token2] = ACTIONS(617), + [aux_sym_binary_expression_token1] = ACTIONS(571), + [anon_sym_QMARK_QMARK] = ACTIONS(561), + [anon_sym_STAR_STAR] = ACTIONS(561), + [aux_sym_binary_expression_token2] = ACTIONS(571), + [aux_sym_binary_expression_token3] = ACTIONS(571), + [aux_sym_binary_expression_token4] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_LT_GT] = ACTIONS(561), + [anon_sym_EQ_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_LT_EQ_GT] = ACTIONS(561), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(561), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [87] = { @@ -28136,83 +28093,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym_AMP] = ACTIONS(561), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(559), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(559), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_EQ_GT] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(569), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(559), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_yield_expression_token2] = ACTIONS(645), - [aux_sym_binary_expression_token1] = ACTIONS(569), - [anon_sym_QMARK_QMARK] = ACTIONS(559), - [anon_sym_STAR_STAR] = ACTIONS(559), - [aux_sym_binary_expression_token2] = ACTIONS(569), - [aux_sym_binary_expression_token3] = ACTIONS(569), - [aux_sym_binary_expression_token4] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_CARET] = ACTIONS(559), - [anon_sym_EQ_EQ] = ACTIONS(569), - [anon_sym_BANG_EQ] = ACTIONS(569), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(569), - [anon_sym_GT] = ACTIONS(569), - [anon_sym_LT_EQ] = ACTIONS(569), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LT_EQ_GT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(569), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(559), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(561), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_RBRACE] = ACTIONS(561), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_EQ_GT] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(633), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_yield_expression_token2] = ACTIONS(647), + [aux_sym_binary_expression_token1] = ACTIONS(571), + [anon_sym_QMARK_QMARK] = ACTIONS(561), + [anon_sym_STAR_STAR] = ACTIONS(561), + [aux_sym_binary_expression_token2] = ACTIONS(571), + [aux_sym_binary_expression_token3] = ACTIONS(571), + [aux_sym_binary_expression_token4] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_LT_GT] = ACTIONS(561), + [anon_sym_EQ_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_LT_EQ_GT] = ACTIONS(561), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(561), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [88] = { @@ -28281,83 +28238,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym_AMP] = ACTIONS(657), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [anon_sym_COMMA] = ACTIONS(559), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_EQ_GT] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(663), - [anon_sym_QMARK] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(569), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_yield_expression_token2] = ACTIONS(665), - [aux_sym_binary_expression_token1] = ACTIONS(569), - [anon_sym_QMARK_QMARK] = ACTIONS(559), - [anon_sym_STAR_STAR] = ACTIONS(559), - [aux_sym_binary_expression_token2] = ACTIONS(569), - [aux_sym_binary_expression_token3] = ACTIONS(569), - [aux_sym_binary_expression_token4] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_CARET] = ACTIONS(559), - [anon_sym_EQ_EQ] = ACTIONS(569), - [anon_sym_BANG_EQ] = ACTIONS(569), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(569), - [anon_sym_GT] = ACTIONS(569), - [anon_sym_LT_EQ] = ACTIONS(569), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LT_EQ_GT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(569), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(559), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(559), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(659), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [anon_sym_COMMA] = ACTIONS(561), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_EQ_GT] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_yield_expression_token2] = ACTIONS(667), + [aux_sym_binary_expression_token1] = ACTIONS(571), + [anon_sym_QMARK_QMARK] = ACTIONS(561), + [anon_sym_STAR_STAR] = ACTIONS(561), + [aux_sym_binary_expression_token2] = ACTIONS(571), + [aux_sym_binary_expression_token3] = ACTIONS(571), + [aux_sym_binary_expression_token4] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_LT_GT] = ACTIONS(561), + [anon_sym_EQ_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_LT_EQ_GT] = ACTIONS(561), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(561), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(561), }, [89] = { [sym_text_interpolation] = STATE(89), @@ -28425,81 +28382,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(561), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(559), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_EQ_GT] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(559), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [anon_sym_QMARK] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(569), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_yield_expression_token2] = ACTIONS(687), - [aux_sym_binary_expression_token1] = ACTIONS(569), - [anon_sym_QMARK_QMARK] = ACTIONS(559), - [anon_sym_STAR_STAR] = ACTIONS(559), - [aux_sym_binary_expression_token2] = ACTIONS(569), - [aux_sym_binary_expression_token3] = ACTIONS(569), - [aux_sym_binary_expression_token4] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_CARET] = ACTIONS(559), - [anon_sym_EQ_EQ] = ACTIONS(569), - [anon_sym_BANG_EQ] = ACTIONS(569), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(569), - [anon_sym_GT] = ACTIONS(569), - [anon_sym_LT_EQ] = ACTIONS(569), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LT_EQ_GT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(569), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(559), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(563), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(561), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_EQ_GT] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(675), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_yield_expression_token2] = ACTIONS(689), + [aux_sym_binary_expression_token1] = ACTIONS(571), + [anon_sym_QMARK_QMARK] = ACTIONS(561), + [anon_sym_STAR_STAR] = ACTIONS(561), + [aux_sym_binary_expression_token2] = ACTIONS(571), + [aux_sym_binary_expression_token3] = ACTIONS(571), + [aux_sym_binary_expression_token4] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_LT_GT] = ACTIONS(561), + [anon_sym_EQ_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ_EQ] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_LT_EQ_GT] = ACTIONS(561), + [anon_sym_LT_LT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(561), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [90] = { @@ -28566,59 +28523,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(697), - [aux_sym_cast_type_token2] = ACTIONS(699), - [aux_sym_cast_type_token3] = ACTIONS(699), - [aux_sym_cast_type_token4] = ACTIONS(699), - [aux_sym_cast_type_token5] = ACTIONS(699), - [aux_sym_cast_type_token6] = ACTIONS(699), - [aux_sym_cast_type_token7] = ACTIONS(699), - [aux_sym_cast_type_token8] = ACTIONS(699), - [aux_sym_cast_type_token9] = ACTIONS(699), - [aux_sym_cast_type_token10] = ACTIONS(699), - [aux_sym_cast_type_token11] = ACTIONS(699), - [aux_sym_cast_type_token12] = ACTIONS(699), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(699), + [aux_sym_cast_type_token2] = ACTIONS(701), + [aux_sym_cast_type_token3] = ACTIONS(701), + [aux_sym_cast_type_token4] = ACTIONS(701), + [aux_sym_cast_type_token5] = ACTIONS(701), + [aux_sym_cast_type_token6] = ACTIONS(701), + [aux_sym_cast_type_token7] = ACTIONS(701), + [aux_sym_cast_type_token8] = ACTIONS(701), + [aux_sym_cast_type_token9] = ACTIONS(701), + [aux_sym_cast_type_token10] = ACTIONS(701), + [aux_sym_cast_type_token11] = ACTIONS(701), + [aux_sym_cast_type_token12] = ACTIONS(701), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [91] = { @@ -28685,59 +28642,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(697), - [aux_sym_cast_type_token2] = ACTIONS(699), - [aux_sym_cast_type_token3] = ACTIONS(699), - [aux_sym_cast_type_token4] = ACTIONS(699), - [aux_sym_cast_type_token5] = ACTIONS(699), - [aux_sym_cast_type_token6] = ACTIONS(699), - [aux_sym_cast_type_token7] = ACTIONS(699), - [aux_sym_cast_type_token8] = ACTIONS(699), - [aux_sym_cast_type_token9] = ACTIONS(699), - [aux_sym_cast_type_token10] = ACTIONS(699), - [aux_sym_cast_type_token11] = ACTIONS(699), - [aux_sym_cast_type_token12] = ACTIONS(699), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(699), + [aux_sym_cast_type_token2] = ACTIONS(701), + [aux_sym_cast_type_token3] = ACTIONS(701), + [aux_sym_cast_type_token4] = ACTIONS(701), + [aux_sym_cast_type_token5] = ACTIONS(701), + [aux_sym_cast_type_token6] = ACTIONS(701), + [aux_sym_cast_type_token7] = ACTIONS(701), + [aux_sym_cast_type_token8] = ACTIONS(701), + [aux_sym_cast_type_token9] = ACTIONS(701), + [aux_sym_cast_type_token10] = ACTIONS(701), + [aux_sym_cast_type_token11] = ACTIONS(701), + [aux_sym_cast_type_token12] = ACTIONS(701), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [92] = { @@ -28804,59 +28761,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(697), - [aux_sym_cast_type_token2] = ACTIONS(699), - [aux_sym_cast_type_token3] = ACTIONS(699), - [aux_sym_cast_type_token4] = ACTIONS(699), - [aux_sym_cast_type_token5] = ACTIONS(699), - [aux_sym_cast_type_token6] = ACTIONS(699), - [aux_sym_cast_type_token7] = ACTIONS(699), - [aux_sym_cast_type_token8] = ACTIONS(699), - [aux_sym_cast_type_token9] = ACTIONS(699), - [aux_sym_cast_type_token10] = ACTIONS(699), - [aux_sym_cast_type_token11] = ACTIONS(699), - [aux_sym_cast_type_token12] = ACTIONS(699), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(699), + [aux_sym_cast_type_token2] = ACTIONS(701), + [aux_sym_cast_type_token3] = ACTIONS(701), + [aux_sym_cast_type_token4] = ACTIONS(701), + [aux_sym_cast_type_token5] = ACTIONS(701), + [aux_sym_cast_type_token6] = ACTIONS(701), + [aux_sym_cast_type_token7] = ACTIONS(701), + [aux_sym_cast_type_token8] = ACTIONS(701), + [aux_sym_cast_type_token9] = ACTIONS(701), + [aux_sym_cast_type_token10] = ACTIONS(701), + [aux_sym_cast_type_token11] = ACTIONS(701), + [aux_sym_cast_type_token12] = ACTIONS(701), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [93] = { @@ -28923,59 +28880,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(697), - [aux_sym_cast_type_token2] = ACTIONS(699), - [aux_sym_cast_type_token3] = ACTIONS(699), - [aux_sym_cast_type_token4] = ACTIONS(699), - [aux_sym_cast_type_token5] = ACTIONS(699), - [aux_sym_cast_type_token6] = ACTIONS(699), - [aux_sym_cast_type_token7] = ACTIONS(699), - [aux_sym_cast_type_token8] = ACTIONS(699), - [aux_sym_cast_type_token9] = ACTIONS(699), - [aux_sym_cast_type_token10] = ACTIONS(699), - [aux_sym_cast_type_token11] = ACTIONS(699), - [aux_sym_cast_type_token12] = ACTIONS(699), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(699), + [aux_sym_cast_type_token2] = ACTIONS(701), + [aux_sym_cast_type_token3] = ACTIONS(701), + [aux_sym_cast_type_token4] = ACTIONS(701), + [aux_sym_cast_type_token5] = ACTIONS(701), + [aux_sym_cast_type_token6] = ACTIONS(701), + [aux_sym_cast_type_token7] = ACTIONS(701), + [aux_sym_cast_type_token8] = ACTIONS(701), + [aux_sym_cast_type_token9] = ACTIONS(701), + [aux_sym_cast_type_token10] = ACTIONS(701), + [aux_sym_cast_type_token11] = ACTIONS(701), + [aux_sym_cast_type_token12] = ACTIONS(701), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [94] = { @@ -29042,59 +28999,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(697), - [aux_sym_cast_type_token2] = ACTIONS(699), - [aux_sym_cast_type_token3] = ACTIONS(699), - [aux_sym_cast_type_token4] = ACTIONS(699), - [aux_sym_cast_type_token5] = ACTIONS(699), - [aux_sym_cast_type_token6] = ACTIONS(699), - [aux_sym_cast_type_token7] = ACTIONS(699), - [aux_sym_cast_type_token8] = ACTIONS(699), - [aux_sym_cast_type_token9] = ACTIONS(699), - [aux_sym_cast_type_token10] = ACTIONS(699), - [aux_sym_cast_type_token11] = ACTIONS(699), - [aux_sym_cast_type_token12] = ACTIONS(699), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(699), + [aux_sym_cast_type_token2] = ACTIONS(701), + [aux_sym_cast_type_token3] = ACTIONS(701), + [aux_sym_cast_type_token4] = ACTIONS(701), + [aux_sym_cast_type_token5] = ACTIONS(701), + [aux_sym_cast_type_token6] = ACTIONS(701), + [aux_sym_cast_type_token7] = ACTIONS(701), + [aux_sym_cast_type_token8] = ACTIONS(701), + [aux_sym_cast_type_token9] = ACTIONS(701), + [aux_sym_cast_type_token10] = ACTIONS(701), + [aux_sym_cast_type_token11] = ACTIONS(701), + [aux_sym_cast_type_token12] = ACTIONS(701), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [95] = { @@ -29161,59 +29118,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(697), - [aux_sym_cast_type_token2] = ACTIONS(699), - [aux_sym_cast_type_token3] = ACTIONS(699), - [aux_sym_cast_type_token4] = ACTIONS(699), - [aux_sym_cast_type_token5] = ACTIONS(699), - [aux_sym_cast_type_token6] = ACTIONS(699), - [aux_sym_cast_type_token7] = ACTIONS(699), - [aux_sym_cast_type_token8] = ACTIONS(699), - [aux_sym_cast_type_token9] = ACTIONS(699), - [aux_sym_cast_type_token10] = ACTIONS(699), - [aux_sym_cast_type_token11] = ACTIONS(699), - [aux_sym_cast_type_token12] = ACTIONS(699), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(699), + [aux_sym_cast_type_token2] = ACTIONS(701), + [aux_sym_cast_type_token3] = ACTIONS(701), + [aux_sym_cast_type_token4] = ACTIONS(701), + [aux_sym_cast_type_token5] = ACTIONS(701), + [aux_sym_cast_type_token6] = ACTIONS(701), + [aux_sym_cast_type_token7] = ACTIONS(701), + [aux_sym_cast_type_token8] = ACTIONS(701), + [aux_sym_cast_type_token9] = ACTIONS(701), + [aux_sym_cast_type_token10] = ACTIONS(701), + [aux_sym_cast_type_token11] = ACTIONS(701), + [aux_sym_cast_type_token12] = ACTIONS(701), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [96] = { @@ -29280,59 +29237,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(697), - [aux_sym_cast_type_token2] = ACTIONS(699), - [aux_sym_cast_type_token3] = ACTIONS(699), - [aux_sym_cast_type_token4] = ACTIONS(699), - [aux_sym_cast_type_token5] = ACTIONS(699), - [aux_sym_cast_type_token6] = ACTIONS(699), - [aux_sym_cast_type_token7] = ACTIONS(699), - [aux_sym_cast_type_token8] = ACTIONS(699), - [aux_sym_cast_type_token9] = ACTIONS(699), - [aux_sym_cast_type_token10] = ACTIONS(699), - [aux_sym_cast_type_token11] = ACTIONS(699), - [aux_sym_cast_type_token12] = ACTIONS(699), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(699), + [aux_sym_cast_type_token2] = ACTIONS(701), + [aux_sym_cast_type_token3] = ACTIONS(701), + [aux_sym_cast_type_token4] = ACTIONS(701), + [aux_sym_cast_type_token5] = ACTIONS(701), + [aux_sym_cast_type_token6] = ACTIONS(701), + [aux_sym_cast_type_token7] = ACTIONS(701), + [aux_sym_cast_type_token8] = ACTIONS(701), + [aux_sym_cast_type_token9] = ACTIONS(701), + [aux_sym_cast_type_token10] = ACTIONS(701), + [aux_sym_cast_type_token11] = ACTIONS(701), + [aux_sym_cast_type_token12] = ACTIONS(701), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [97] = { @@ -29399,59 +29356,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(697), - [aux_sym_cast_type_token2] = ACTIONS(699), - [aux_sym_cast_type_token3] = ACTIONS(699), - [aux_sym_cast_type_token4] = ACTIONS(699), - [aux_sym_cast_type_token5] = ACTIONS(699), - [aux_sym_cast_type_token6] = ACTIONS(699), - [aux_sym_cast_type_token7] = ACTIONS(699), - [aux_sym_cast_type_token8] = ACTIONS(699), - [aux_sym_cast_type_token9] = ACTIONS(699), - [aux_sym_cast_type_token10] = ACTIONS(699), - [aux_sym_cast_type_token11] = ACTIONS(699), - [aux_sym_cast_type_token12] = ACTIONS(699), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(699), + [aux_sym_cast_type_token2] = ACTIONS(701), + [aux_sym_cast_type_token3] = ACTIONS(701), + [aux_sym_cast_type_token4] = ACTIONS(701), + [aux_sym_cast_type_token5] = ACTIONS(701), + [aux_sym_cast_type_token6] = ACTIONS(701), + [aux_sym_cast_type_token7] = ACTIONS(701), + [aux_sym_cast_type_token8] = ACTIONS(701), + [aux_sym_cast_type_token9] = ACTIONS(701), + [aux_sym_cast_type_token10] = ACTIONS(701), + [aux_sym_cast_type_token11] = ACTIONS(701), + [aux_sym_cast_type_token12] = ACTIONS(701), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [98] = { @@ -29518,59 +29475,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(697), - [aux_sym_cast_type_token2] = ACTIONS(699), - [aux_sym_cast_type_token3] = ACTIONS(699), - [aux_sym_cast_type_token4] = ACTIONS(699), - [aux_sym_cast_type_token5] = ACTIONS(699), - [aux_sym_cast_type_token6] = ACTIONS(699), - [aux_sym_cast_type_token7] = ACTIONS(699), - [aux_sym_cast_type_token8] = ACTIONS(699), - [aux_sym_cast_type_token9] = ACTIONS(699), - [aux_sym_cast_type_token10] = ACTIONS(699), - [aux_sym_cast_type_token11] = ACTIONS(699), - [aux_sym_cast_type_token12] = ACTIONS(699), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(699), + [aux_sym_cast_type_token2] = ACTIONS(701), + [aux_sym_cast_type_token3] = ACTIONS(701), + [aux_sym_cast_type_token4] = ACTIONS(701), + [aux_sym_cast_type_token5] = ACTIONS(701), + [aux_sym_cast_type_token6] = ACTIONS(701), + [aux_sym_cast_type_token7] = ACTIONS(701), + [aux_sym_cast_type_token8] = ACTIONS(701), + [aux_sym_cast_type_token9] = ACTIONS(701), + [aux_sym_cast_type_token10] = ACTIONS(701), + [aux_sym_cast_type_token11] = ACTIONS(701), + [aux_sym_cast_type_token12] = ACTIONS(701), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [99] = { @@ -29637,59 +29594,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(697), - [aux_sym_cast_type_token2] = ACTIONS(699), - [aux_sym_cast_type_token3] = ACTIONS(699), - [aux_sym_cast_type_token4] = ACTIONS(699), - [aux_sym_cast_type_token5] = ACTIONS(699), - [aux_sym_cast_type_token6] = ACTIONS(699), - [aux_sym_cast_type_token7] = ACTIONS(699), - [aux_sym_cast_type_token8] = ACTIONS(699), - [aux_sym_cast_type_token9] = ACTIONS(699), - [aux_sym_cast_type_token10] = ACTIONS(699), - [aux_sym_cast_type_token11] = ACTIONS(699), - [aux_sym_cast_type_token12] = ACTIONS(699), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(699), + [aux_sym_cast_type_token2] = ACTIONS(701), + [aux_sym_cast_type_token3] = ACTIONS(701), + [aux_sym_cast_type_token4] = ACTIONS(701), + [aux_sym_cast_type_token5] = ACTIONS(701), + [aux_sym_cast_type_token6] = ACTIONS(701), + [aux_sym_cast_type_token7] = ACTIONS(701), + [aux_sym_cast_type_token8] = ACTIONS(701), + [aux_sym_cast_type_token9] = ACTIONS(701), + [aux_sym_cast_type_token10] = ACTIONS(701), + [aux_sym_cast_type_token11] = ACTIONS(701), + [aux_sym_cast_type_token12] = ACTIONS(701), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [100] = { @@ -29756,59 +29713,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(697), - [aux_sym_cast_type_token2] = ACTIONS(699), - [aux_sym_cast_type_token3] = ACTIONS(699), - [aux_sym_cast_type_token4] = ACTIONS(699), - [aux_sym_cast_type_token5] = ACTIONS(699), - [aux_sym_cast_type_token6] = ACTIONS(699), - [aux_sym_cast_type_token7] = ACTIONS(699), - [aux_sym_cast_type_token8] = ACTIONS(699), - [aux_sym_cast_type_token9] = ACTIONS(699), - [aux_sym_cast_type_token10] = ACTIONS(699), - [aux_sym_cast_type_token11] = ACTIONS(699), - [aux_sym_cast_type_token12] = ACTIONS(699), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(699), + [aux_sym_cast_type_token2] = ACTIONS(701), + [aux_sym_cast_type_token3] = ACTIONS(701), + [aux_sym_cast_type_token4] = ACTIONS(701), + [aux_sym_cast_type_token5] = ACTIONS(701), + [aux_sym_cast_type_token6] = ACTIONS(701), + [aux_sym_cast_type_token7] = ACTIONS(701), + [aux_sym_cast_type_token8] = ACTIONS(701), + [aux_sym_cast_type_token9] = ACTIONS(701), + [aux_sym_cast_type_token10] = ACTIONS(701), + [aux_sym_cast_type_token11] = ACTIONS(701), + [aux_sym_cast_type_token12] = ACTIONS(701), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [101] = { @@ -29879,52 +29836,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1590), [aux_sym__array_destructing_repeat1] = STATE(2027), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(703), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_RBRACK] = ACTIONS(705), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(705), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(707), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [102] = { @@ -29995,52 +29952,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1590), [aux_sym__array_destructing_repeat1] = STATE(2027), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(703), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_RBRACK] = ACTIONS(707), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(705), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(709), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [103] = { @@ -30111,52 +30068,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1590), [aux_sym__array_destructing_repeat1] = STATE(2027), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(703), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_RBRACK] = ACTIONS(709), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(705), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(711), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [104] = { @@ -30227,52 +30184,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(717), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [anon_sym_COMMA] = ACTIONS(719), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(729), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [105] = { @@ -30343,52 +30300,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1590), [aux_sym__array_destructing_repeat1] = STATE(2027), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(739), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_RBRACK] = ACTIONS(741), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(741), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(743), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [106] = { @@ -30459,52 +30416,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1590), [aux_sym__array_destructing_repeat1] = STATE(2027), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(703), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(705), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(745), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [107] = { @@ -30575,52 +30532,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(745), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [anon_sym_COMMA] = ACTIONS(747), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(729), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [108] = { @@ -30691,52 +30648,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(749), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [anon_sym_COMMA] = ACTIONS(751), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(729), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [109] = { @@ -30807,52 +30764,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(753), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [anon_sym_COMMA] = ACTIONS(755), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(729), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [110] = { @@ -30923,52 +30880,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(757), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [anon_sym_COMMA] = ACTIONS(759), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(729), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [111] = { @@ -31039,52 +30996,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(761), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [anon_sym_COMMA] = ACTIONS(763), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(729), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [112] = { @@ -31155,52 +31112,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(765), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [anon_sym_COMMA] = ACTIONS(767), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(729), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [113] = { @@ -31271,52 +31228,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(769), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(727), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [anon_sym_COMMA] = ACTIONS(771), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(729), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [114] = { @@ -31385,52 +31342,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(773), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(775), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(775), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(777), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [115] = { @@ -31500,51 +31457,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [116] = { @@ -31614,51 +31571,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [117] = { @@ -31728,51 +31685,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [118] = { @@ -31842,51 +31799,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(783), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [119] = { @@ -31956,51 +31913,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [120] = { @@ -32070,51 +32027,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [121] = { @@ -32183,52 +32140,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(789), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(791), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [122] = { @@ -32298,51 +32255,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [123] = { @@ -32412,51 +32369,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(795), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [124] = { @@ -32526,51 +32483,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [125] = { @@ -32640,51 +32597,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [126] = { @@ -32754,51 +32711,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [127] = { @@ -32868,51 +32825,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [128] = { @@ -32982,51 +32939,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [129] = { @@ -33095,52 +33052,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(807), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(809), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [130] = { @@ -33210,51 +33167,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [131] = { @@ -33323,52 +33280,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(813), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(815), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(815), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(817), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [132] = { @@ -33438,51 +33395,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [133] = { @@ -33552,51 +33509,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(819), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [134] = { @@ -33665,51 +33622,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [135] = { @@ -33778,51 +33735,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [136] = { @@ -33891,51 +33848,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(825), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(827), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [aux_sym_match_default_expression_token1] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(827), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_RBRACE] = ACTIONS(829), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [aux_sym_match_default_expression_token1] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [137] = { @@ -34004,51 +33961,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(831), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(833), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [138] = { @@ -34117,51 +34074,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [139] = { @@ -34230,51 +34187,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(835), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(837), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [140] = { @@ -34343,51 +34300,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [141] = { @@ -34456,51 +34413,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(839), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(841), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [142] = { @@ -34569,51 +34526,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(841), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(843), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [aux_sym_match_default_expression_token1] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(843), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_RBRACE] = ACTIONS(845), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [aux_sym_match_default_expression_token1] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [143] = { @@ -34683,50 +34640,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1495), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(711), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(719), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(721), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(729), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(733), - [anon_sym_parent] = ACTIONS(733), - [aux_sym__argument_name_token1] = ACTIONS(735), - [aux_sym__argument_name_token2] = ACTIONS(737), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(713), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(717), + [aux_sym_namespace_definition_token1] = ACTIONS(721), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(731), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(735), + [anon_sym_parent] = ACTIONS(735), + [aux_sym__argument_name_token1] = ACTIONS(737), + [aux_sym__argument_name_token2] = ACTIONS(739), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [144] = { @@ -34795,51 +34752,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(845), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [145] = { @@ -34908,50 +34865,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(847), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [aux_sym_match_default_expression_token1] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_RBRACE] = ACTIONS(849), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [aux_sym_match_default_expression_token1] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [146] = { @@ -35019,51 +34976,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(849), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(851), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(851), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(853), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_RBRACK] = ACTIONS(857), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [147] = { @@ -35132,50 +35089,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(858), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [aux_sym_match_default_expression_token1] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_RBRACE] = ACTIONS(860), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [aux_sym_match_default_expression_token1] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [148] = { @@ -35243,51 +35200,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(849), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(851), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(849), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(851), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(853), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_RBRACK] = ACTIONS(851), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [149] = { @@ -35356,50 +35313,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [150] = { @@ -35468,50 +35425,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(860), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [aux_sym_match_default_expression_token1] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_RBRACE] = ACTIONS(862), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [aux_sym_match_default_expression_token1] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [151] = { @@ -35580,50 +35537,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [152] = { @@ -35692,50 +35649,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(862), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [aux_sym_match_default_expression_token1] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_RBRACE] = ACTIONS(864), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [aux_sym_match_default_expression_token1] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [153] = { @@ -35803,51 +35760,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__reserved_identifier] = STATE(1590), [aux_sym__list_destructing_repeat1] = STATE(2082), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(864), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(866), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(866), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_RPAREN] = ACTIONS(868), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [154] = { @@ -35915,51 +35872,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(849), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(851), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(868), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(851), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(853), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_RBRACK] = ACTIONS(870), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [155] = { @@ -36027,50 +35984,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1544), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(715), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [156] = { @@ -36137,51 +36094,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(871), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(871), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(873), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_RPAREN] = ACTIONS(873), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [157] = { @@ -36250,49 +36207,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [aux_sym_match_default_expression_token1] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [aux_sym_match_default_expression_token1] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [158] = { @@ -36360,49 +36317,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(873), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(875), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [159] = { @@ -36470,49 +36427,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(875), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(877), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [160] = { @@ -36580,49 +36537,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(877), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(879), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [161] = { @@ -36690,49 +36647,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(879), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(881), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [162] = { @@ -36800,49 +36757,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(881), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(883), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [163] = { @@ -36910,49 +36867,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(883), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(885), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [164] = { @@ -37020,49 +36977,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(885), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(887), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [165] = { @@ -37130,49 +37087,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(887), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(889), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [166] = { @@ -37240,49 +37197,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [167] = { @@ -37350,49 +37307,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(889), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(891), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [168] = { @@ -37460,49 +37417,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(891), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(893), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [169] = { @@ -37570,49 +37527,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(893), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(895), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [170] = { @@ -37680,49 +37637,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [171] = { @@ -37790,49 +37747,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(895), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(897), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [172] = { @@ -37900,49 +37857,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(897), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(899), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [173] = { @@ -38010,49 +37967,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(899), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(901), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [174] = { @@ -38120,49 +38077,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(901), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(903), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [175] = { @@ -38230,49 +38187,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(903), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(905), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [176] = { @@ -38340,49 +38297,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(905), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(907), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [177] = { @@ -38450,49 +38407,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(907), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(909), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [178] = { @@ -38560,49 +38517,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(909), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(911), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [179] = { @@ -38670,49 +38627,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [180] = { @@ -38780,49 +38737,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [181] = { @@ -38890,49 +38847,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(911), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(913), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [182] = { @@ -39000,49 +38957,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(913), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(915), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [183] = { @@ -39110,49 +39067,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(915), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(917), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [184] = { @@ -39220,49 +39177,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(917), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(919), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [185] = { @@ -39330,49 +39287,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(919), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(921), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [186] = { @@ -39438,51 +39395,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(921), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(921), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(923), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(923), }, [187] = { [sym_text_interpolation] = STATE(187), @@ -39547,51 +39504,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(923), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(925), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(923), + [sym__automatic_semicolon] = ACTIONS(925), }, [188] = { [sym_text_interpolation] = STATE(188), @@ -39656,51 +39613,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(925), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(927), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(925), + [sym__automatic_semicolon] = ACTIONS(927), }, [189] = { [sym_text_interpolation] = STATE(189), @@ -39765,51 +39722,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(927), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(929), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(927), + [sym__automatic_semicolon] = ACTIONS(929), }, [190] = { [sym_text_interpolation] = STATE(190), @@ -39874,51 +39831,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(929), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(929), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(931), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(931), }, [191] = { [sym_text_interpolation] = STATE(191), @@ -39984,49 +39941,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [192] = { @@ -40093,49 +40050,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(931), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(933), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [193] = { @@ -40202,49 +40159,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(931), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(933), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [194] = { @@ -40310,51 +40267,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(933), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(933), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(935), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(935), }, [195] = { [sym_text_interpolation] = STATE(195), @@ -40420,49 +40377,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [196] = { @@ -40530,48 +40487,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [197] = { @@ -40639,48 +40596,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [198] = { @@ -40747,49 +40704,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [199] = { @@ -40856,49 +40813,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1519), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [200] = { @@ -40965,49 +40922,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(701), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [201] = { @@ -41074,49 +41031,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(931), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(933), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [202] = { @@ -41183,49 +41140,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(935), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(937), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [203] = { @@ -41292,49 +41249,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1543), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(669), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(671), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [204] = { @@ -41400,49 +41357,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(937), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_COLON] = ACTIONS(939), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [205] = { @@ -41508,49 +41465,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(939), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_COLON] = ACTIONS(941), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [206] = { @@ -41616,49 +41573,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(941), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_COLON] = ACTIONS(943), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [207] = { @@ -41724,49 +41681,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(943), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [208] = { @@ -41832,49 +41789,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(945), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [anon_sym_COLON] = ACTIONS(947), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [209] = { @@ -41941,48 +41898,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [210] = { @@ -42049,48 +42006,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [211] = { @@ -42156,49 +42113,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(947), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(949), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [212] = { @@ -42264,49 +42221,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_EQ_GT] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_EQ_GT] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [213] = { @@ -42372,49 +42329,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(951), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(953), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [214] = { @@ -42480,49 +42437,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(955), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [215] = { @@ -42588,49 +42545,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(955), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(957), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [216] = { @@ -42696,49 +42653,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(957), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(959), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [217] = { @@ -42805,48 +42762,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [218] = { @@ -42912,49 +42869,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(959), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(961), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [219] = { @@ -43020,49 +42977,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(963), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [220] = { @@ -43128,49 +43085,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_RBRACK] = ACTIONS(963), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [221] = { @@ -43236,49 +43193,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(965), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(967), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [222] = { @@ -43344,49 +43301,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_EQ_GT] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_EQ_GT] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [223] = { @@ -43452,49 +43409,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(969), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_AMP] = ACTIONS(971), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [224] = { @@ -43560,48 +43517,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [225] = { @@ -43667,48 +43624,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [226] = { @@ -43774,48 +43731,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [227] = { @@ -43881,48 +43838,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [228] = { @@ -43988,48 +43945,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [229] = { @@ -44095,48 +44052,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [230] = { @@ -44202,48 +44159,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [231] = { @@ -44309,48 +44266,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [232] = { @@ -44416,48 +44373,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [233] = { @@ -44523,48 +44480,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [234] = { @@ -44630,48 +44587,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [235] = { @@ -44737,48 +44694,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [236] = { @@ -44844,48 +44801,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [237] = { @@ -44951,48 +44908,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [238] = { @@ -45058,48 +45015,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [239] = { @@ -45165,48 +45122,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [240] = { @@ -45272,48 +45229,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [241] = { @@ -45379,48 +45336,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [242] = { @@ -45486,48 +45443,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [243] = { @@ -45593,48 +45550,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [244] = { @@ -45700,48 +45657,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [245] = { @@ -45807,48 +45764,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [246] = { @@ -45914,48 +45871,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [247] = { @@ -46021,48 +45978,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [248] = { @@ -46128,48 +46085,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [249] = { @@ -46235,48 +46192,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [250] = { @@ -46342,48 +46299,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [251] = { @@ -46449,48 +46406,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [252] = { @@ -46556,48 +46513,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [253] = { @@ -46663,48 +46620,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [254] = { @@ -46770,48 +46727,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [255] = { @@ -46877,48 +46834,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [256] = { @@ -46984,48 +46941,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [257] = { @@ -47091,48 +47048,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [258] = { @@ -47198,48 +47155,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [259] = { @@ -47305,48 +47262,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [260] = { @@ -47412,48 +47369,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [261] = { @@ -47519,48 +47476,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [262] = { @@ -47626,48 +47583,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [263] = { @@ -47733,48 +47690,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [264] = { @@ -47840,48 +47797,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [265] = { @@ -47947,48 +47904,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [266] = { @@ -48054,48 +48011,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [267] = { @@ -48161,48 +48118,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [268] = { @@ -48268,48 +48225,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [269] = { @@ -48375,48 +48332,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [270] = { @@ -48482,48 +48439,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [271] = { @@ -48589,48 +48546,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [272] = { @@ -48696,48 +48653,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [273] = { @@ -48803,48 +48760,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [274] = { @@ -48910,48 +48867,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [275] = { @@ -49017,48 +48974,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [276] = { @@ -49124,48 +49081,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [277] = { @@ -49231,48 +49188,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [278] = { @@ -49338,48 +49295,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [279] = { @@ -49445,48 +49402,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [280] = { @@ -49552,48 +49509,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [281] = { @@ -49659,48 +49616,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [282] = { @@ -49766,48 +49723,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [283] = { @@ -49873,48 +49830,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [284] = { @@ -49980,48 +49937,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [285] = { @@ -50087,48 +50044,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [286] = { @@ -50194,48 +50151,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [287] = { @@ -50301,48 +50258,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [288] = { @@ -50408,48 +50365,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [289] = { @@ -50515,48 +50472,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [290] = { @@ -50622,48 +50579,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [291] = { @@ -50729,48 +50686,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [292] = { @@ -50836,48 +50793,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [293] = { @@ -50943,48 +50900,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [294] = { @@ -51050,48 +51007,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [295] = { @@ -51157,48 +51114,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [296] = { @@ -51264,48 +51221,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [297] = { @@ -51371,48 +51328,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [298] = { @@ -51478,48 +51435,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [299] = { @@ -51585,48 +51542,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [300] = { @@ -51692,48 +51649,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [301] = { @@ -51799,48 +51756,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [302] = { @@ -51906,48 +51863,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [303] = { @@ -52013,48 +51970,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [304] = { @@ -52120,48 +52077,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [305] = { @@ -52227,48 +52184,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [306] = { @@ -52334,48 +52291,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [307] = { @@ -52441,48 +52398,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [308] = { @@ -52548,48 +52505,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [309] = { @@ -52655,48 +52612,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [310] = { @@ -52762,48 +52719,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [311] = { @@ -52869,48 +52826,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [312] = { @@ -52976,48 +52933,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [313] = { @@ -53083,48 +53040,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [314] = { @@ -53190,48 +53147,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [315] = { @@ -53297,48 +53254,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [316] = { @@ -53404,48 +53361,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [317] = { @@ -53511,48 +53468,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [318] = { @@ -53618,48 +53575,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [319] = { @@ -53725,48 +53682,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [320] = { @@ -53832,48 +53789,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [321] = { @@ -53939,48 +53896,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [322] = { @@ -54046,48 +54003,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [323] = { @@ -54153,48 +54110,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [324] = { @@ -54260,48 +54217,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [325] = { @@ -54367,48 +54324,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [326] = { @@ -54474,48 +54431,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [327] = { @@ -54581,48 +54538,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [328] = { @@ -54688,48 +54645,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [329] = { @@ -54795,48 +54752,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [330] = { @@ -54902,48 +54859,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [331] = { @@ -55009,48 +54966,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [332] = { @@ -55116,48 +55073,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [333] = { @@ -55223,48 +55180,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [334] = { @@ -55330,48 +55287,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [335] = { @@ -55437,48 +55394,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [336] = { @@ -55544,48 +55501,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [337] = { @@ -55651,48 +55608,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [338] = { @@ -55758,48 +55715,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [339] = { @@ -55865,48 +55822,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [340] = { @@ -55972,48 +55929,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [341] = { @@ -56079,48 +56036,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [342] = { @@ -56186,48 +56143,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [343] = { @@ -56293,48 +56250,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [344] = { @@ -56400,48 +56357,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [345] = { @@ -56507,48 +56464,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [346] = { @@ -56614,48 +56571,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [347] = { @@ -56721,48 +56678,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [348] = { @@ -56828,48 +56785,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [349] = { @@ -56935,48 +56892,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [350] = { @@ -57042,48 +56999,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [351] = { @@ -57149,48 +57106,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [352] = { @@ -57256,48 +57213,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [353] = { @@ -57363,48 +57320,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [354] = { @@ -57470,48 +57427,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [355] = { @@ -57577,48 +57534,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [356] = { @@ -57684,48 +57641,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [357] = { @@ -57791,48 +57748,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [358] = { @@ -57898,48 +57855,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [359] = { @@ -58005,48 +57962,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [360] = { @@ -58112,48 +58069,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [361] = { @@ -58219,48 +58176,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [362] = { @@ -58326,48 +58283,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [363] = { @@ -58433,48 +58390,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [364] = { @@ -58540,48 +58497,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [365] = { @@ -58647,48 +58604,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [366] = { @@ -58754,48 +58711,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [367] = { @@ -58861,48 +58818,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [368] = { @@ -58968,48 +58925,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [369] = { @@ -59075,48 +59032,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [370] = { @@ -59182,48 +59139,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [371] = { @@ -59289,48 +59246,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [372] = { @@ -59396,48 +59353,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [373] = { @@ -59503,48 +59460,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [374] = { @@ -59610,48 +59567,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [375] = { @@ -59717,48 +59674,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [376] = { @@ -59824,48 +59781,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [377] = { @@ -59931,48 +59888,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [378] = { @@ -60038,48 +59995,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [379] = { @@ -60145,48 +60102,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [380] = { @@ -60252,48 +60209,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [381] = { @@ -60359,48 +60316,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [382] = { @@ -60466,48 +60423,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [383] = { @@ -60573,48 +60530,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [384] = { @@ -60680,48 +60637,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [385] = { @@ -60787,48 +60744,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [386] = { @@ -60894,48 +60851,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [387] = { @@ -61001,48 +60958,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [388] = { @@ -61108,48 +61065,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [389] = { @@ -61215,48 +61172,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [390] = { @@ -61322,48 +61279,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [391] = { @@ -61429,48 +61386,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [392] = { @@ -61536,48 +61493,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [393] = { @@ -61643,48 +61600,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [394] = { @@ -61750,48 +61707,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [395] = { @@ -61857,48 +61814,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [396] = { @@ -61964,48 +61921,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [397] = { @@ -62071,48 +62028,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [398] = { @@ -62178,48 +62135,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [399] = { @@ -62285,48 +62242,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [400] = { @@ -62392,48 +62349,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [401] = { @@ -62499,48 +62456,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [402] = { @@ -62606,48 +62563,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [403] = { @@ -62713,48 +62670,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [404] = { @@ -62820,48 +62777,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [405] = { @@ -62927,48 +62884,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [406] = { @@ -63034,48 +62991,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(635), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(643), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), - [aux_sym_require_expression_token1] = ACTIONS(651), - [aux_sym_require_once_expression_token1] = ACTIONS(653), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(637), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), [sym_comment] = ACTIONS(5), }, [407] = { @@ -63141,48 +63098,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [408] = { @@ -63248,48 +63205,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [409] = { @@ -63355,48 +63312,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [410] = { @@ -63462,48 +63419,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [411] = { @@ -63569,48 +63526,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [412] = { @@ -63676,48 +63633,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [413] = { @@ -63783,48 +63740,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [414] = { @@ -63890,48 +63847,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(1109), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_match_expression_token1] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(286), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_yield_expression_token1] = ACTIONS(318), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), - [aux_sym_require_expression_token1] = ACTIONS(324), - [aux_sym_require_once_expression_token1] = ACTIONS(326), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_match_expression_token1] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(288), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_yield_expression_token1] = ACTIONS(320), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), + [aux_sym_require_expression_token1] = ACTIONS(326), + [aux_sym_require_once_expression_token1] = ACTIONS(328), [sym_comment] = ACTIONS(5), }, [415] = { @@ -63997,48 +63954,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [416] = { @@ -64104,48 +64061,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [417] = { @@ -64211,48 +64168,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [418] = { @@ -64318,48 +64275,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(587), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(613), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), - [aux_sym_require_expression_token1] = ACTIONS(621), - [aux_sym_require_once_expression_token1] = ACTIONS(623), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(589), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(615), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), + [aux_sym_require_expression_token1] = ACTIONS(623), + [aux_sym_require_once_expression_token1] = ACTIONS(625), [sym_comment] = ACTIONS(5), }, [419] = { @@ -64425,48 +64382,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [420] = { @@ -64532,48 +64489,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [421] = { @@ -64639,48 +64596,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [422] = { @@ -64746,48 +64703,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_require_once_expression] = STATE(955), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_match_expression_token1] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(677), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [aux_sym__list_destructing_token1] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_yield_expression_token1] = ACTIONS(685), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), - [aux_sym_require_expression_token1] = ACTIONS(693), - [aux_sym_require_once_expression_token1] = ACTIONS(695), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_match_expression_token1] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(679), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [aux_sym__list_destructing_token1] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_yield_expression_token1] = ACTIONS(687), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), + [aux_sym_require_expression_token1] = ACTIONS(695), + [aux_sym_require_once_expression_token1] = ACTIONS(697), [sym_comment] = ACTIONS(5), }, [423] = { @@ -64795,91 +64752,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_catch_clause] = STATE(431), [sym_finally_clause] = STATE(431), [aux_sym_try_statement_repeat1] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(971), - [sym_name] = ACTIONS(973), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(971), - [aux_sym_function_static_declaration_token1] = ACTIONS(973), - [aux_sym_global_declaration_token1] = ACTIONS(973), - [aux_sym_namespace_definition_token1] = ACTIONS(973), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(973), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(973), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(973), - [anon_sym_BSLASH] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [aux_sym_trait_declaration_token1] = ACTIONS(973), - [aux_sym_interface_declaration_token1] = ACTIONS(973), - [aux_sym_enum_declaration_token1] = ACTIONS(973), - [aux_sym_enum_case_token1] = ACTIONS(973), - [aux_sym_class_declaration_token1] = ACTIONS(973), - [aux_sym_final_modifier_token1] = ACTIONS(973), - [aux_sym_abstract_modifier_token1] = ACTIONS(973), - [aux_sym_readonly_modifier_token1] = ACTIONS(973), - [aux_sym_visibility_modifier_token1] = ACTIONS(973), - [aux_sym_visibility_modifier_token2] = ACTIONS(973), - [aux_sym_visibility_modifier_token3] = ACTIONS(973), - [aux_sym__arrow_function_header_token1] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(971), - [aux_sym_cast_type_token1] = ACTIONS(973), - [aux_sym_echo_statement_token1] = ACTIONS(973), - [anon_sym_unset] = ACTIONS(973), - [aux_sym_declare_statement_token1] = ACTIONS(973), - [aux_sym_declare_statement_token2] = ACTIONS(973), - [sym_float] = ACTIONS(973), - [aux_sym_try_statement_token1] = ACTIONS(973), - [aux_sym_catch_clause_token1] = ACTIONS(975), - [aux_sym_finally_clause_token1] = ACTIONS(977), - [aux_sym_goto_statement_token1] = ACTIONS(973), - [aux_sym_continue_statement_token1] = ACTIONS(973), - [aux_sym_break_statement_token1] = ACTIONS(973), - [sym_integer] = ACTIONS(973), - [aux_sym_return_statement_token1] = ACTIONS(973), - [aux_sym_throw_expression_token1] = ACTIONS(973), - [aux_sym_while_statement_token1] = ACTIONS(973), - [aux_sym_while_statement_token2] = ACTIONS(973), - [aux_sym_do_statement_token1] = ACTIONS(973), - [aux_sym_for_statement_token1] = ACTIONS(973), - [aux_sym_for_statement_token2] = ACTIONS(973), - [aux_sym_foreach_statement_token1] = ACTIONS(973), - [aux_sym_foreach_statement_token2] = ACTIONS(973), - [aux_sym_if_statement_token1] = ACTIONS(973), - [aux_sym_if_statement_token2] = ACTIONS(973), - [aux_sym_else_if_clause_token1] = ACTIONS(973), - [aux_sym_else_clause_token1] = ACTIONS(973), - [aux_sym_match_expression_token1] = ACTIONS(973), - [aux_sym_match_default_expression_token1] = ACTIONS(973), - [aux_sym_switch_statement_token1] = ACTIONS(973), - [aux_sym_switch_block_token1] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_TILDE] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_AT] = ACTIONS(971), - [aux_sym_clone_expression_token1] = ACTIONS(973), - [aux_sym_print_intrinsic_token1] = ACTIONS(973), - [aux_sym_object_creation_expression_token1] = ACTIONS(973), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [aux_sym__list_destructing_token1] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_self] = ACTIONS(973), - [anon_sym_parent] = ACTIONS(973), - [aux_sym__argument_name_token1] = ACTIONS(973), - [aux_sym__argument_name_token2] = ACTIONS(973), - [anon_sym_POUND_LBRACK] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(971), - [aux_sym_encapsed_string_token1] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [aux_sym_string_token1] = ACTIONS(971), - [anon_sym_LT_LT_LT] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [aux_sym_yield_expression_token1] = ACTIONS(973), - [aux_sym_include_expression_token1] = ACTIONS(973), - [aux_sym_include_once_expression_token1] = ACTIONS(973), - [aux_sym_require_expression_token1] = ACTIONS(973), - [aux_sym_require_once_expression_token1] = ACTIONS(973), + [ts_builtin_sym_end] = ACTIONS(973), + [sym_name] = ACTIONS(975), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(973), + [aux_sym_function_static_declaration_token1] = ACTIONS(975), + [aux_sym_global_declaration_token1] = ACTIONS(975), + [aux_sym_namespace_definition_token1] = ACTIONS(975), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(975), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(975), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(975), + [anon_sym_BSLASH] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [aux_sym_trait_declaration_token1] = ACTIONS(975), + [aux_sym_interface_declaration_token1] = ACTIONS(975), + [aux_sym_enum_declaration_token1] = ACTIONS(975), + [aux_sym_enum_case_token1] = ACTIONS(975), + [aux_sym_class_declaration_token1] = ACTIONS(975), + [aux_sym_final_modifier_token1] = ACTIONS(975), + [aux_sym_abstract_modifier_token1] = ACTIONS(975), + [aux_sym_readonly_modifier_token1] = ACTIONS(975), + [aux_sym_visibility_modifier_token1] = ACTIONS(975), + [aux_sym_visibility_modifier_token2] = ACTIONS(975), + [aux_sym_visibility_modifier_token3] = ACTIONS(975), + [aux_sym__arrow_function_header_token1] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(973), + [aux_sym_cast_type_token1] = ACTIONS(975), + [aux_sym_echo_statement_token1] = ACTIONS(975), + [anon_sym_unset] = ACTIONS(975), + [aux_sym_declare_statement_token1] = ACTIONS(975), + [aux_sym_declare_statement_token2] = ACTIONS(975), + [sym_float] = ACTIONS(975), + [aux_sym_try_statement_token1] = ACTIONS(975), + [aux_sym_catch_clause_token1] = ACTIONS(977), + [aux_sym_finally_clause_token1] = ACTIONS(979), + [aux_sym_goto_statement_token1] = ACTIONS(975), + [aux_sym_continue_statement_token1] = ACTIONS(975), + [aux_sym_break_statement_token1] = ACTIONS(975), + [sym_integer] = ACTIONS(975), + [aux_sym_return_statement_token1] = ACTIONS(975), + [aux_sym_throw_expression_token1] = ACTIONS(975), + [aux_sym_while_statement_token1] = ACTIONS(975), + [aux_sym_while_statement_token2] = ACTIONS(975), + [aux_sym_do_statement_token1] = ACTIONS(975), + [aux_sym_for_statement_token1] = ACTIONS(975), + [aux_sym_for_statement_token2] = ACTIONS(975), + [aux_sym_foreach_statement_token1] = ACTIONS(975), + [aux_sym_foreach_statement_token2] = ACTIONS(975), + [aux_sym_if_statement_token1] = ACTIONS(975), + [aux_sym_if_statement_token2] = ACTIONS(975), + [aux_sym_else_if_clause_token1] = ACTIONS(975), + [aux_sym_else_clause_token1] = ACTIONS(975), + [aux_sym_match_expression_token1] = ACTIONS(975), + [aux_sym_match_default_expression_token1] = ACTIONS(975), + [aux_sym_switch_statement_token1] = ACTIONS(975), + [aux_sym_switch_block_token1] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_TILDE] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AT] = ACTIONS(973), + [aux_sym_clone_expression_token1] = ACTIONS(975), + [aux_sym_print_intrinsic_token1] = ACTIONS(975), + [aux_sym_object_creation_expression_token1] = ACTIONS(975), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [aux_sym__list_destructing_token1] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_self] = ACTIONS(975), + [anon_sym_parent] = ACTIONS(975), + [aux_sym__argument_name_token1] = ACTIONS(975), + [aux_sym__argument_name_token2] = ACTIONS(975), + [anon_sym_POUND_LBRACK] = ACTIONS(973), + [anon_sym_SQUOTE] = ACTIONS(973), + [aux_sym_encapsed_string_token1] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [aux_sym_string_token1] = ACTIONS(973), + [anon_sym_LT_LT_LT] = ACTIONS(973), + [anon_sym_BQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [aux_sym_yield_expression_token1] = ACTIONS(975), + [aux_sym_include_expression_token1] = ACTIONS(975), + [aux_sym_include_once_expression_token1] = ACTIONS(975), + [aux_sym_require_expression_token1] = ACTIONS(975), + [aux_sym_require_once_expression_token1] = ACTIONS(975), [sym_comment] = ACTIONS(5), }, [424] = { @@ -64887,91 +64844,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_catch_clause] = STATE(431), [sym_finally_clause] = STATE(431), [aux_sym_try_statement_repeat1] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(979), - [sym_name] = ACTIONS(981), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(979), - [aux_sym_function_static_declaration_token1] = ACTIONS(981), - [aux_sym_global_declaration_token1] = ACTIONS(981), - [aux_sym_namespace_definition_token1] = ACTIONS(981), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(981), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(981), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(981), - [anon_sym_BSLASH] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [aux_sym_trait_declaration_token1] = ACTIONS(981), - [aux_sym_interface_declaration_token1] = ACTIONS(981), - [aux_sym_enum_declaration_token1] = ACTIONS(981), - [aux_sym_enum_case_token1] = ACTIONS(981), - [aux_sym_class_declaration_token1] = ACTIONS(981), - [aux_sym_final_modifier_token1] = ACTIONS(981), - [aux_sym_abstract_modifier_token1] = ACTIONS(981), - [aux_sym_readonly_modifier_token1] = ACTIONS(981), - [aux_sym_visibility_modifier_token1] = ACTIONS(981), - [aux_sym_visibility_modifier_token2] = ACTIONS(981), - [aux_sym_visibility_modifier_token3] = ACTIONS(981), - [aux_sym__arrow_function_header_token1] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(979), - [aux_sym_cast_type_token1] = ACTIONS(981), - [aux_sym_echo_statement_token1] = ACTIONS(981), - [anon_sym_unset] = ACTIONS(981), - [aux_sym_declare_statement_token1] = ACTIONS(981), - [aux_sym_declare_statement_token2] = ACTIONS(981), - [sym_float] = ACTIONS(981), - [aux_sym_try_statement_token1] = ACTIONS(981), - [aux_sym_catch_clause_token1] = ACTIONS(983), - [aux_sym_finally_clause_token1] = ACTIONS(986), - [aux_sym_goto_statement_token1] = ACTIONS(981), - [aux_sym_continue_statement_token1] = ACTIONS(981), - [aux_sym_break_statement_token1] = ACTIONS(981), - [sym_integer] = ACTIONS(981), - [aux_sym_return_statement_token1] = ACTIONS(981), - [aux_sym_throw_expression_token1] = ACTIONS(981), - [aux_sym_while_statement_token1] = ACTIONS(981), - [aux_sym_while_statement_token2] = ACTIONS(981), - [aux_sym_do_statement_token1] = ACTIONS(981), - [aux_sym_for_statement_token1] = ACTIONS(981), - [aux_sym_for_statement_token2] = ACTIONS(981), - [aux_sym_foreach_statement_token1] = ACTIONS(981), - [aux_sym_foreach_statement_token2] = ACTIONS(981), - [aux_sym_if_statement_token1] = ACTIONS(981), - [aux_sym_if_statement_token2] = ACTIONS(981), - [aux_sym_else_if_clause_token1] = ACTIONS(981), - [aux_sym_else_clause_token1] = ACTIONS(981), - [aux_sym_match_expression_token1] = ACTIONS(981), - [aux_sym_match_default_expression_token1] = ACTIONS(981), - [aux_sym_switch_statement_token1] = ACTIONS(981), - [aux_sym_switch_block_token1] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_TILDE] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AT] = ACTIONS(979), - [aux_sym_clone_expression_token1] = ACTIONS(981), - [aux_sym_print_intrinsic_token1] = ACTIONS(981), - [aux_sym_object_creation_expression_token1] = ACTIONS(981), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [aux_sym__list_destructing_token1] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_self] = ACTIONS(981), - [anon_sym_parent] = ACTIONS(981), - [aux_sym__argument_name_token1] = ACTIONS(981), - [aux_sym__argument_name_token2] = ACTIONS(981), - [anon_sym_POUND_LBRACK] = ACTIONS(979), - [anon_sym_SQUOTE] = ACTIONS(979), - [aux_sym_encapsed_string_token1] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [aux_sym_string_token1] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_BQUOTE] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [aux_sym_yield_expression_token1] = ACTIONS(981), - [aux_sym_include_expression_token1] = ACTIONS(981), - [aux_sym_include_once_expression_token1] = ACTIONS(981), - [aux_sym_require_expression_token1] = ACTIONS(981), - [aux_sym_require_once_expression_token1] = ACTIONS(981), + [ts_builtin_sym_end] = ACTIONS(981), + [sym_name] = ACTIONS(983), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(981), + [aux_sym_function_static_declaration_token1] = ACTIONS(983), + [aux_sym_global_declaration_token1] = ACTIONS(983), + [aux_sym_namespace_definition_token1] = ACTIONS(983), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(983), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(983), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(983), + [anon_sym_BSLASH] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(981), + [aux_sym_trait_declaration_token1] = ACTIONS(983), + [aux_sym_interface_declaration_token1] = ACTIONS(983), + [aux_sym_enum_declaration_token1] = ACTIONS(983), + [aux_sym_enum_case_token1] = ACTIONS(983), + [aux_sym_class_declaration_token1] = ACTIONS(983), + [aux_sym_final_modifier_token1] = ACTIONS(983), + [aux_sym_abstract_modifier_token1] = ACTIONS(983), + [aux_sym_readonly_modifier_token1] = ACTIONS(983), + [aux_sym_visibility_modifier_token1] = ACTIONS(983), + [aux_sym_visibility_modifier_token2] = ACTIONS(983), + [aux_sym_visibility_modifier_token3] = ACTIONS(983), + [aux_sym__arrow_function_header_token1] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(981), + [aux_sym_cast_type_token1] = ACTIONS(983), + [aux_sym_echo_statement_token1] = ACTIONS(983), + [anon_sym_unset] = ACTIONS(983), + [aux_sym_declare_statement_token1] = ACTIONS(983), + [aux_sym_declare_statement_token2] = ACTIONS(983), + [sym_float] = ACTIONS(983), + [aux_sym_try_statement_token1] = ACTIONS(983), + [aux_sym_catch_clause_token1] = ACTIONS(985), + [aux_sym_finally_clause_token1] = ACTIONS(988), + [aux_sym_goto_statement_token1] = ACTIONS(983), + [aux_sym_continue_statement_token1] = ACTIONS(983), + [aux_sym_break_statement_token1] = ACTIONS(983), + [sym_integer] = ACTIONS(983), + [aux_sym_return_statement_token1] = ACTIONS(983), + [aux_sym_throw_expression_token1] = ACTIONS(983), + [aux_sym_while_statement_token1] = ACTIONS(983), + [aux_sym_while_statement_token2] = ACTIONS(983), + [aux_sym_do_statement_token1] = ACTIONS(983), + [aux_sym_for_statement_token1] = ACTIONS(983), + [aux_sym_for_statement_token2] = ACTIONS(983), + [aux_sym_foreach_statement_token1] = ACTIONS(983), + [aux_sym_foreach_statement_token2] = ACTIONS(983), + [aux_sym_if_statement_token1] = ACTIONS(983), + [aux_sym_if_statement_token2] = ACTIONS(983), + [aux_sym_else_if_clause_token1] = ACTIONS(983), + [aux_sym_else_clause_token1] = ACTIONS(983), + [aux_sym_match_expression_token1] = ACTIONS(983), + [aux_sym_match_default_expression_token1] = ACTIONS(983), + [aux_sym_switch_statement_token1] = ACTIONS(983), + [aux_sym_switch_block_token1] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [aux_sym_clone_expression_token1] = ACTIONS(983), + [aux_sym_print_intrinsic_token1] = ACTIONS(983), + [aux_sym_object_creation_expression_token1] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [aux_sym__list_destructing_token1] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_self] = ACTIONS(983), + [anon_sym_parent] = ACTIONS(983), + [aux_sym__argument_name_token1] = ACTIONS(983), + [aux_sym__argument_name_token2] = ACTIONS(983), + [anon_sym_POUND_LBRACK] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(981), + [aux_sym_encapsed_string_token1] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [aux_sym_string_token1] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(981), + [aux_sym_yield_expression_token1] = ACTIONS(983), + [aux_sym_include_expression_token1] = ACTIONS(983), + [aux_sym_include_once_expression_token1] = ACTIONS(983), + [aux_sym_require_expression_token1] = ACTIONS(983), + [aux_sym_require_once_expression_token1] = ACTIONS(983), [sym_comment] = ACTIONS(5), }, [425] = { @@ -64979,89 +64936,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_else_if_clause] = STATE(509), [sym_else_clause] = STATE(508), [aux_sym_if_statement_repeat1] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(989), - [sym_name] = ACTIONS(991), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(989), - [aux_sym_function_static_declaration_token1] = ACTIONS(991), - [aux_sym_global_declaration_token1] = ACTIONS(991), - [aux_sym_namespace_definition_token1] = ACTIONS(991), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(991), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(991), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(991), - [anon_sym_BSLASH] = ACTIONS(989), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_RBRACE] = ACTIONS(989), - [aux_sym_trait_declaration_token1] = ACTIONS(991), - [aux_sym_interface_declaration_token1] = ACTIONS(991), - [aux_sym_enum_declaration_token1] = ACTIONS(991), - [aux_sym_enum_case_token1] = ACTIONS(991), - [aux_sym_class_declaration_token1] = ACTIONS(991), - [aux_sym_final_modifier_token1] = ACTIONS(991), - [aux_sym_abstract_modifier_token1] = ACTIONS(991), - [aux_sym_readonly_modifier_token1] = ACTIONS(991), - [aux_sym_visibility_modifier_token1] = ACTIONS(991), - [aux_sym_visibility_modifier_token2] = ACTIONS(991), - [aux_sym_visibility_modifier_token3] = ACTIONS(991), - [aux_sym__arrow_function_header_token1] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(989), - [aux_sym_cast_type_token1] = ACTIONS(991), - [aux_sym_echo_statement_token1] = ACTIONS(991), - [anon_sym_unset] = ACTIONS(991), - [aux_sym_declare_statement_token1] = ACTIONS(991), - [aux_sym_declare_statement_token2] = ACTIONS(991), - [sym_float] = ACTIONS(991), - [aux_sym_try_statement_token1] = ACTIONS(991), - [aux_sym_goto_statement_token1] = ACTIONS(991), - [aux_sym_continue_statement_token1] = ACTIONS(991), - [aux_sym_break_statement_token1] = ACTIONS(991), - [sym_integer] = ACTIONS(991), - [aux_sym_return_statement_token1] = ACTIONS(991), - [aux_sym_throw_expression_token1] = ACTIONS(991), - [aux_sym_while_statement_token1] = ACTIONS(991), - [aux_sym_while_statement_token2] = ACTIONS(991), - [aux_sym_do_statement_token1] = ACTIONS(991), - [aux_sym_for_statement_token1] = ACTIONS(991), - [aux_sym_for_statement_token2] = ACTIONS(991), - [aux_sym_foreach_statement_token1] = ACTIONS(991), - [aux_sym_foreach_statement_token2] = ACTIONS(991), - [aux_sym_if_statement_token1] = ACTIONS(991), - [aux_sym_if_statement_token2] = ACTIONS(991), - [aux_sym_else_if_clause_token1] = ACTIONS(993), - [aux_sym_else_clause_token1] = ACTIONS(996), - [aux_sym_match_expression_token1] = ACTIONS(991), - [aux_sym_match_default_expression_token1] = ACTIONS(991), - [aux_sym_switch_statement_token1] = ACTIONS(991), - [aux_sym_switch_block_token1] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AT] = ACTIONS(989), - [aux_sym_clone_expression_token1] = ACTIONS(991), - [aux_sym_print_intrinsic_token1] = ACTIONS(991), - [aux_sym_object_creation_expression_token1] = ACTIONS(991), - [anon_sym_DASH_DASH] = ACTIONS(989), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [aux_sym__list_destructing_token1] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_self] = ACTIONS(991), - [anon_sym_parent] = ACTIONS(991), - [aux_sym__argument_name_token1] = ACTIONS(991), - [aux_sym__argument_name_token2] = ACTIONS(991), - [anon_sym_POUND_LBRACK] = ACTIONS(989), - [anon_sym_SQUOTE] = ACTIONS(989), - [aux_sym_encapsed_string_token1] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [aux_sym_string_token1] = ACTIONS(989), - [anon_sym_LT_LT_LT] = ACTIONS(989), - [anon_sym_BQUOTE] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [aux_sym_yield_expression_token1] = ACTIONS(991), - [aux_sym_include_expression_token1] = ACTIONS(991), - [aux_sym_include_once_expression_token1] = ACTIONS(991), - [aux_sym_require_expression_token1] = ACTIONS(991), - [aux_sym_require_once_expression_token1] = ACTIONS(991), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_name] = ACTIONS(993), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(991), + [aux_sym_function_static_declaration_token1] = ACTIONS(993), + [aux_sym_global_declaration_token1] = ACTIONS(993), + [aux_sym_namespace_definition_token1] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(993), + [anon_sym_BSLASH] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [aux_sym_trait_declaration_token1] = ACTIONS(993), + [aux_sym_interface_declaration_token1] = ACTIONS(993), + [aux_sym_enum_declaration_token1] = ACTIONS(993), + [aux_sym_enum_case_token1] = ACTIONS(993), + [aux_sym_class_declaration_token1] = ACTIONS(993), + [aux_sym_final_modifier_token1] = ACTIONS(993), + [aux_sym_abstract_modifier_token1] = ACTIONS(993), + [aux_sym_readonly_modifier_token1] = ACTIONS(993), + [aux_sym_visibility_modifier_token1] = ACTIONS(993), + [aux_sym_visibility_modifier_token2] = ACTIONS(993), + [aux_sym_visibility_modifier_token3] = ACTIONS(993), + [aux_sym__arrow_function_header_token1] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(991), + [aux_sym_cast_type_token1] = ACTIONS(993), + [aux_sym_echo_statement_token1] = ACTIONS(993), + [anon_sym_unset] = ACTIONS(993), + [aux_sym_declare_statement_token1] = ACTIONS(993), + [aux_sym_declare_statement_token2] = ACTIONS(993), + [sym_float] = ACTIONS(993), + [aux_sym_try_statement_token1] = ACTIONS(993), + [aux_sym_goto_statement_token1] = ACTIONS(993), + [aux_sym_continue_statement_token1] = ACTIONS(993), + [aux_sym_break_statement_token1] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [aux_sym_return_statement_token1] = ACTIONS(993), + [aux_sym_throw_expression_token1] = ACTIONS(993), + [aux_sym_while_statement_token1] = ACTIONS(993), + [aux_sym_while_statement_token2] = ACTIONS(993), + [aux_sym_do_statement_token1] = ACTIONS(993), + [aux_sym_for_statement_token1] = ACTIONS(993), + [aux_sym_for_statement_token2] = ACTIONS(993), + [aux_sym_foreach_statement_token1] = ACTIONS(993), + [aux_sym_foreach_statement_token2] = ACTIONS(993), + [aux_sym_if_statement_token1] = ACTIONS(993), + [aux_sym_if_statement_token2] = ACTIONS(993), + [aux_sym_else_if_clause_token1] = ACTIONS(995), + [aux_sym_else_clause_token1] = ACTIONS(998), + [aux_sym_match_expression_token1] = ACTIONS(993), + [aux_sym_match_default_expression_token1] = ACTIONS(993), + [aux_sym_switch_statement_token1] = ACTIONS(993), + [aux_sym_switch_block_token1] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [aux_sym_clone_expression_token1] = ACTIONS(993), + [aux_sym_print_intrinsic_token1] = ACTIONS(993), + [aux_sym_object_creation_expression_token1] = ACTIONS(993), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [aux_sym__list_destructing_token1] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_self] = ACTIONS(993), + [anon_sym_parent] = ACTIONS(993), + [aux_sym__argument_name_token1] = ACTIONS(993), + [aux_sym__argument_name_token2] = ACTIONS(993), + [anon_sym_POUND_LBRACK] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), + [aux_sym_encapsed_string_token1] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [aux_sym_string_token1] = ACTIONS(991), + [anon_sym_LT_LT_LT] = ACTIONS(991), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(991), + [aux_sym_yield_expression_token1] = ACTIONS(993), + [aux_sym_include_expression_token1] = ACTIONS(993), + [aux_sym_include_once_expression_token1] = ACTIONS(993), + [aux_sym_require_expression_token1] = ACTIONS(993), + [aux_sym_require_once_expression_token1] = ACTIONS(993), [sym_comment] = ACTIONS(5), }, [426] = { @@ -65069,89 +65026,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_else_if_clause] = STATE(509), [sym_else_clause] = STATE(544), [aux_sym_if_statement_repeat1] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(999), - [sym_name] = ACTIONS(1001), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(999), - [aux_sym_function_static_declaration_token1] = ACTIONS(1001), - [aux_sym_global_declaration_token1] = ACTIONS(1001), - [aux_sym_namespace_definition_token1] = ACTIONS(1001), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1001), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1001), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1001), - [anon_sym_BSLASH] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [aux_sym_trait_declaration_token1] = ACTIONS(1001), - [aux_sym_interface_declaration_token1] = ACTIONS(1001), - [aux_sym_enum_declaration_token1] = ACTIONS(1001), - [aux_sym_enum_case_token1] = ACTIONS(1001), - [aux_sym_class_declaration_token1] = ACTIONS(1001), - [aux_sym_final_modifier_token1] = ACTIONS(1001), - [aux_sym_abstract_modifier_token1] = ACTIONS(1001), - [aux_sym_readonly_modifier_token1] = ACTIONS(1001), - [aux_sym_visibility_modifier_token1] = ACTIONS(1001), - [aux_sym_visibility_modifier_token2] = ACTIONS(1001), - [aux_sym_visibility_modifier_token3] = ACTIONS(1001), - [aux_sym__arrow_function_header_token1] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(999), - [aux_sym_cast_type_token1] = ACTIONS(1001), - [aux_sym_echo_statement_token1] = ACTIONS(1001), - [anon_sym_unset] = ACTIONS(1001), - [aux_sym_declare_statement_token1] = ACTIONS(1001), - [aux_sym_declare_statement_token2] = ACTIONS(1001), - [sym_float] = ACTIONS(1001), - [aux_sym_try_statement_token1] = ACTIONS(1001), - [aux_sym_goto_statement_token1] = ACTIONS(1001), - [aux_sym_continue_statement_token1] = ACTIONS(1001), - [aux_sym_break_statement_token1] = ACTIONS(1001), - [sym_integer] = ACTIONS(1001), - [aux_sym_return_statement_token1] = ACTIONS(1001), - [aux_sym_throw_expression_token1] = ACTIONS(1001), - [aux_sym_while_statement_token1] = ACTIONS(1001), - [aux_sym_while_statement_token2] = ACTIONS(1001), - [aux_sym_do_statement_token1] = ACTIONS(1001), - [aux_sym_for_statement_token1] = ACTIONS(1001), - [aux_sym_for_statement_token2] = ACTIONS(1001), - [aux_sym_foreach_statement_token1] = ACTIONS(1001), - [aux_sym_foreach_statement_token2] = ACTIONS(1001), - [aux_sym_if_statement_token1] = ACTIONS(1001), - [aux_sym_if_statement_token2] = ACTIONS(1001), - [aux_sym_else_if_clause_token1] = ACTIONS(1003), - [aux_sym_else_clause_token1] = ACTIONS(1006), - [aux_sym_match_expression_token1] = ACTIONS(1001), - [aux_sym_match_default_expression_token1] = ACTIONS(1001), - [aux_sym_switch_statement_token1] = ACTIONS(1001), - [aux_sym_switch_block_token1] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), - [aux_sym_clone_expression_token1] = ACTIONS(1001), - [aux_sym_print_intrinsic_token1] = ACTIONS(1001), - [aux_sym_object_creation_expression_token1] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [aux_sym__list_destructing_token1] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_self] = ACTIONS(1001), - [anon_sym_parent] = ACTIONS(1001), - [aux_sym__argument_name_token1] = ACTIONS(1001), - [aux_sym__argument_name_token2] = ACTIONS(1001), - [anon_sym_POUND_LBRACK] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(999), - [aux_sym_encapsed_string_token1] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [aux_sym_string_token1] = ACTIONS(999), - [anon_sym_LT_LT_LT] = ACTIONS(999), - [anon_sym_BQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [aux_sym_yield_expression_token1] = ACTIONS(1001), - [aux_sym_include_expression_token1] = ACTIONS(1001), - [aux_sym_include_once_expression_token1] = ACTIONS(1001), - [aux_sym_require_expression_token1] = ACTIONS(1001), - [aux_sym_require_once_expression_token1] = ACTIONS(1001), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_name] = ACTIONS(1003), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1001), + [aux_sym_function_static_declaration_token1] = ACTIONS(1003), + [aux_sym_global_declaration_token1] = ACTIONS(1003), + [aux_sym_namespace_definition_token1] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1003), + [anon_sym_BSLASH] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [aux_sym_trait_declaration_token1] = ACTIONS(1003), + [aux_sym_interface_declaration_token1] = ACTIONS(1003), + [aux_sym_enum_declaration_token1] = ACTIONS(1003), + [aux_sym_enum_case_token1] = ACTIONS(1003), + [aux_sym_class_declaration_token1] = ACTIONS(1003), + [aux_sym_final_modifier_token1] = ACTIONS(1003), + [aux_sym_abstract_modifier_token1] = ACTIONS(1003), + [aux_sym_readonly_modifier_token1] = ACTIONS(1003), + [aux_sym_visibility_modifier_token1] = ACTIONS(1003), + [aux_sym_visibility_modifier_token2] = ACTIONS(1003), + [aux_sym_visibility_modifier_token3] = ACTIONS(1003), + [aux_sym__arrow_function_header_token1] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1001), + [aux_sym_cast_type_token1] = ACTIONS(1003), + [aux_sym_echo_statement_token1] = ACTIONS(1003), + [anon_sym_unset] = ACTIONS(1003), + [aux_sym_declare_statement_token1] = ACTIONS(1003), + [aux_sym_declare_statement_token2] = ACTIONS(1003), + [sym_float] = ACTIONS(1003), + [aux_sym_try_statement_token1] = ACTIONS(1003), + [aux_sym_goto_statement_token1] = ACTIONS(1003), + [aux_sym_continue_statement_token1] = ACTIONS(1003), + [aux_sym_break_statement_token1] = ACTIONS(1003), + [sym_integer] = ACTIONS(1003), + [aux_sym_return_statement_token1] = ACTIONS(1003), + [aux_sym_throw_expression_token1] = ACTIONS(1003), + [aux_sym_while_statement_token1] = ACTIONS(1003), + [aux_sym_while_statement_token2] = ACTIONS(1003), + [aux_sym_do_statement_token1] = ACTIONS(1003), + [aux_sym_for_statement_token1] = ACTIONS(1003), + [aux_sym_for_statement_token2] = ACTIONS(1003), + [aux_sym_foreach_statement_token1] = ACTIONS(1003), + [aux_sym_foreach_statement_token2] = ACTIONS(1003), + [aux_sym_if_statement_token1] = ACTIONS(1003), + [aux_sym_if_statement_token2] = ACTIONS(1003), + [aux_sym_else_if_clause_token1] = ACTIONS(1005), + [aux_sym_else_clause_token1] = ACTIONS(1008), + [aux_sym_match_expression_token1] = ACTIONS(1003), + [aux_sym_match_default_expression_token1] = ACTIONS(1003), + [aux_sym_switch_statement_token1] = ACTIONS(1003), + [aux_sym_switch_block_token1] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [aux_sym_clone_expression_token1] = ACTIONS(1003), + [aux_sym_print_intrinsic_token1] = ACTIONS(1003), + [aux_sym_object_creation_expression_token1] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [aux_sym__list_destructing_token1] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_self] = ACTIONS(1003), + [anon_sym_parent] = ACTIONS(1003), + [aux_sym__argument_name_token1] = ACTIONS(1003), + [aux_sym__argument_name_token2] = ACTIONS(1003), + [anon_sym_POUND_LBRACK] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(1001), + [aux_sym_encapsed_string_token1] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1001), + [aux_sym_string_token1] = ACTIONS(1001), + [anon_sym_LT_LT_LT] = ACTIONS(1001), + [anon_sym_BQUOTE] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1001), + [aux_sym_yield_expression_token1] = ACTIONS(1003), + [aux_sym_include_expression_token1] = ACTIONS(1003), + [aux_sym_include_once_expression_token1] = ACTIONS(1003), + [aux_sym_require_expression_token1] = ACTIONS(1003), + [aux_sym_require_once_expression_token1] = ACTIONS(1003), [sym_comment] = ACTIONS(5), }, [427] = { @@ -65159,89 +65116,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_else_if_clause] = STATE(509), [sym_else_clause] = STATE(544), [aux_sym_if_statement_repeat1] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(999), - [sym_name] = ACTIONS(1001), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(999), - [aux_sym_function_static_declaration_token1] = ACTIONS(1001), - [aux_sym_global_declaration_token1] = ACTIONS(1001), - [aux_sym_namespace_definition_token1] = ACTIONS(1001), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1001), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1001), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1001), - [anon_sym_BSLASH] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [aux_sym_trait_declaration_token1] = ACTIONS(1001), - [aux_sym_interface_declaration_token1] = ACTIONS(1001), - [aux_sym_enum_declaration_token1] = ACTIONS(1001), - [aux_sym_enum_case_token1] = ACTIONS(1001), - [aux_sym_class_declaration_token1] = ACTIONS(1001), - [aux_sym_final_modifier_token1] = ACTIONS(1001), - [aux_sym_abstract_modifier_token1] = ACTIONS(1001), - [aux_sym_readonly_modifier_token1] = ACTIONS(1001), - [aux_sym_visibility_modifier_token1] = ACTIONS(1001), - [aux_sym_visibility_modifier_token2] = ACTIONS(1001), - [aux_sym_visibility_modifier_token3] = ACTIONS(1001), - [aux_sym__arrow_function_header_token1] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(999), - [aux_sym_cast_type_token1] = ACTIONS(1001), - [aux_sym_echo_statement_token1] = ACTIONS(1001), - [anon_sym_unset] = ACTIONS(1001), - [aux_sym_declare_statement_token1] = ACTIONS(1001), - [aux_sym_declare_statement_token2] = ACTIONS(1001), - [sym_float] = ACTIONS(1001), - [aux_sym_try_statement_token1] = ACTIONS(1001), - [aux_sym_goto_statement_token1] = ACTIONS(1001), - [aux_sym_continue_statement_token1] = ACTIONS(1001), - [aux_sym_break_statement_token1] = ACTIONS(1001), - [sym_integer] = ACTIONS(1001), - [aux_sym_return_statement_token1] = ACTIONS(1001), - [aux_sym_throw_expression_token1] = ACTIONS(1001), - [aux_sym_while_statement_token1] = ACTIONS(1001), - [aux_sym_while_statement_token2] = ACTIONS(1001), - [aux_sym_do_statement_token1] = ACTIONS(1001), - [aux_sym_for_statement_token1] = ACTIONS(1001), - [aux_sym_for_statement_token2] = ACTIONS(1001), - [aux_sym_foreach_statement_token1] = ACTIONS(1001), - [aux_sym_foreach_statement_token2] = ACTIONS(1001), - [aux_sym_if_statement_token1] = ACTIONS(1001), - [aux_sym_if_statement_token2] = ACTIONS(1001), - [aux_sym_else_if_clause_token1] = ACTIONS(1009), - [aux_sym_else_clause_token1] = ACTIONS(1011), - [aux_sym_match_expression_token1] = ACTIONS(1001), - [aux_sym_match_default_expression_token1] = ACTIONS(1001), - [aux_sym_switch_statement_token1] = ACTIONS(1001), - [aux_sym_switch_block_token1] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), - [aux_sym_clone_expression_token1] = ACTIONS(1001), - [aux_sym_print_intrinsic_token1] = ACTIONS(1001), - [aux_sym_object_creation_expression_token1] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [aux_sym__list_destructing_token1] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_self] = ACTIONS(1001), - [anon_sym_parent] = ACTIONS(1001), - [aux_sym__argument_name_token1] = ACTIONS(1001), - [aux_sym__argument_name_token2] = ACTIONS(1001), - [anon_sym_POUND_LBRACK] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(999), - [aux_sym_encapsed_string_token1] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [aux_sym_string_token1] = ACTIONS(999), - [anon_sym_LT_LT_LT] = ACTIONS(999), - [anon_sym_BQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [aux_sym_yield_expression_token1] = ACTIONS(1001), - [aux_sym_include_expression_token1] = ACTIONS(1001), - [aux_sym_include_once_expression_token1] = ACTIONS(1001), - [aux_sym_require_expression_token1] = ACTIONS(1001), - [aux_sym_require_once_expression_token1] = ACTIONS(1001), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_name] = ACTIONS(1003), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1001), + [aux_sym_function_static_declaration_token1] = ACTIONS(1003), + [aux_sym_global_declaration_token1] = ACTIONS(1003), + [aux_sym_namespace_definition_token1] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1003), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1003), + [anon_sym_BSLASH] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [aux_sym_trait_declaration_token1] = ACTIONS(1003), + [aux_sym_interface_declaration_token1] = ACTIONS(1003), + [aux_sym_enum_declaration_token1] = ACTIONS(1003), + [aux_sym_enum_case_token1] = ACTIONS(1003), + [aux_sym_class_declaration_token1] = ACTIONS(1003), + [aux_sym_final_modifier_token1] = ACTIONS(1003), + [aux_sym_abstract_modifier_token1] = ACTIONS(1003), + [aux_sym_readonly_modifier_token1] = ACTIONS(1003), + [aux_sym_visibility_modifier_token1] = ACTIONS(1003), + [aux_sym_visibility_modifier_token2] = ACTIONS(1003), + [aux_sym_visibility_modifier_token3] = ACTIONS(1003), + [aux_sym__arrow_function_header_token1] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1001), + [aux_sym_cast_type_token1] = ACTIONS(1003), + [aux_sym_echo_statement_token1] = ACTIONS(1003), + [anon_sym_unset] = ACTIONS(1003), + [aux_sym_declare_statement_token1] = ACTIONS(1003), + [aux_sym_declare_statement_token2] = ACTIONS(1003), + [sym_float] = ACTIONS(1003), + [aux_sym_try_statement_token1] = ACTIONS(1003), + [aux_sym_goto_statement_token1] = ACTIONS(1003), + [aux_sym_continue_statement_token1] = ACTIONS(1003), + [aux_sym_break_statement_token1] = ACTIONS(1003), + [sym_integer] = ACTIONS(1003), + [aux_sym_return_statement_token1] = ACTIONS(1003), + [aux_sym_throw_expression_token1] = ACTIONS(1003), + [aux_sym_while_statement_token1] = ACTIONS(1003), + [aux_sym_while_statement_token2] = ACTIONS(1003), + [aux_sym_do_statement_token1] = ACTIONS(1003), + [aux_sym_for_statement_token1] = ACTIONS(1003), + [aux_sym_for_statement_token2] = ACTIONS(1003), + [aux_sym_foreach_statement_token1] = ACTIONS(1003), + [aux_sym_foreach_statement_token2] = ACTIONS(1003), + [aux_sym_if_statement_token1] = ACTIONS(1003), + [aux_sym_if_statement_token2] = ACTIONS(1003), + [aux_sym_else_if_clause_token1] = ACTIONS(1011), + [aux_sym_else_clause_token1] = ACTIONS(1013), + [aux_sym_match_expression_token1] = ACTIONS(1003), + [aux_sym_match_default_expression_token1] = ACTIONS(1003), + [aux_sym_switch_statement_token1] = ACTIONS(1003), + [aux_sym_switch_block_token1] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [aux_sym_clone_expression_token1] = ACTIONS(1003), + [aux_sym_print_intrinsic_token1] = ACTIONS(1003), + [aux_sym_object_creation_expression_token1] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [aux_sym__list_destructing_token1] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_self] = ACTIONS(1003), + [anon_sym_parent] = ACTIONS(1003), + [aux_sym__argument_name_token1] = ACTIONS(1003), + [aux_sym__argument_name_token2] = ACTIONS(1003), + [anon_sym_POUND_LBRACK] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(1001), + [aux_sym_encapsed_string_token1] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1001), + [aux_sym_string_token1] = ACTIONS(1001), + [anon_sym_LT_LT_LT] = ACTIONS(1001), + [anon_sym_BQUOTE] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1001), + [aux_sym_yield_expression_token1] = ACTIONS(1003), + [aux_sym_include_expression_token1] = ACTIONS(1003), + [aux_sym_include_once_expression_token1] = ACTIONS(1003), + [aux_sym_require_expression_token1] = ACTIONS(1003), + [aux_sym_require_once_expression_token1] = ACTIONS(1003), [sym_comment] = ACTIONS(5), }, [428] = { @@ -65249,2733 +65206,2733 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_else_if_clause] = STATE(509), [sym_else_clause] = STATE(508), [aux_sym_if_statement_repeat1] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(989), - [sym_name] = ACTIONS(991), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(989), - [aux_sym_function_static_declaration_token1] = ACTIONS(991), - [aux_sym_global_declaration_token1] = ACTIONS(991), - [aux_sym_namespace_definition_token1] = ACTIONS(991), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(991), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(991), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(991), - [anon_sym_BSLASH] = ACTIONS(989), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_RBRACE] = ACTIONS(989), - [aux_sym_trait_declaration_token1] = ACTIONS(991), - [aux_sym_interface_declaration_token1] = ACTIONS(991), - [aux_sym_enum_declaration_token1] = ACTIONS(991), - [aux_sym_enum_case_token1] = ACTIONS(991), - [aux_sym_class_declaration_token1] = ACTIONS(991), - [aux_sym_final_modifier_token1] = ACTIONS(991), - [aux_sym_abstract_modifier_token1] = ACTIONS(991), - [aux_sym_readonly_modifier_token1] = ACTIONS(991), - [aux_sym_visibility_modifier_token1] = ACTIONS(991), - [aux_sym_visibility_modifier_token2] = ACTIONS(991), - [aux_sym_visibility_modifier_token3] = ACTIONS(991), - [aux_sym__arrow_function_header_token1] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(989), - [aux_sym_cast_type_token1] = ACTIONS(991), - [aux_sym_echo_statement_token1] = ACTIONS(991), - [anon_sym_unset] = ACTIONS(991), - [aux_sym_declare_statement_token1] = ACTIONS(991), - [aux_sym_declare_statement_token2] = ACTIONS(991), - [sym_float] = ACTIONS(991), - [aux_sym_try_statement_token1] = ACTIONS(991), - [aux_sym_goto_statement_token1] = ACTIONS(991), - [aux_sym_continue_statement_token1] = ACTIONS(991), - [aux_sym_break_statement_token1] = ACTIONS(991), - [sym_integer] = ACTIONS(991), - [aux_sym_return_statement_token1] = ACTIONS(991), - [aux_sym_throw_expression_token1] = ACTIONS(991), - [aux_sym_while_statement_token1] = ACTIONS(991), - [aux_sym_while_statement_token2] = ACTIONS(991), - [aux_sym_do_statement_token1] = ACTIONS(991), - [aux_sym_for_statement_token1] = ACTIONS(991), - [aux_sym_for_statement_token2] = ACTIONS(991), - [aux_sym_foreach_statement_token1] = ACTIONS(991), - [aux_sym_foreach_statement_token2] = ACTIONS(991), - [aux_sym_if_statement_token1] = ACTIONS(991), - [aux_sym_if_statement_token2] = ACTIONS(991), - [aux_sym_else_if_clause_token1] = ACTIONS(1009), - [aux_sym_else_clause_token1] = ACTIONS(1011), - [aux_sym_match_expression_token1] = ACTIONS(991), - [aux_sym_match_default_expression_token1] = ACTIONS(991), - [aux_sym_switch_statement_token1] = ACTIONS(991), - [aux_sym_switch_block_token1] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AT] = ACTIONS(989), - [aux_sym_clone_expression_token1] = ACTIONS(991), - [aux_sym_print_intrinsic_token1] = ACTIONS(991), - [aux_sym_object_creation_expression_token1] = ACTIONS(991), - [anon_sym_DASH_DASH] = ACTIONS(989), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [aux_sym__list_destructing_token1] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_self] = ACTIONS(991), - [anon_sym_parent] = ACTIONS(991), - [aux_sym__argument_name_token1] = ACTIONS(991), - [aux_sym__argument_name_token2] = ACTIONS(991), - [anon_sym_POUND_LBRACK] = ACTIONS(989), - [anon_sym_SQUOTE] = ACTIONS(989), - [aux_sym_encapsed_string_token1] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [aux_sym_string_token1] = ACTIONS(989), - [anon_sym_LT_LT_LT] = ACTIONS(989), - [anon_sym_BQUOTE] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [aux_sym_yield_expression_token1] = ACTIONS(991), - [aux_sym_include_expression_token1] = ACTIONS(991), - [aux_sym_include_once_expression_token1] = ACTIONS(991), - [aux_sym_require_expression_token1] = ACTIONS(991), - [aux_sym_require_once_expression_token1] = ACTIONS(991), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_name] = ACTIONS(993), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(991), + [aux_sym_function_static_declaration_token1] = ACTIONS(993), + [aux_sym_global_declaration_token1] = ACTIONS(993), + [aux_sym_namespace_definition_token1] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(993), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(993), + [anon_sym_BSLASH] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [aux_sym_trait_declaration_token1] = ACTIONS(993), + [aux_sym_interface_declaration_token1] = ACTIONS(993), + [aux_sym_enum_declaration_token1] = ACTIONS(993), + [aux_sym_enum_case_token1] = ACTIONS(993), + [aux_sym_class_declaration_token1] = ACTIONS(993), + [aux_sym_final_modifier_token1] = ACTIONS(993), + [aux_sym_abstract_modifier_token1] = ACTIONS(993), + [aux_sym_readonly_modifier_token1] = ACTIONS(993), + [aux_sym_visibility_modifier_token1] = ACTIONS(993), + [aux_sym_visibility_modifier_token2] = ACTIONS(993), + [aux_sym_visibility_modifier_token3] = ACTIONS(993), + [aux_sym__arrow_function_header_token1] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(991), + [aux_sym_cast_type_token1] = ACTIONS(993), + [aux_sym_echo_statement_token1] = ACTIONS(993), + [anon_sym_unset] = ACTIONS(993), + [aux_sym_declare_statement_token1] = ACTIONS(993), + [aux_sym_declare_statement_token2] = ACTIONS(993), + [sym_float] = ACTIONS(993), + [aux_sym_try_statement_token1] = ACTIONS(993), + [aux_sym_goto_statement_token1] = ACTIONS(993), + [aux_sym_continue_statement_token1] = ACTIONS(993), + [aux_sym_break_statement_token1] = ACTIONS(993), + [sym_integer] = ACTIONS(993), + [aux_sym_return_statement_token1] = ACTIONS(993), + [aux_sym_throw_expression_token1] = ACTIONS(993), + [aux_sym_while_statement_token1] = ACTIONS(993), + [aux_sym_while_statement_token2] = ACTIONS(993), + [aux_sym_do_statement_token1] = ACTIONS(993), + [aux_sym_for_statement_token1] = ACTIONS(993), + [aux_sym_for_statement_token2] = ACTIONS(993), + [aux_sym_foreach_statement_token1] = ACTIONS(993), + [aux_sym_foreach_statement_token2] = ACTIONS(993), + [aux_sym_if_statement_token1] = ACTIONS(993), + [aux_sym_if_statement_token2] = ACTIONS(993), + [aux_sym_else_if_clause_token1] = ACTIONS(1011), + [aux_sym_else_clause_token1] = ACTIONS(1013), + [aux_sym_match_expression_token1] = ACTIONS(993), + [aux_sym_match_default_expression_token1] = ACTIONS(993), + [aux_sym_switch_statement_token1] = ACTIONS(993), + [aux_sym_switch_block_token1] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [aux_sym_clone_expression_token1] = ACTIONS(993), + [aux_sym_print_intrinsic_token1] = ACTIONS(993), + [aux_sym_object_creation_expression_token1] = ACTIONS(993), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [aux_sym__list_destructing_token1] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_self] = ACTIONS(993), + [anon_sym_parent] = ACTIONS(993), + [aux_sym__argument_name_token1] = ACTIONS(993), + [aux_sym__argument_name_token2] = ACTIONS(993), + [anon_sym_POUND_LBRACK] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), + [aux_sym_encapsed_string_token1] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [aux_sym_string_token1] = ACTIONS(991), + [anon_sym_LT_LT_LT] = ACTIONS(991), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(991), + [aux_sym_yield_expression_token1] = ACTIONS(993), + [aux_sym_include_expression_token1] = ACTIONS(993), + [aux_sym_include_once_expression_token1] = ACTIONS(993), + [aux_sym_require_expression_token1] = ACTIONS(993), + [aux_sym_require_once_expression_token1] = ACTIONS(993), [sym_comment] = ACTIONS(5), }, [429] = { [sym_text_interpolation] = STATE(429), [sym_else_if_clause] = STATE(509), [aux_sym_if_statement_repeat1] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(1013), - [sym_name] = ACTIONS(1015), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1013), - [aux_sym_function_static_declaration_token1] = ACTIONS(1015), - [aux_sym_global_declaration_token1] = ACTIONS(1015), - [aux_sym_namespace_definition_token1] = ACTIONS(1015), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1015), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1015), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1015), - [anon_sym_BSLASH] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [aux_sym_trait_declaration_token1] = ACTIONS(1015), - [aux_sym_interface_declaration_token1] = ACTIONS(1015), - [aux_sym_enum_declaration_token1] = ACTIONS(1015), - [aux_sym_enum_case_token1] = ACTIONS(1015), - [aux_sym_class_declaration_token1] = ACTIONS(1015), - [aux_sym_final_modifier_token1] = ACTIONS(1015), - [aux_sym_abstract_modifier_token1] = ACTIONS(1015), - [aux_sym_readonly_modifier_token1] = ACTIONS(1015), - [aux_sym_visibility_modifier_token1] = ACTIONS(1015), - [aux_sym_visibility_modifier_token2] = ACTIONS(1015), - [aux_sym_visibility_modifier_token3] = ACTIONS(1015), - [aux_sym__arrow_function_header_token1] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1013), - [aux_sym_cast_type_token1] = ACTIONS(1015), - [aux_sym_echo_statement_token1] = ACTIONS(1015), - [anon_sym_unset] = ACTIONS(1015), - [aux_sym_declare_statement_token1] = ACTIONS(1015), - [aux_sym_declare_statement_token2] = ACTIONS(1015), - [sym_float] = ACTIONS(1015), - [aux_sym_try_statement_token1] = ACTIONS(1015), - [aux_sym_goto_statement_token1] = ACTIONS(1015), - [aux_sym_continue_statement_token1] = ACTIONS(1015), - [aux_sym_break_statement_token1] = ACTIONS(1015), - [sym_integer] = ACTIONS(1015), - [aux_sym_return_statement_token1] = ACTIONS(1015), - [aux_sym_throw_expression_token1] = ACTIONS(1015), - [aux_sym_while_statement_token1] = ACTIONS(1015), - [aux_sym_while_statement_token2] = ACTIONS(1015), - [aux_sym_do_statement_token1] = ACTIONS(1015), - [aux_sym_for_statement_token1] = ACTIONS(1015), - [aux_sym_for_statement_token2] = ACTIONS(1015), - [aux_sym_foreach_statement_token1] = ACTIONS(1015), - [aux_sym_foreach_statement_token2] = ACTIONS(1015), - [aux_sym_if_statement_token1] = ACTIONS(1015), - [aux_sym_if_statement_token2] = ACTIONS(1015), - [aux_sym_else_if_clause_token1] = ACTIONS(1017), - [aux_sym_else_clause_token1] = ACTIONS(1015), - [aux_sym_match_expression_token1] = ACTIONS(1015), - [aux_sym_match_default_expression_token1] = ACTIONS(1015), - [aux_sym_switch_statement_token1] = ACTIONS(1015), - [aux_sym_switch_block_token1] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(1013), - [aux_sym_clone_expression_token1] = ACTIONS(1015), - [aux_sym_print_intrinsic_token1] = ACTIONS(1015), - [aux_sym_object_creation_expression_token1] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(1013), - [aux_sym__list_destructing_token1] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_self] = ACTIONS(1015), - [anon_sym_parent] = ACTIONS(1015), - [aux_sym__argument_name_token1] = ACTIONS(1015), - [aux_sym__argument_name_token2] = ACTIONS(1015), - [anon_sym_POUND_LBRACK] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1013), - [aux_sym_encapsed_string_token1] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [aux_sym_string_token1] = ACTIONS(1013), - [anon_sym_LT_LT_LT] = ACTIONS(1013), - [anon_sym_BQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1013), - [aux_sym_yield_expression_token1] = ACTIONS(1015), - [aux_sym_include_expression_token1] = ACTIONS(1015), - [aux_sym_include_once_expression_token1] = ACTIONS(1015), - [aux_sym_require_expression_token1] = ACTIONS(1015), - [aux_sym_require_once_expression_token1] = ACTIONS(1015), + [ts_builtin_sym_end] = ACTIONS(1015), + [sym_name] = ACTIONS(1017), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1015), + [aux_sym_function_static_declaration_token1] = ACTIONS(1017), + [aux_sym_global_declaration_token1] = ACTIONS(1017), + [aux_sym_namespace_definition_token1] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1017), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1017), + [anon_sym_BSLASH] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [aux_sym_trait_declaration_token1] = ACTIONS(1017), + [aux_sym_interface_declaration_token1] = ACTIONS(1017), + [aux_sym_enum_declaration_token1] = ACTIONS(1017), + [aux_sym_enum_case_token1] = ACTIONS(1017), + [aux_sym_class_declaration_token1] = ACTIONS(1017), + [aux_sym_final_modifier_token1] = ACTIONS(1017), + [aux_sym_abstract_modifier_token1] = ACTIONS(1017), + [aux_sym_readonly_modifier_token1] = ACTIONS(1017), + [aux_sym_visibility_modifier_token1] = ACTIONS(1017), + [aux_sym_visibility_modifier_token2] = ACTIONS(1017), + [aux_sym_visibility_modifier_token3] = ACTIONS(1017), + [aux_sym__arrow_function_header_token1] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1015), + [aux_sym_cast_type_token1] = ACTIONS(1017), + [aux_sym_echo_statement_token1] = ACTIONS(1017), + [anon_sym_unset] = ACTIONS(1017), + [aux_sym_declare_statement_token1] = ACTIONS(1017), + [aux_sym_declare_statement_token2] = ACTIONS(1017), + [sym_float] = ACTIONS(1017), + [aux_sym_try_statement_token1] = ACTIONS(1017), + [aux_sym_goto_statement_token1] = ACTIONS(1017), + [aux_sym_continue_statement_token1] = ACTIONS(1017), + [aux_sym_break_statement_token1] = ACTIONS(1017), + [sym_integer] = ACTIONS(1017), + [aux_sym_return_statement_token1] = ACTIONS(1017), + [aux_sym_throw_expression_token1] = ACTIONS(1017), + [aux_sym_while_statement_token1] = ACTIONS(1017), + [aux_sym_while_statement_token2] = ACTIONS(1017), + [aux_sym_do_statement_token1] = ACTIONS(1017), + [aux_sym_for_statement_token1] = ACTIONS(1017), + [aux_sym_for_statement_token2] = ACTIONS(1017), + [aux_sym_foreach_statement_token1] = ACTIONS(1017), + [aux_sym_foreach_statement_token2] = ACTIONS(1017), + [aux_sym_if_statement_token1] = ACTIONS(1017), + [aux_sym_if_statement_token2] = ACTIONS(1017), + [aux_sym_else_if_clause_token1] = ACTIONS(1019), + [aux_sym_else_clause_token1] = ACTIONS(1017), + [aux_sym_match_expression_token1] = ACTIONS(1017), + [aux_sym_match_default_expression_token1] = ACTIONS(1017), + [aux_sym_switch_statement_token1] = ACTIONS(1017), + [aux_sym_switch_block_token1] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_TILDE] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1015), + [aux_sym_clone_expression_token1] = ACTIONS(1017), + [aux_sym_print_intrinsic_token1] = ACTIONS(1017), + [aux_sym_object_creation_expression_token1] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(1015), + [aux_sym__list_destructing_token1] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1015), + [anon_sym_self] = ACTIONS(1017), + [anon_sym_parent] = ACTIONS(1017), + [aux_sym__argument_name_token1] = ACTIONS(1017), + [aux_sym__argument_name_token2] = ACTIONS(1017), + [anon_sym_POUND_LBRACK] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1015), + [aux_sym_encapsed_string_token1] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1015), + [aux_sym_string_token1] = ACTIONS(1015), + [anon_sym_LT_LT_LT] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1015), + [aux_sym_yield_expression_token1] = ACTIONS(1017), + [aux_sym_include_expression_token1] = ACTIONS(1017), + [aux_sym_include_once_expression_token1] = ACTIONS(1017), + [aux_sym_require_expression_token1] = ACTIONS(1017), + [aux_sym_require_once_expression_token1] = ACTIONS(1017), [sym_comment] = ACTIONS(5), }, [430] = { [sym_text_interpolation] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1020), - [sym_name] = ACTIONS(1022), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1020), - [aux_sym_function_static_declaration_token1] = ACTIONS(1022), - [aux_sym_global_declaration_token1] = ACTIONS(1022), - [aux_sym_namespace_definition_token1] = ACTIONS(1022), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1022), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1022), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1022), - [anon_sym_BSLASH] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [aux_sym_trait_declaration_token1] = ACTIONS(1022), - [aux_sym_interface_declaration_token1] = ACTIONS(1022), - [aux_sym_enum_declaration_token1] = ACTIONS(1022), - [aux_sym_enum_case_token1] = ACTIONS(1022), - [aux_sym_class_declaration_token1] = ACTIONS(1022), - [aux_sym_final_modifier_token1] = ACTIONS(1022), - [aux_sym_abstract_modifier_token1] = ACTIONS(1022), - [aux_sym_readonly_modifier_token1] = ACTIONS(1022), - [aux_sym_visibility_modifier_token1] = ACTIONS(1022), - [aux_sym_visibility_modifier_token2] = ACTIONS(1022), - [aux_sym_visibility_modifier_token3] = ACTIONS(1022), - [aux_sym__arrow_function_header_token1] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1020), - [aux_sym_cast_type_token1] = ACTIONS(1022), - [aux_sym_echo_statement_token1] = ACTIONS(1022), - [anon_sym_unset] = ACTIONS(1022), - [aux_sym_declare_statement_token1] = ACTIONS(1022), - [aux_sym_declare_statement_token2] = ACTIONS(1022), - [sym_float] = ACTIONS(1022), - [aux_sym_try_statement_token1] = ACTIONS(1022), - [aux_sym_catch_clause_token1] = ACTIONS(1022), - [aux_sym_finally_clause_token1] = ACTIONS(1022), - [aux_sym_goto_statement_token1] = ACTIONS(1022), - [aux_sym_continue_statement_token1] = ACTIONS(1022), - [aux_sym_break_statement_token1] = ACTIONS(1022), - [sym_integer] = ACTIONS(1022), - [aux_sym_return_statement_token1] = ACTIONS(1022), - [aux_sym_throw_expression_token1] = ACTIONS(1022), - [aux_sym_while_statement_token1] = ACTIONS(1022), - [aux_sym_while_statement_token2] = ACTIONS(1022), - [aux_sym_do_statement_token1] = ACTIONS(1022), - [aux_sym_for_statement_token1] = ACTIONS(1022), - [aux_sym_for_statement_token2] = ACTIONS(1022), - [aux_sym_foreach_statement_token1] = ACTIONS(1022), - [aux_sym_foreach_statement_token2] = ACTIONS(1022), - [aux_sym_if_statement_token1] = ACTIONS(1022), - [aux_sym_if_statement_token2] = ACTIONS(1022), - [aux_sym_else_if_clause_token1] = ACTIONS(1022), - [aux_sym_else_clause_token1] = ACTIONS(1022), - [aux_sym_match_expression_token1] = ACTIONS(1022), - [aux_sym_match_default_expression_token1] = ACTIONS(1022), - [aux_sym_switch_statement_token1] = ACTIONS(1022), - [aux_sym_switch_block_token1] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1020), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_AT] = ACTIONS(1020), - [aux_sym_clone_expression_token1] = ACTIONS(1022), - [aux_sym_print_intrinsic_token1] = ACTIONS(1022), - [aux_sym_object_creation_expression_token1] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1020), - [anon_sym_PLUS_PLUS] = ACTIONS(1020), - [aux_sym__list_destructing_token1] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(1020), - [anon_sym_self] = ACTIONS(1022), - [anon_sym_parent] = ACTIONS(1022), - [aux_sym__argument_name_token1] = ACTIONS(1022), - [aux_sym__argument_name_token2] = ACTIONS(1022), - [anon_sym_POUND_LBRACK] = ACTIONS(1020), - [anon_sym_SQUOTE] = ACTIONS(1020), - [aux_sym_encapsed_string_token1] = ACTIONS(1020), - [anon_sym_DQUOTE] = ACTIONS(1020), - [aux_sym_string_token1] = ACTIONS(1020), - [anon_sym_LT_LT_LT] = ACTIONS(1020), - [anon_sym_BQUOTE] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1020), - [aux_sym_yield_expression_token1] = ACTIONS(1022), - [aux_sym_include_expression_token1] = ACTIONS(1022), - [aux_sym_include_once_expression_token1] = ACTIONS(1022), - [aux_sym_require_expression_token1] = ACTIONS(1022), - [aux_sym_require_once_expression_token1] = ACTIONS(1022), + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_name] = ACTIONS(1024), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1022), + [aux_sym_function_static_declaration_token1] = ACTIONS(1024), + [aux_sym_global_declaration_token1] = ACTIONS(1024), + [aux_sym_namespace_definition_token1] = ACTIONS(1024), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1024), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1024), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1024), + [anon_sym_BSLASH] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [aux_sym_trait_declaration_token1] = ACTIONS(1024), + [aux_sym_interface_declaration_token1] = ACTIONS(1024), + [aux_sym_enum_declaration_token1] = ACTIONS(1024), + [aux_sym_enum_case_token1] = ACTIONS(1024), + [aux_sym_class_declaration_token1] = ACTIONS(1024), + [aux_sym_final_modifier_token1] = ACTIONS(1024), + [aux_sym_abstract_modifier_token1] = ACTIONS(1024), + [aux_sym_readonly_modifier_token1] = ACTIONS(1024), + [aux_sym_visibility_modifier_token1] = ACTIONS(1024), + [aux_sym_visibility_modifier_token2] = ACTIONS(1024), + [aux_sym_visibility_modifier_token3] = ACTIONS(1024), + [aux_sym__arrow_function_header_token1] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1022), + [aux_sym_cast_type_token1] = ACTIONS(1024), + [aux_sym_echo_statement_token1] = ACTIONS(1024), + [anon_sym_unset] = ACTIONS(1024), + [aux_sym_declare_statement_token1] = ACTIONS(1024), + [aux_sym_declare_statement_token2] = ACTIONS(1024), + [sym_float] = ACTIONS(1024), + [aux_sym_try_statement_token1] = ACTIONS(1024), + [aux_sym_catch_clause_token1] = ACTIONS(1024), + [aux_sym_finally_clause_token1] = ACTIONS(1024), + [aux_sym_goto_statement_token1] = ACTIONS(1024), + [aux_sym_continue_statement_token1] = ACTIONS(1024), + [aux_sym_break_statement_token1] = ACTIONS(1024), + [sym_integer] = ACTIONS(1024), + [aux_sym_return_statement_token1] = ACTIONS(1024), + [aux_sym_throw_expression_token1] = ACTIONS(1024), + [aux_sym_while_statement_token1] = ACTIONS(1024), + [aux_sym_while_statement_token2] = ACTIONS(1024), + [aux_sym_do_statement_token1] = ACTIONS(1024), + [aux_sym_for_statement_token1] = ACTIONS(1024), + [aux_sym_for_statement_token2] = ACTIONS(1024), + [aux_sym_foreach_statement_token1] = ACTIONS(1024), + [aux_sym_foreach_statement_token2] = ACTIONS(1024), + [aux_sym_if_statement_token1] = ACTIONS(1024), + [aux_sym_if_statement_token2] = ACTIONS(1024), + [aux_sym_else_if_clause_token1] = ACTIONS(1024), + [aux_sym_else_clause_token1] = ACTIONS(1024), + [aux_sym_match_expression_token1] = ACTIONS(1024), + [aux_sym_match_default_expression_token1] = ACTIONS(1024), + [aux_sym_switch_statement_token1] = ACTIONS(1024), + [aux_sym_switch_block_token1] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1022), + [aux_sym_clone_expression_token1] = ACTIONS(1024), + [aux_sym_print_intrinsic_token1] = ACTIONS(1024), + [aux_sym_object_creation_expression_token1] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [aux_sym__list_destructing_token1] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_self] = ACTIONS(1024), + [anon_sym_parent] = ACTIONS(1024), + [aux_sym__argument_name_token1] = ACTIONS(1024), + [aux_sym__argument_name_token2] = ACTIONS(1024), + [anon_sym_POUND_LBRACK] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [aux_sym_encapsed_string_token1] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [aux_sym_string_token1] = ACTIONS(1022), + [anon_sym_LT_LT_LT] = ACTIONS(1022), + [anon_sym_BQUOTE] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [aux_sym_yield_expression_token1] = ACTIONS(1024), + [aux_sym_include_expression_token1] = ACTIONS(1024), + [aux_sym_include_once_expression_token1] = ACTIONS(1024), + [aux_sym_require_expression_token1] = ACTIONS(1024), + [aux_sym_require_once_expression_token1] = ACTIONS(1024), [sym_comment] = ACTIONS(5), }, [431] = { [sym_text_interpolation] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(1024), - [sym_name] = ACTIONS(1026), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1024), - [aux_sym_function_static_declaration_token1] = ACTIONS(1026), - [aux_sym_global_declaration_token1] = ACTIONS(1026), - [aux_sym_namespace_definition_token1] = ACTIONS(1026), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1026), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1026), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1026), - [anon_sym_BSLASH] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [aux_sym_trait_declaration_token1] = ACTIONS(1026), - [aux_sym_interface_declaration_token1] = ACTIONS(1026), - [aux_sym_enum_declaration_token1] = ACTIONS(1026), - [aux_sym_enum_case_token1] = ACTIONS(1026), - [aux_sym_class_declaration_token1] = ACTIONS(1026), - [aux_sym_final_modifier_token1] = ACTIONS(1026), - [aux_sym_abstract_modifier_token1] = ACTIONS(1026), - [aux_sym_readonly_modifier_token1] = ACTIONS(1026), - [aux_sym_visibility_modifier_token1] = ACTIONS(1026), - [aux_sym_visibility_modifier_token2] = ACTIONS(1026), - [aux_sym_visibility_modifier_token3] = ACTIONS(1026), - [aux_sym__arrow_function_header_token1] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1024), - [aux_sym_cast_type_token1] = ACTIONS(1026), - [aux_sym_echo_statement_token1] = ACTIONS(1026), - [anon_sym_unset] = ACTIONS(1026), - [aux_sym_declare_statement_token1] = ACTIONS(1026), - [aux_sym_declare_statement_token2] = ACTIONS(1026), - [sym_float] = ACTIONS(1026), - [aux_sym_try_statement_token1] = ACTIONS(1026), - [aux_sym_catch_clause_token1] = ACTIONS(1026), - [aux_sym_finally_clause_token1] = ACTIONS(1026), - [aux_sym_goto_statement_token1] = ACTIONS(1026), - [aux_sym_continue_statement_token1] = ACTIONS(1026), - [aux_sym_break_statement_token1] = ACTIONS(1026), - [sym_integer] = ACTIONS(1026), - [aux_sym_return_statement_token1] = ACTIONS(1026), - [aux_sym_throw_expression_token1] = ACTIONS(1026), - [aux_sym_while_statement_token1] = ACTIONS(1026), - [aux_sym_while_statement_token2] = ACTIONS(1026), - [aux_sym_do_statement_token1] = ACTIONS(1026), - [aux_sym_for_statement_token1] = ACTIONS(1026), - [aux_sym_for_statement_token2] = ACTIONS(1026), - [aux_sym_foreach_statement_token1] = ACTIONS(1026), - [aux_sym_foreach_statement_token2] = ACTIONS(1026), - [aux_sym_if_statement_token1] = ACTIONS(1026), - [aux_sym_if_statement_token2] = ACTIONS(1026), - [aux_sym_else_if_clause_token1] = ACTIONS(1026), - [aux_sym_else_clause_token1] = ACTIONS(1026), - [aux_sym_match_expression_token1] = ACTIONS(1026), - [aux_sym_match_default_expression_token1] = ACTIONS(1026), - [aux_sym_switch_statement_token1] = ACTIONS(1026), - [aux_sym_switch_block_token1] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_AT] = ACTIONS(1024), - [aux_sym_clone_expression_token1] = ACTIONS(1026), - [aux_sym_print_intrinsic_token1] = ACTIONS(1026), - [aux_sym_object_creation_expression_token1] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [aux_sym__list_destructing_token1] = ACTIONS(1026), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_self] = ACTIONS(1026), - [anon_sym_parent] = ACTIONS(1026), - [aux_sym__argument_name_token1] = ACTIONS(1026), - [aux_sym__argument_name_token2] = ACTIONS(1026), - [anon_sym_POUND_LBRACK] = ACTIONS(1024), - [anon_sym_SQUOTE] = ACTIONS(1024), - [aux_sym_encapsed_string_token1] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [aux_sym_string_token1] = ACTIONS(1024), - [anon_sym_LT_LT_LT] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [aux_sym_yield_expression_token1] = ACTIONS(1026), - [aux_sym_include_expression_token1] = ACTIONS(1026), - [aux_sym_include_once_expression_token1] = ACTIONS(1026), - [aux_sym_require_expression_token1] = ACTIONS(1026), - [aux_sym_require_once_expression_token1] = ACTIONS(1026), + [ts_builtin_sym_end] = ACTIONS(1026), + [sym_name] = ACTIONS(1028), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1026), + [aux_sym_function_static_declaration_token1] = ACTIONS(1028), + [aux_sym_global_declaration_token1] = ACTIONS(1028), + [aux_sym_namespace_definition_token1] = ACTIONS(1028), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1028), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1028), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1028), + [anon_sym_BSLASH] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [aux_sym_trait_declaration_token1] = ACTIONS(1028), + [aux_sym_interface_declaration_token1] = ACTIONS(1028), + [aux_sym_enum_declaration_token1] = ACTIONS(1028), + [aux_sym_enum_case_token1] = ACTIONS(1028), + [aux_sym_class_declaration_token1] = ACTIONS(1028), + [aux_sym_final_modifier_token1] = ACTIONS(1028), + [aux_sym_abstract_modifier_token1] = ACTIONS(1028), + [aux_sym_readonly_modifier_token1] = ACTIONS(1028), + [aux_sym_visibility_modifier_token1] = ACTIONS(1028), + [aux_sym_visibility_modifier_token2] = ACTIONS(1028), + [aux_sym_visibility_modifier_token3] = ACTIONS(1028), + [aux_sym__arrow_function_header_token1] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1026), + [aux_sym_cast_type_token1] = ACTIONS(1028), + [aux_sym_echo_statement_token1] = ACTIONS(1028), + [anon_sym_unset] = ACTIONS(1028), + [aux_sym_declare_statement_token1] = ACTIONS(1028), + [aux_sym_declare_statement_token2] = ACTIONS(1028), + [sym_float] = ACTIONS(1028), + [aux_sym_try_statement_token1] = ACTIONS(1028), + [aux_sym_catch_clause_token1] = ACTIONS(1028), + [aux_sym_finally_clause_token1] = ACTIONS(1028), + [aux_sym_goto_statement_token1] = ACTIONS(1028), + [aux_sym_continue_statement_token1] = ACTIONS(1028), + [aux_sym_break_statement_token1] = ACTIONS(1028), + [sym_integer] = ACTIONS(1028), + [aux_sym_return_statement_token1] = ACTIONS(1028), + [aux_sym_throw_expression_token1] = ACTIONS(1028), + [aux_sym_while_statement_token1] = ACTIONS(1028), + [aux_sym_while_statement_token2] = ACTIONS(1028), + [aux_sym_do_statement_token1] = ACTIONS(1028), + [aux_sym_for_statement_token1] = ACTIONS(1028), + [aux_sym_for_statement_token2] = ACTIONS(1028), + [aux_sym_foreach_statement_token1] = ACTIONS(1028), + [aux_sym_foreach_statement_token2] = ACTIONS(1028), + [aux_sym_if_statement_token1] = ACTIONS(1028), + [aux_sym_if_statement_token2] = ACTIONS(1028), + [aux_sym_else_if_clause_token1] = ACTIONS(1028), + [aux_sym_else_clause_token1] = ACTIONS(1028), + [aux_sym_match_expression_token1] = ACTIONS(1028), + [aux_sym_match_default_expression_token1] = ACTIONS(1028), + [aux_sym_switch_statement_token1] = ACTIONS(1028), + [aux_sym_switch_block_token1] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_AT] = ACTIONS(1026), + [aux_sym_clone_expression_token1] = ACTIONS(1028), + [aux_sym_print_intrinsic_token1] = ACTIONS(1028), + [aux_sym_object_creation_expression_token1] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [aux_sym__list_destructing_token1] = ACTIONS(1028), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_self] = ACTIONS(1028), + [anon_sym_parent] = ACTIONS(1028), + [aux_sym__argument_name_token1] = ACTIONS(1028), + [aux_sym__argument_name_token2] = ACTIONS(1028), + [anon_sym_POUND_LBRACK] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [aux_sym_encapsed_string_token1] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [aux_sym_string_token1] = ACTIONS(1026), + [anon_sym_LT_LT_LT] = ACTIONS(1026), + [anon_sym_BQUOTE] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [aux_sym_yield_expression_token1] = ACTIONS(1028), + [aux_sym_include_expression_token1] = ACTIONS(1028), + [aux_sym_include_once_expression_token1] = ACTIONS(1028), + [aux_sym_require_expression_token1] = ACTIONS(1028), + [aux_sym_require_once_expression_token1] = ACTIONS(1028), [sym_comment] = ACTIONS(5), }, [432] = { [sym_text_interpolation] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(1028), - [sym_name] = ACTIONS(1030), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1028), - [aux_sym_function_static_declaration_token1] = ACTIONS(1030), - [aux_sym_global_declaration_token1] = ACTIONS(1030), - [aux_sym_namespace_definition_token1] = ACTIONS(1030), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1030), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1030), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1030), - [anon_sym_BSLASH] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [aux_sym_trait_declaration_token1] = ACTIONS(1030), - [aux_sym_interface_declaration_token1] = ACTIONS(1030), - [aux_sym_enum_declaration_token1] = ACTIONS(1030), - [aux_sym_enum_case_token1] = ACTIONS(1030), - [aux_sym_class_declaration_token1] = ACTIONS(1030), - [aux_sym_final_modifier_token1] = ACTIONS(1030), - [aux_sym_abstract_modifier_token1] = ACTIONS(1030), - [aux_sym_readonly_modifier_token1] = ACTIONS(1030), - [aux_sym_visibility_modifier_token1] = ACTIONS(1030), - [aux_sym_visibility_modifier_token2] = ACTIONS(1030), - [aux_sym_visibility_modifier_token3] = ACTIONS(1030), - [aux_sym__arrow_function_header_token1] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1028), - [aux_sym_cast_type_token1] = ACTIONS(1030), - [aux_sym_echo_statement_token1] = ACTIONS(1030), - [anon_sym_unset] = ACTIONS(1030), - [aux_sym_declare_statement_token1] = ACTIONS(1030), - [aux_sym_declare_statement_token2] = ACTIONS(1030), - [sym_float] = ACTIONS(1030), - [aux_sym_try_statement_token1] = ACTIONS(1030), - [aux_sym_catch_clause_token1] = ACTIONS(1030), - [aux_sym_finally_clause_token1] = ACTIONS(1030), - [aux_sym_goto_statement_token1] = ACTIONS(1030), - [aux_sym_continue_statement_token1] = ACTIONS(1030), - [aux_sym_break_statement_token1] = ACTIONS(1030), - [sym_integer] = ACTIONS(1030), - [aux_sym_return_statement_token1] = ACTIONS(1030), - [aux_sym_throw_expression_token1] = ACTIONS(1030), - [aux_sym_while_statement_token1] = ACTIONS(1030), - [aux_sym_while_statement_token2] = ACTIONS(1030), - [aux_sym_do_statement_token1] = ACTIONS(1030), - [aux_sym_for_statement_token1] = ACTIONS(1030), - [aux_sym_for_statement_token2] = ACTIONS(1030), - [aux_sym_foreach_statement_token1] = ACTIONS(1030), - [aux_sym_foreach_statement_token2] = ACTIONS(1030), - [aux_sym_if_statement_token1] = ACTIONS(1030), - [aux_sym_if_statement_token2] = ACTIONS(1030), - [aux_sym_else_if_clause_token1] = ACTIONS(1030), - [aux_sym_else_clause_token1] = ACTIONS(1030), - [aux_sym_match_expression_token1] = ACTIONS(1030), - [aux_sym_match_default_expression_token1] = ACTIONS(1030), - [aux_sym_switch_statement_token1] = ACTIONS(1030), - [aux_sym_switch_block_token1] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1028), - [anon_sym_AT] = ACTIONS(1028), - [aux_sym_clone_expression_token1] = ACTIONS(1030), - [aux_sym_print_intrinsic_token1] = ACTIONS(1030), - [aux_sym_object_creation_expression_token1] = ACTIONS(1030), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [anon_sym_PLUS_PLUS] = ACTIONS(1028), - [aux_sym__list_destructing_token1] = ACTIONS(1030), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_self] = ACTIONS(1030), - [anon_sym_parent] = ACTIONS(1030), - [aux_sym__argument_name_token1] = ACTIONS(1030), - [aux_sym__argument_name_token2] = ACTIONS(1030), - [anon_sym_POUND_LBRACK] = ACTIONS(1028), - [anon_sym_SQUOTE] = ACTIONS(1028), - [aux_sym_encapsed_string_token1] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [aux_sym_string_token1] = ACTIONS(1028), - [anon_sym_LT_LT_LT] = ACTIONS(1028), - [anon_sym_BQUOTE] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1028), - [aux_sym_yield_expression_token1] = ACTIONS(1030), - [aux_sym_include_expression_token1] = ACTIONS(1030), - [aux_sym_include_once_expression_token1] = ACTIONS(1030), - [aux_sym_require_expression_token1] = ACTIONS(1030), - [aux_sym_require_once_expression_token1] = ACTIONS(1030), + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_name] = ACTIONS(1032), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1030), + [aux_sym_function_static_declaration_token1] = ACTIONS(1032), + [aux_sym_global_declaration_token1] = ACTIONS(1032), + [aux_sym_namespace_definition_token1] = ACTIONS(1032), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1032), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1032), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1032), + [anon_sym_BSLASH] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [aux_sym_trait_declaration_token1] = ACTIONS(1032), + [aux_sym_interface_declaration_token1] = ACTIONS(1032), + [aux_sym_enum_declaration_token1] = ACTIONS(1032), + [aux_sym_enum_case_token1] = ACTIONS(1032), + [aux_sym_class_declaration_token1] = ACTIONS(1032), + [aux_sym_final_modifier_token1] = ACTIONS(1032), + [aux_sym_abstract_modifier_token1] = ACTIONS(1032), + [aux_sym_readonly_modifier_token1] = ACTIONS(1032), + [aux_sym_visibility_modifier_token1] = ACTIONS(1032), + [aux_sym_visibility_modifier_token2] = ACTIONS(1032), + [aux_sym_visibility_modifier_token3] = ACTIONS(1032), + [aux_sym__arrow_function_header_token1] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1030), + [aux_sym_cast_type_token1] = ACTIONS(1032), + [aux_sym_echo_statement_token1] = ACTIONS(1032), + [anon_sym_unset] = ACTIONS(1032), + [aux_sym_declare_statement_token1] = ACTIONS(1032), + [aux_sym_declare_statement_token2] = ACTIONS(1032), + [sym_float] = ACTIONS(1032), + [aux_sym_try_statement_token1] = ACTIONS(1032), + [aux_sym_catch_clause_token1] = ACTIONS(1032), + [aux_sym_finally_clause_token1] = ACTIONS(1032), + [aux_sym_goto_statement_token1] = ACTIONS(1032), + [aux_sym_continue_statement_token1] = ACTIONS(1032), + [aux_sym_break_statement_token1] = ACTIONS(1032), + [sym_integer] = ACTIONS(1032), + [aux_sym_return_statement_token1] = ACTIONS(1032), + [aux_sym_throw_expression_token1] = ACTIONS(1032), + [aux_sym_while_statement_token1] = ACTIONS(1032), + [aux_sym_while_statement_token2] = ACTIONS(1032), + [aux_sym_do_statement_token1] = ACTIONS(1032), + [aux_sym_for_statement_token1] = ACTIONS(1032), + [aux_sym_for_statement_token2] = ACTIONS(1032), + [aux_sym_foreach_statement_token1] = ACTIONS(1032), + [aux_sym_foreach_statement_token2] = ACTIONS(1032), + [aux_sym_if_statement_token1] = ACTIONS(1032), + [aux_sym_if_statement_token2] = ACTIONS(1032), + [aux_sym_else_if_clause_token1] = ACTIONS(1032), + [aux_sym_else_clause_token1] = ACTIONS(1032), + [aux_sym_match_expression_token1] = ACTIONS(1032), + [aux_sym_match_default_expression_token1] = ACTIONS(1032), + [aux_sym_switch_statement_token1] = ACTIONS(1032), + [aux_sym_switch_block_token1] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_AT] = ACTIONS(1030), + [aux_sym_clone_expression_token1] = ACTIONS(1032), + [aux_sym_print_intrinsic_token1] = ACTIONS(1032), + [aux_sym_object_creation_expression_token1] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [aux_sym__list_destructing_token1] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_self] = ACTIONS(1032), + [anon_sym_parent] = ACTIONS(1032), + [aux_sym__argument_name_token1] = ACTIONS(1032), + [aux_sym__argument_name_token2] = ACTIONS(1032), + [anon_sym_POUND_LBRACK] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [aux_sym_encapsed_string_token1] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [aux_sym_string_token1] = ACTIONS(1030), + [anon_sym_LT_LT_LT] = ACTIONS(1030), + [anon_sym_BQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [aux_sym_yield_expression_token1] = ACTIONS(1032), + [aux_sym_include_expression_token1] = ACTIONS(1032), + [aux_sym_include_once_expression_token1] = ACTIONS(1032), + [aux_sym_require_expression_token1] = ACTIONS(1032), + [aux_sym_require_once_expression_token1] = ACTIONS(1032), [sym_comment] = ACTIONS(5), }, [433] = { [sym_text_interpolation] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(1032), - [sym_name] = ACTIONS(1034), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1032), - [aux_sym_function_static_declaration_token1] = ACTIONS(1034), - [aux_sym_global_declaration_token1] = ACTIONS(1034), - [aux_sym_namespace_definition_token1] = ACTIONS(1034), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1034), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1034), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1034), - [anon_sym_BSLASH] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1032), - [aux_sym_trait_declaration_token1] = ACTIONS(1034), - [aux_sym_interface_declaration_token1] = ACTIONS(1034), - [aux_sym_enum_declaration_token1] = ACTIONS(1034), - [aux_sym_enum_case_token1] = ACTIONS(1034), - [aux_sym_class_declaration_token1] = ACTIONS(1034), - [aux_sym_final_modifier_token1] = ACTIONS(1034), - [aux_sym_abstract_modifier_token1] = ACTIONS(1034), - [aux_sym_readonly_modifier_token1] = ACTIONS(1034), - [aux_sym_visibility_modifier_token1] = ACTIONS(1034), - [aux_sym_visibility_modifier_token2] = ACTIONS(1034), - [aux_sym_visibility_modifier_token3] = ACTIONS(1034), - [aux_sym__arrow_function_header_token1] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1032), - [aux_sym_cast_type_token1] = ACTIONS(1034), - [aux_sym_echo_statement_token1] = ACTIONS(1034), - [anon_sym_unset] = ACTIONS(1034), - [aux_sym_declare_statement_token1] = ACTIONS(1034), - [aux_sym_declare_statement_token2] = ACTIONS(1034), - [sym_float] = ACTIONS(1034), - [aux_sym_try_statement_token1] = ACTIONS(1034), - [aux_sym_catch_clause_token1] = ACTIONS(1034), - [aux_sym_finally_clause_token1] = ACTIONS(1034), - [aux_sym_goto_statement_token1] = ACTIONS(1034), - [aux_sym_continue_statement_token1] = ACTIONS(1034), - [aux_sym_break_statement_token1] = ACTIONS(1034), - [sym_integer] = ACTIONS(1034), - [aux_sym_return_statement_token1] = ACTIONS(1034), - [aux_sym_throw_expression_token1] = ACTIONS(1034), - [aux_sym_while_statement_token1] = ACTIONS(1034), - [aux_sym_while_statement_token2] = ACTIONS(1034), - [aux_sym_do_statement_token1] = ACTIONS(1034), - [aux_sym_for_statement_token1] = ACTIONS(1034), - [aux_sym_for_statement_token2] = ACTIONS(1034), - [aux_sym_foreach_statement_token1] = ACTIONS(1034), - [aux_sym_foreach_statement_token2] = ACTIONS(1034), - [aux_sym_if_statement_token1] = ACTIONS(1034), - [aux_sym_if_statement_token2] = ACTIONS(1034), - [aux_sym_else_if_clause_token1] = ACTIONS(1034), - [aux_sym_else_clause_token1] = ACTIONS(1034), - [aux_sym_match_expression_token1] = ACTIONS(1034), - [aux_sym_match_default_expression_token1] = ACTIONS(1034), - [aux_sym_switch_statement_token1] = ACTIONS(1034), - [aux_sym_switch_block_token1] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AT] = ACTIONS(1032), - [aux_sym_clone_expression_token1] = ACTIONS(1034), - [aux_sym_print_intrinsic_token1] = ACTIONS(1034), - [aux_sym_object_creation_expression_token1] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [aux_sym__list_destructing_token1] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(1032), - [anon_sym_self] = ACTIONS(1034), - [anon_sym_parent] = ACTIONS(1034), - [aux_sym__argument_name_token1] = ACTIONS(1034), - [aux_sym__argument_name_token2] = ACTIONS(1034), - [anon_sym_POUND_LBRACK] = ACTIONS(1032), - [anon_sym_SQUOTE] = ACTIONS(1032), - [aux_sym_encapsed_string_token1] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [aux_sym_string_token1] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [aux_sym_yield_expression_token1] = ACTIONS(1034), - [aux_sym_include_expression_token1] = ACTIONS(1034), - [aux_sym_include_once_expression_token1] = ACTIONS(1034), - [aux_sym_require_expression_token1] = ACTIONS(1034), - [aux_sym_require_once_expression_token1] = ACTIONS(1034), + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_name] = ACTIONS(1036), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1034), + [aux_sym_function_static_declaration_token1] = ACTIONS(1036), + [aux_sym_global_declaration_token1] = ACTIONS(1036), + [aux_sym_namespace_definition_token1] = ACTIONS(1036), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1036), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1036), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1036), + [anon_sym_BSLASH] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [aux_sym_trait_declaration_token1] = ACTIONS(1036), + [aux_sym_interface_declaration_token1] = ACTIONS(1036), + [aux_sym_enum_declaration_token1] = ACTIONS(1036), + [aux_sym_enum_case_token1] = ACTIONS(1036), + [aux_sym_class_declaration_token1] = ACTIONS(1036), + [aux_sym_final_modifier_token1] = ACTIONS(1036), + [aux_sym_abstract_modifier_token1] = ACTIONS(1036), + [aux_sym_readonly_modifier_token1] = ACTIONS(1036), + [aux_sym_visibility_modifier_token1] = ACTIONS(1036), + [aux_sym_visibility_modifier_token2] = ACTIONS(1036), + [aux_sym_visibility_modifier_token3] = ACTIONS(1036), + [aux_sym__arrow_function_header_token1] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1034), + [aux_sym_cast_type_token1] = ACTIONS(1036), + [aux_sym_echo_statement_token1] = ACTIONS(1036), + [anon_sym_unset] = ACTIONS(1036), + [aux_sym_declare_statement_token1] = ACTIONS(1036), + [aux_sym_declare_statement_token2] = ACTIONS(1036), + [sym_float] = ACTIONS(1036), + [aux_sym_try_statement_token1] = ACTIONS(1036), + [aux_sym_catch_clause_token1] = ACTIONS(1036), + [aux_sym_finally_clause_token1] = ACTIONS(1036), + [aux_sym_goto_statement_token1] = ACTIONS(1036), + [aux_sym_continue_statement_token1] = ACTIONS(1036), + [aux_sym_break_statement_token1] = ACTIONS(1036), + [sym_integer] = ACTIONS(1036), + [aux_sym_return_statement_token1] = ACTIONS(1036), + [aux_sym_throw_expression_token1] = ACTIONS(1036), + [aux_sym_while_statement_token1] = ACTIONS(1036), + [aux_sym_while_statement_token2] = ACTIONS(1036), + [aux_sym_do_statement_token1] = ACTIONS(1036), + [aux_sym_for_statement_token1] = ACTIONS(1036), + [aux_sym_for_statement_token2] = ACTIONS(1036), + [aux_sym_foreach_statement_token1] = ACTIONS(1036), + [aux_sym_foreach_statement_token2] = ACTIONS(1036), + [aux_sym_if_statement_token1] = ACTIONS(1036), + [aux_sym_if_statement_token2] = ACTIONS(1036), + [aux_sym_else_if_clause_token1] = ACTIONS(1036), + [aux_sym_else_clause_token1] = ACTIONS(1036), + [aux_sym_match_expression_token1] = ACTIONS(1036), + [aux_sym_match_default_expression_token1] = ACTIONS(1036), + [aux_sym_switch_statement_token1] = ACTIONS(1036), + [aux_sym_switch_block_token1] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AT] = ACTIONS(1034), + [aux_sym_clone_expression_token1] = ACTIONS(1036), + [aux_sym_print_intrinsic_token1] = ACTIONS(1036), + [aux_sym_object_creation_expression_token1] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [aux_sym__list_destructing_token1] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1034), + [anon_sym_self] = ACTIONS(1036), + [anon_sym_parent] = ACTIONS(1036), + [aux_sym__argument_name_token1] = ACTIONS(1036), + [aux_sym__argument_name_token2] = ACTIONS(1036), + [anon_sym_POUND_LBRACK] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [aux_sym_encapsed_string_token1] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [aux_sym_string_token1] = ACTIONS(1034), + [anon_sym_LT_LT_LT] = ACTIONS(1034), + [anon_sym_BQUOTE] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [aux_sym_yield_expression_token1] = ACTIONS(1036), + [aux_sym_include_expression_token1] = ACTIONS(1036), + [aux_sym_include_once_expression_token1] = ACTIONS(1036), + [aux_sym_require_expression_token1] = ACTIONS(1036), + [aux_sym_require_once_expression_token1] = ACTIONS(1036), [sym_comment] = ACTIONS(5), }, [434] = { [sym_text_interpolation] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(1036), - [sym_name] = ACTIONS(1038), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1036), - [aux_sym_function_static_declaration_token1] = ACTIONS(1038), - [aux_sym_global_declaration_token1] = ACTIONS(1038), - [aux_sym_namespace_definition_token1] = ACTIONS(1038), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1038), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1038), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1038), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [aux_sym_trait_declaration_token1] = ACTIONS(1038), - [aux_sym_interface_declaration_token1] = ACTIONS(1038), - [aux_sym_enum_declaration_token1] = ACTIONS(1038), - [aux_sym_enum_case_token1] = ACTIONS(1038), - [aux_sym_class_declaration_token1] = ACTIONS(1038), - [aux_sym_final_modifier_token1] = ACTIONS(1038), - [aux_sym_abstract_modifier_token1] = ACTIONS(1038), - [aux_sym_readonly_modifier_token1] = ACTIONS(1038), - [aux_sym_visibility_modifier_token1] = ACTIONS(1038), - [aux_sym_visibility_modifier_token2] = ACTIONS(1038), - [aux_sym_visibility_modifier_token3] = ACTIONS(1038), - [aux_sym__arrow_function_header_token1] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1036), - [aux_sym_cast_type_token1] = ACTIONS(1038), - [aux_sym_echo_statement_token1] = ACTIONS(1038), - [anon_sym_unset] = ACTIONS(1038), - [aux_sym_declare_statement_token1] = ACTIONS(1038), - [aux_sym_declare_statement_token2] = ACTIONS(1038), - [sym_float] = ACTIONS(1038), - [aux_sym_try_statement_token1] = ACTIONS(1038), - [aux_sym_catch_clause_token1] = ACTIONS(1038), - [aux_sym_finally_clause_token1] = ACTIONS(1038), - [aux_sym_goto_statement_token1] = ACTIONS(1038), - [aux_sym_continue_statement_token1] = ACTIONS(1038), - [aux_sym_break_statement_token1] = ACTIONS(1038), - [sym_integer] = ACTIONS(1038), - [aux_sym_return_statement_token1] = ACTIONS(1038), - [aux_sym_throw_expression_token1] = ACTIONS(1038), - [aux_sym_while_statement_token1] = ACTIONS(1038), - [aux_sym_while_statement_token2] = ACTIONS(1038), - [aux_sym_do_statement_token1] = ACTIONS(1038), - [aux_sym_for_statement_token1] = ACTIONS(1038), - [aux_sym_for_statement_token2] = ACTIONS(1038), - [aux_sym_foreach_statement_token1] = ACTIONS(1038), - [aux_sym_foreach_statement_token2] = ACTIONS(1038), - [aux_sym_if_statement_token1] = ACTIONS(1038), - [aux_sym_if_statement_token2] = ACTIONS(1038), - [aux_sym_else_if_clause_token1] = ACTIONS(1038), - [aux_sym_else_clause_token1] = ACTIONS(1038), - [aux_sym_match_expression_token1] = ACTIONS(1038), - [aux_sym_match_default_expression_token1] = ACTIONS(1038), - [aux_sym_switch_statement_token1] = ACTIONS(1038), - [aux_sym_switch_block_token1] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1036), - [anon_sym_AT] = ACTIONS(1036), - [aux_sym_clone_expression_token1] = ACTIONS(1038), - [aux_sym_print_intrinsic_token1] = ACTIONS(1038), - [aux_sym_object_creation_expression_token1] = ACTIONS(1038), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_PLUS_PLUS] = ACTIONS(1036), - [aux_sym__list_destructing_token1] = ACTIONS(1038), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_self] = ACTIONS(1038), - [anon_sym_parent] = ACTIONS(1038), - [aux_sym__argument_name_token1] = ACTIONS(1038), - [aux_sym__argument_name_token2] = ACTIONS(1038), - [anon_sym_POUND_LBRACK] = ACTIONS(1036), - [anon_sym_SQUOTE] = ACTIONS(1036), - [aux_sym_encapsed_string_token1] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [aux_sym_string_token1] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_BQUOTE] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [aux_sym_yield_expression_token1] = ACTIONS(1038), - [aux_sym_include_expression_token1] = ACTIONS(1038), - [aux_sym_include_once_expression_token1] = ACTIONS(1038), - [aux_sym_require_expression_token1] = ACTIONS(1038), - [aux_sym_require_once_expression_token1] = ACTIONS(1038), + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_name] = ACTIONS(1040), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1038), + [aux_sym_function_static_declaration_token1] = ACTIONS(1040), + [aux_sym_global_declaration_token1] = ACTIONS(1040), + [aux_sym_namespace_definition_token1] = ACTIONS(1040), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1040), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1040), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1040), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [aux_sym_trait_declaration_token1] = ACTIONS(1040), + [aux_sym_interface_declaration_token1] = ACTIONS(1040), + [aux_sym_enum_declaration_token1] = ACTIONS(1040), + [aux_sym_enum_case_token1] = ACTIONS(1040), + [aux_sym_class_declaration_token1] = ACTIONS(1040), + [aux_sym_final_modifier_token1] = ACTIONS(1040), + [aux_sym_abstract_modifier_token1] = ACTIONS(1040), + [aux_sym_readonly_modifier_token1] = ACTIONS(1040), + [aux_sym_visibility_modifier_token1] = ACTIONS(1040), + [aux_sym_visibility_modifier_token2] = ACTIONS(1040), + [aux_sym_visibility_modifier_token3] = ACTIONS(1040), + [aux_sym__arrow_function_header_token1] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1038), + [aux_sym_cast_type_token1] = ACTIONS(1040), + [aux_sym_echo_statement_token1] = ACTIONS(1040), + [anon_sym_unset] = ACTIONS(1040), + [aux_sym_declare_statement_token1] = ACTIONS(1040), + [aux_sym_declare_statement_token2] = ACTIONS(1040), + [sym_float] = ACTIONS(1040), + [aux_sym_try_statement_token1] = ACTIONS(1040), + [aux_sym_catch_clause_token1] = ACTIONS(1040), + [aux_sym_finally_clause_token1] = ACTIONS(1040), + [aux_sym_goto_statement_token1] = ACTIONS(1040), + [aux_sym_continue_statement_token1] = ACTIONS(1040), + [aux_sym_break_statement_token1] = ACTIONS(1040), + [sym_integer] = ACTIONS(1040), + [aux_sym_return_statement_token1] = ACTIONS(1040), + [aux_sym_throw_expression_token1] = ACTIONS(1040), + [aux_sym_while_statement_token1] = ACTIONS(1040), + [aux_sym_while_statement_token2] = ACTIONS(1040), + [aux_sym_do_statement_token1] = ACTIONS(1040), + [aux_sym_for_statement_token1] = ACTIONS(1040), + [aux_sym_for_statement_token2] = ACTIONS(1040), + [aux_sym_foreach_statement_token1] = ACTIONS(1040), + [aux_sym_foreach_statement_token2] = ACTIONS(1040), + [aux_sym_if_statement_token1] = ACTIONS(1040), + [aux_sym_if_statement_token2] = ACTIONS(1040), + [aux_sym_else_if_clause_token1] = ACTIONS(1040), + [aux_sym_else_clause_token1] = ACTIONS(1040), + [aux_sym_match_expression_token1] = ACTIONS(1040), + [aux_sym_match_default_expression_token1] = ACTIONS(1040), + [aux_sym_switch_statement_token1] = ACTIONS(1040), + [aux_sym_switch_block_token1] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(1038), + [aux_sym_clone_expression_token1] = ACTIONS(1040), + [aux_sym_print_intrinsic_token1] = ACTIONS(1040), + [aux_sym_object_creation_expression_token1] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [aux_sym__list_destructing_token1] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1038), + [anon_sym_self] = ACTIONS(1040), + [anon_sym_parent] = ACTIONS(1040), + [aux_sym__argument_name_token1] = ACTIONS(1040), + [aux_sym__argument_name_token2] = ACTIONS(1040), + [anon_sym_POUND_LBRACK] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [aux_sym_encapsed_string_token1] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [aux_sym_string_token1] = ACTIONS(1038), + [anon_sym_LT_LT_LT] = ACTIONS(1038), + [anon_sym_BQUOTE] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1038), + [aux_sym_yield_expression_token1] = ACTIONS(1040), + [aux_sym_include_expression_token1] = ACTIONS(1040), + [aux_sym_include_once_expression_token1] = ACTIONS(1040), + [aux_sym_require_expression_token1] = ACTIONS(1040), + [aux_sym_require_once_expression_token1] = ACTIONS(1040), [sym_comment] = ACTIONS(5), }, [435] = { [sym_text_interpolation] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(1040), - [sym_name] = ACTIONS(1042), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1040), - [aux_sym_function_static_declaration_token1] = ACTIONS(1042), - [aux_sym_global_declaration_token1] = ACTIONS(1042), - [aux_sym_namespace_definition_token1] = ACTIONS(1042), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1042), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1042), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1042), - [anon_sym_BSLASH] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [aux_sym_trait_declaration_token1] = ACTIONS(1042), - [aux_sym_interface_declaration_token1] = ACTIONS(1042), - [aux_sym_enum_declaration_token1] = ACTIONS(1042), - [aux_sym_enum_case_token1] = ACTIONS(1042), - [aux_sym_class_declaration_token1] = ACTIONS(1042), - [aux_sym_final_modifier_token1] = ACTIONS(1042), - [aux_sym_abstract_modifier_token1] = ACTIONS(1042), - [aux_sym_readonly_modifier_token1] = ACTIONS(1042), - [aux_sym_visibility_modifier_token1] = ACTIONS(1042), - [aux_sym_visibility_modifier_token2] = ACTIONS(1042), - [aux_sym_visibility_modifier_token3] = ACTIONS(1042), - [aux_sym__arrow_function_header_token1] = ACTIONS(1042), - [anon_sym_LPAREN] = ACTIONS(1040), - [aux_sym_cast_type_token1] = ACTIONS(1042), - [aux_sym_echo_statement_token1] = ACTIONS(1042), - [anon_sym_unset] = ACTIONS(1042), - [aux_sym_declare_statement_token1] = ACTIONS(1042), - [aux_sym_declare_statement_token2] = ACTIONS(1042), - [sym_float] = ACTIONS(1042), - [aux_sym_try_statement_token1] = ACTIONS(1042), - [aux_sym_catch_clause_token1] = ACTIONS(1042), - [aux_sym_finally_clause_token1] = ACTIONS(1042), - [aux_sym_goto_statement_token1] = ACTIONS(1042), - [aux_sym_continue_statement_token1] = ACTIONS(1042), - [aux_sym_break_statement_token1] = ACTIONS(1042), - [sym_integer] = ACTIONS(1042), - [aux_sym_return_statement_token1] = ACTIONS(1042), - [aux_sym_throw_expression_token1] = ACTIONS(1042), - [aux_sym_while_statement_token1] = ACTIONS(1042), - [aux_sym_while_statement_token2] = ACTIONS(1042), - [aux_sym_do_statement_token1] = ACTIONS(1042), - [aux_sym_for_statement_token1] = ACTIONS(1042), - [aux_sym_for_statement_token2] = ACTIONS(1042), - [aux_sym_foreach_statement_token1] = ACTIONS(1042), - [aux_sym_foreach_statement_token2] = ACTIONS(1042), - [aux_sym_if_statement_token1] = ACTIONS(1042), - [aux_sym_if_statement_token2] = ACTIONS(1042), - [aux_sym_else_if_clause_token1] = ACTIONS(1042), - [aux_sym_else_clause_token1] = ACTIONS(1042), - [aux_sym_match_expression_token1] = ACTIONS(1042), - [aux_sym_match_default_expression_token1] = ACTIONS(1042), - [aux_sym_switch_statement_token1] = ACTIONS(1042), - [aux_sym_switch_block_token1] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_AT] = ACTIONS(1040), - [aux_sym_clone_expression_token1] = ACTIONS(1042), - [aux_sym_print_intrinsic_token1] = ACTIONS(1042), - [aux_sym_object_creation_expression_token1] = ACTIONS(1042), - [anon_sym_DASH_DASH] = ACTIONS(1040), - [anon_sym_PLUS_PLUS] = ACTIONS(1040), - [aux_sym__list_destructing_token1] = ACTIONS(1042), - [anon_sym_LBRACK] = ACTIONS(1040), - [anon_sym_self] = ACTIONS(1042), - [anon_sym_parent] = ACTIONS(1042), - [aux_sym__argument_name_token1] = ACTIONS(1042), - [aux_sym__argument_name_token2] = ACTIONS(1042), - [anon_sym_POUND_LBRACK] = ACTIONS(1040), - [anon_sym_SQUOTE] = ACTIONS(1040), - [aux_sym_encapsed_string_token1] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [aux_sym_string_token1] = ACTIONS(1040), - [anon_sym_LT_LT_LT] = ACTIONS(1040), - [anon_sym_BQUOTE] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1040), - [aux_sym_yield_expression_token1] = ACTIONS(1042), - [aux_sym_include_expression_token1] = ACTIONS(1042), - [aux_sym_include_once_expression_token1] = ACTIONS(1042), - [aux_sym_require_expression_token1] = ACTIONS(1042), - [aux_sym_require_once_expression_token1] = ACTIONS(1042), + [ts_builtin_sym_end] = ACTIONS(1042), + [sym_name] = ACTIONS(1044), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1042), + [aux_sym_function_static_declaration_token1] = ACTIONS(1044), + [aux_sym_global_declaration_token1] = ACTIONS(1044), + [aux_sym_namespace_definition_token1] = ACTIONS(1044), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1044), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1044), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1044), + [anon_sym_BSLASH] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [aux_sym_trait_declaration_token1] = ACTIONS(1044), + [aux_sym_interface_declaration_token1] = ACTIONS(1044), + [aux_sym_enum_declaration_token1] = ACTIONS(1044), + [aux_sym_enum_case_token1] = ACTIONS(1044), + [aux_sym_class_declaration_token1] = ACTIONS(1044), + [aux_sym_final_modifier_token1] = ACTIONS(1044), + [aux_sym_abstract_modifier_token1] = ACTIONS(1044), + [aux_sym_readonly_modifier_token1] = ACTIONS(1044), + [aux_sym_visibility_modifier_token1] = ACTIONS(1044), + [aux_sym_visibility_modifier_token2] = ACTIONS(1044), + [aux_sym_visibility_modifier_token3] = ACTIONS(1044), + [aux_sym__arrow_function_header_token1] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1042), + [aux_sym_cast_type_token1] = ACTIONS(1044), + [aux_sym_echo_statement_token1] = ACTIONS(1044), + [anon_sym_unset] = ACTIONS(1044), + [aux_sym_declare_statement_token1] = ACTIONS(1044), + [aux_sym_declare_statement_token2] = ACTIONS(1044), + [sym_float] = ACTIONS(1044), + [aux_sym_try_statement_token1] = ACTIONS(1044), + [aux_sym_catch_clause_token1] = ACTIONS(1044), + [aux_sym_finally_clause_token1] = ACTIONS(1044), + [aux_sym_goto_statement_token1] = ACTIONS(1044), + [aux_sym_continue_statement_token1] = ACTIONS(1044), + [aux_sym_break_statement_token1] = ACTIONS(1044), + [sym_integer] = ACTIONS(1044), + [aux_sym_return_statement_token1] = ACTIONS(1044), + [aux_sym_throw_expression_token1] = ACTIONS(1044), + [aux_sym_while_statement_token1] = ACTIONS(1044), + [aux_sym_while_statement_token2] = ACTIONS(1044), + [aux_sym_do_statement_token1] = ACTIONS(1044), + [aux_sym_for_statement_token1] = ACTIONS(1044), + [aux_sym_for_statement_token2] = ACTIONS(1044), + [aux_sym_foreach_statement_token1] = ACTIONS(1044), + [aux_sym_foreach_statement_token2] = ACTIONS(1044), + [aux_sym_if_statement_token1] = ACTIONS(1044), + [aux_sym_if_statement_token2] = ACTIONS(1044), + [aux_sym_else_if_clause_token1] = ACTIONS(1044), + [aux_sym_else_clause_token1] = ACTIONS(1044), + [aux_sym_match_expression_token1] = ACTIONS(1044), + [aux_sym_match_default_expression_token1] = ACTIONS(1044), + [aux_sym_switch_statement_token1] = ACTIONS(1044), + [aux_sym_switch_block_token1] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1042), + [aux_sym_clone_expression_token1] = ACTIONS(1044), + [aux_sym_print_intrinsic_token1] = ACTIONS(1044), + [aux_sym_object_creation_expression_token1] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [aux_sym__list_destructing_token1] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_self] = ACTIONS(1044), + [anon_sym_parent] = ACTIONS(1044), + [aux_sym__argument_name_token1] = ACTIONS(1044), + [aux_sym__argument_name_token2] = ACTIONS(1044), + [anon_sym_POUND_LBRACK] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [aux_sym_encapsed_string_token1] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [aux_sym_string_token1] = ACTIONS(1042), + [anon_sym_LT_LT_LT] = ACTIONS(1042), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [aux_sym_yield_expression_token1] = ACTIONS(1044), + [aux_sym_include_expression_token1] = ACTIONS(1044), + [aux_sym_include_once_expression_token1] = ACTIONS(1044), + [aux_sym_require_expression_token1] = ACTIONS(1044), + [aux_sym_require_once_expression_token1] = ACTIONS(1044), [sym_comment] = ACTIONS(5), }, [436] = { [sym_text_interpolation] = STATE(436), - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_name] = ACTIONS(1046), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1048), - [aux_sym_function_static_declaration_token1] = ACTIONS(1046), - [aux_sym_global_declaration_token1] = ACTIONS(1046), - [aux_sym_namespace_definition_token1] = ACTIONS(1046), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1046), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1046), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1046), - [anon_sym_BSLASH] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [aux_sym_trait_declaration_token1] = ACTIONS(1046), - [aux_sym_interface_declaration_token1] = ACTIONS(1046), - [aux_sym_enum_declaration_token1] = ACTIONS(1046), - [aux_sym_enum_case_token1] = ACTIONS(1046), - [aux_sym_class_declaration_token1] = ACTIONS(1046), - [aux_sym_final_modifier_token1] = ACTIONS(1046), - [aux_sym_abstract_modifier_token1] = ACTIONS(1046), - [aux_sym_readonly_modifier_token1] = ACTIONS(1046), - [aux_sym_visibility_modifier_token1] = ACTIONS(1046), - [aux_sym_visibility_modifier_token2] = ACTIONS(1046), - [aux_sym_visibility_modifier_token3] = ACTIONS(1046), - [aux_sym__arrow_function_header_token1] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1044), - [aux_sym_cast_type_token1] = ACTIONS(1046), - [aux_sym_echo_statement_token1] = ACTIONS(1046), - [anon_sym_unset] = ACTIONS(1046), - [aux_sym_declare_statement_token1] = ACTIONS(1046), - [aux_sym_declare_statement_token2] = ACTIONS(1046), - [sym_float] = ACTIONS(1046), - [aux_sym_try_statement_token1] = ACTIONS(1046), - [aux_sym_goto_statement_token1] = ACTIONS(1046), - [aux_sym_continue_statement_token1] = ACTIONS(1046), - [aux_sym_break_statement_token1] = ACTIONS(1046), - [sym_integer] = ACTIONS(1046), - [aux_sym_return_statement_token1] = ACTIONS(1046), - [aux_sym_throw_expression_token1] = ACTIONS(1046), - [aux_sym_while_statement_token1] = ACTIONS(1046), - [aux_sym_while_statement_token2] = ACTIONS(1046), - [aux_sym_do_statement_token1] = ACTIONS(1046), - [aux_sym_for_statement_token1] = ACTIONS(1046), - [aux_sym_for_statement_token2] = ACTIONS(1046), - [aux_sym_foreach_statement_token1] = ACTIONS(1046), - [aux_sym_foreach_statement_token2] = ACTIONS(1046), - [aux_sym_if_statement_token1] = ACTIONS(1046), - [aux_sym_if_statement_token2] = ACTIONS(1046), - [aux_sym_else_if_clause_token1] = ACTIONS(1046), - [aux_sym_else_clause_token1] = ACTIONS(1046), - [aux_sym_match_expression_token1] = ACTIONS(1046), - [aux_sym_match_default_expression_token1] = ACTIONS(1046), - [aux_sym_switch_statement_token1] = ACTIONS(1046), - [aux_sym_switch_block_token1] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(1044), - [anon_sym_AT] = ACTIONS(1044), - [aux_sym_clone_expression_token1] = ACTIONS(1046), - [aux_sym_print_intrinsic_token1] = ACTIONS(1046), - [aux_sym_object_creation_expression_token1] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [aux_sym__list_destructing_token1] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_self] = ACTIONS(1046), - [anon_sym_parent] = ACTIONS(1046), - [aux_sym__argument_name_token1] = ACTIONS(1046), - [aux_sym__argument_name_token2] = ACTIONS(1046), - [anon_sym_POUND_LBRACK] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1044), - [aux_sym_encapsed_string_token1] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [aux_sym_string_token1] = ACTIONS(1044), - [anon_sym_LT_LT_LT] = ACTIONS(1044), - [anon_sym_BQUOTE] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1044), - [aux_sym_yield_expression_token1] = ACTIONS(1046), - [aux_sym_include_expression_token1] = ACTIONS(1046), - [aux_sym_include_once_expression_token1] = ACTIONS(1046), - [aux_sym_require_expression_token1] = ACTIONS(1046), - [aux_sym_require_once_expression_token1] = ACTIONS(1046), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1048), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_name] = ACTIONS(1048), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1050), + [aux_sym_function_static_declaration_token1] = ACTIONS(1048), + [aux_sym_global_declaration_token1] = ACTIONS(1048), + [aux_sym_namespace_definition_token1] = ACTIONS(1048), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1048), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1048), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1048), + [anon_sym_BSLASH] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [aux_sym_trait_declaration_token1] = ACTIONS(1048), + [aux_sym_interface_declaration_token1] = ACTIONS(1048), + [aux_sym_enum_declaration_token1] = ACTIONS(1048), + [aux_sym_enum_case_token1] = ACTIONS(1048), + [aux_sym_class_declaration_token1] = ACTIONS(1048), + [aux_sym_final_modifier_token1] = ACTIONS(1048), + [aux_sym_abstract_modifier_token1] = ACTIONS(1048), + [aux_sym_readonly_modifier_token1] = ACTIONS(1048), + [aux_sym_visibility_modifier_token1] = ACTIONS(1048), + [aux_sym_visibility_modifier_token2] = ACTIONS(1048), + [aux_sym_visibility_modifier_token3] = ACTIONS(1048), + [aux_sym__arrow_function_header_token1] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1046), + [aux_sym_cast_type_token1] = ACTIONS(1048), + [aux_sym_echo_statement_token1] = ACTIONS(1048), + [anon_sym_unset] = ACTIONS(1048), + [aux_sym_declare_statement_token1] = ACTIONS(1048), + [aux_sym_declare_statement_token2] = ACTIONS(1048), + [sym_float] = ACTIONS(1048), + [aux_sym_try_statement_token1] = ACTIONS(1048), + [aux_sym_goto_statement_token1] = ACTIONS(1048), + [aux_sym_continue_statement_token1] = ACTIONS(1048), + [aux_sym_break_statement_token1] = ACTIONS(1048), + [sym_integer] = ACTIONS(1048), + [aux_sym_return_statement_token1] = ACTIONS(1048), + [aux_sym_throw_expression_token1] = ACTIONS(1048), + [aux_sym_while_statement_token1] = ACTIONS(1048), + [aux_sym_while_statement_token2] = ACTIONS(1048), + [aux_sym_do_statement_token1] = ACTIONS(1048), + [aux_sym_for_statement_token1] = ACTIONS(1048), + [aux_sym_for_statement_token2] = ACTIONS(1048), + [aux_sym_foreach_statement_token1] = ACTIONS(1048), + [aux_sym_foreach_statement_token2] = ACTIONS(1048), + [aux_sym_if_statement_token1] = ACTIONS(1048), + [aux_sym_if_statement_token2] = ACTIONS(1048), + [aux_sym_else_if_clause_token1] = ACTIONS(1048), + [aux_sym_else_clause_token1] = ACTIONS(1048), + [aux_sym_match_expression_token1] = ACTIONS(1048), + [aux_sym_match_default_expression_token1] = ACTIONS(1048), + [aux_sym_switch_statement_token1] = ACTIONS(1048), + [aux_sym_switch_block_token1] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_AT] = ACTIONS(1046), + [aux_sym_clone_expression_token1] = ACTIONS(1048), + [aux_sym_print_intrinsic_token1] = ACTIONS(1048), + [aux_sym_object_creation_expression_token1] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [aux_sym__list_destructing_token1] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_self] = ACTIONS(1048), + [anon_sym_parent] = ACTIONS(1048), + [aux_sym__argument_name_token1] = ACTIONS(1048), + [aux_sym__argument_name_token2] = ACTIONS(1048), + [anon_sym_POUND_LBRACK] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [aux_sym_encapsed_string_token1] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [aux_sym_string_token1] = ACTIONS(1046), + [anon_sym_LT_LT_LT] = ACTIONS(1046), + [anon_sym_BQUOTE] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [aux_sym_yield_expression_token1] = ACTIONS(1048), + [aux_sym_include_expression_token1] = ACTIONS(1048), + [aux_sym_include_once_expression_token1] = ACTIONS(1048), + [aux_sym_require_expression_token1] = ACTIONS(1048), + [aux_sym_require_once_expression_token1] = ACTIONS(1048), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1050), }, [437] = { [sym_text_interpolation] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_name] = ACTIONS(1052), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1054), - [aux_sym_function_static_declaration_token1] = ACTIONS(1052), - [aux_sym_global_declaration_token1] = ACTIONS(1052), - [aux_sym_namespace_definition_token1] = ACTIONS(1052), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1052), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1052), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1052), - [anon_sym_BSLASH] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [aux_sym_trait_declaration_token1] = ACTIONS(1052), - [aux_sym_interface_declaration_token1] = ACTIONS(1052), - [aux_sym_enum_declaration_token1] = ACTIONS(1052), - [aux_sym_enum_case_token1] = ACTIONS(1052), - [aux_sym_class_declaration_token1] = ACTIONS(1052), - [aux_sym_final_modifier_token1] = ACTIONS(1052), - [aux_sym_abstract_modifier_token1] = ACTIONS(1052), - [aux_sym_readonly_modifier_token1] = ACTIONS(1052), - [aux_sym_visibility_modifier_token1] = ACTIONS(1052), - [aux_sym_visibility_modifier_token2] = ACTIONS(1052), - [aux_sym_visibility_modifier_token3] = ACTIONS(1052), - [aux_sym__arrow_function_header_token1] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1050), - [aux_sym_cast_type_token1] = ACTIONS(1052), - [aux_sym_echo_statement_token1] = ACTIONS(1052), - [anon_sym_unset] = ACTIONS(1052), - [aux_sym_declare_statement_token1] = ACTIONS(1052), - [aux_sym_declare_statement_token2] = ACTIONS(1052), - [sym_float] = ACTIONS(1052), - [aux_sym_try_statement_token1] = ACTIONS(1052), - [aux_sym_goto_statement_token1] = ACTIONS(1052), - [aux_sym_continue_statement_token1] = ACTIONS(1052), - [aux_sym_break_statement_token1] = ACTIONS(1052), - [sym_integer] = ACTIONS(1052), - [aux_sym_return_statement_token1] = ACTIONS(1052), - [aux_sym_throw_expression_token1] = ACTIONS(1052), - [aux_sym_while_statement_token1] = ACTIONS(1052), - [aux_sym_while_statement_token2] = ACTIONS(1052), - [aux_sym_do_statement_token1] = ACTIONS(1052), - [aux_sym_for_statement_token1] = ACTIONS(1052), - [aux_sym_for_statement_token2] = ACTIONS(1052), - [aux_sym_foreach_statement_token1] = ACTIONS(1052), - [aux_sym_foreach_statement_token2] = ACTIONS(1052), - [aux_sym_if_statement_token1] = ACTIONS(1052), - [aux_sym_if_statement_token2] = ACTIONS(1052), - [aux_sym_else_if_clause_token1] = ACTIONS(1052), - [aux_sym_else_clause_token1] = ACTIONS(1052), - [aux_sym_match_expression_token1] = ACTIONS(1052), - [aux_sym_match_default_expression_token1] = ACTIONS(1052), - [aux_sym_switch_statement_token1] = ACTIONS(1052), - [aux_sym_switch_block_token1] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_AT] = ACTIONS(1050), - [aux_sym_clone_expression_token1] = ACTIONS(1052), - [aux_sym_print_intrinsic_token1] = ACTIONS(1052), - [aux_sym_object_creation_expression_token1] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [aux_sym__list_destructing_token1] = ACTIONS(1052), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_self] = ACTIONS(1052), - [anon_sym_parent] = ACTIONS(1052), - [aux_sym__argument_name_token1] = ACTIONS(1052), - [aux_sym__argument_name_token2] = ACTIONS(1052), - [anon_sym_POUND_LBRACK] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [aux_sym_encapsed_string_token1] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [aux_sym_string_token1] = ACTIONS(1050), - [anon_sym_LT_LT_LT] = ACTIONS(1050), - [anon_sym_BQUOTE] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1050), - [aux_sym_yield_expression_token1] = ACTIONS(1052), - [aux_sym_include_expression_token1] = ACTIONS(1052), - [aux_sym_include_once_expression_token1] = ACTIONS(1052), - [aux_sym_require_expression_token1] = ACTIONS(1052), - [aux_sym_require_once_expression_token1] = ACTIONS(1052), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1054), + [ts_builtin_sym_end] = ACTIONS(1052), + [sym_name] = ACTIONS(1054), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1056), + [aux_sym_function_static_declaration_token1] = ACTIONS(1054), + [aux_sym_global_declaration_token1] = ACTIONS(1054), + [aux_sym_namespace_definition_token1] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1054), + [anon_sym_BSLASH] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [aux_sym_trait_declaration_token1] = ACTIONS(1054), + [aux_sym_interface_declaration_token1] = ACTIONS(1054), + [aux_sym_enum_declaration_token1] = ACTIONS(1054), + [aux_sym_enum_case_token1] = ACTIONS(1054), + [aux_sym_class_declaration_token1] = ACTIONS(1054), + [aux_sym_final_modifier_token1] = ACTIONS(1054), + [aux_sym_abstract_modifier_token1] = ACTIONS(1054), + [aux_sym_readonly_modifier_token1] = ACTIONS(1054), + [aux_sym_visibility_modifier_token1] = ACTIONS(1054), + [aux_sym_visibility_modifier_token2] = ACTIONS(1054), + [aux_sym_visibility_modifier_token3] = ACTIONS(1054), + [aux_sym__arrow_function_header_token1] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1052), + [aux_sym_cast_type_token1] = ACTIONS(1054), + [aux_sym_echo_statement_token1] = ACTIONS(1054), + [anon_sym_unset] = ACTIONS(1054), + [aux_sym_declare_statement_token1] = ACTIONS(1054), + [aux_sym_declare_statement_token2] = ACTIONS(1054), + [sym_float] = ACTIONS(1054), + [aux_sym_try_statement_token1] = ACTIONS(1054), + [aux_sym_goto_statement_token1] = ACTIONS(1054), + [aux_sym_continue_statement_token1] = ACTIONS(1054), + [aux_sym_break_statement_token1] = ACTIONS(1054), + [sym_integer] = ACTIONS(1054), + [aux_sym_return_statement_token1] = ACTIONS(1054), + [aux_sym_throw_expression_token1] = ACTIONS(1054), + [aux_sym_while_statement_token1] = ACTIONS(1054), + [aux_sym_while_statement_token2] = ACTIONS(1054), + [aux_sym_do_statement_token1] = ACTIONS(1054), + [aux_sym_for_statement_token1] = ACTIONS(1054), + [aux_sym_for_statement_token2] = ACTIONS(1054), + [aux_sym_foreach_statement_token1] = ACTIONS(1054), + [aux_sym_foreach_statement_token2] = ACTIONS(1054), + [aux_sym_if_statement_token1] = ACTIONS(1054), + [aux_sym_if_statement_token2] = ACTIONS(1054), + [aux_sym_else_if_clause_token1] = ACTIONS(1054), + [aux_sym_else_clause_token1] = ACTIONS(1054), + [aux_sym_match_expression_token1] = ACTIONS(1054), + [aux_sym_match_default_expression_token1] = ACTIONS(1054), + [aux_sym_switch_statement_token1] = ACTIONS(1054), + [aux_sym_switch_block_token1] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_AT] = ACTIONS(1052), + [aux_sym_clone_expression_token1] = ACTIONS(1054), + [aux_sym_print_intrinsic_token1] = ACTIONS(1054), + [aux_sym_object_creation_expression_token1] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [aux_sym__list_destructing_token1] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_self] = ACTIONS(1054), + [anon_sym_parent] = ACTIONS(1054), + [aux_sym__argument_name_token1] = ACTIONS(1054), + [aux_sym__argument_name_token2] = ACTIONS(1054), + [anon_sym_POUND_LBRACK] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1052), + [aux_sym_encapsed_string_token1] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [aux_sym_string_token1] = ACTIONS(1052), + [anon_sym_LT_LT_LT] = ACTIONS(1052), + [anon_sym_BQUOTE] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1052), + [aux_sym_yield_expression_token1] = ACTIONS(1054), + [aux_sym_include_expression_token1] = ACTIONS(1054), + [aux_sym_include_once_expression_token1] = ACTIONS(1054), + [aux_sym_require_expression_token1] = ACTIONS(1054), + [aux_sym_require_once_expression_token1] = ACTIONS(1054), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1056), }, [438] = { [sym_text_interpolation] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(1056), - [sym_name] = ACTIONS(1058), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1060), - [aux_sym_function_static_declaration_token1] = ACTIONS(1058), - [aux_sym_global_declaration_token1] = ACTIONS(1058), - [aux_sym_namespace_definition_token1] = ACTIONS(1058), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1058), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1058), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1058), - [anon_sym_BSLASH] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [aux_sym_trait_declaration_token1] = ACTIONS(1058), - [aux_sym_interface_declaration_token1] = ACTIONS(1058), - [aux_sym_enum_declaration_token1] = ACTIONS(1058), - [aux_sym_enum_case_token1] = ACTIONS(1058), - [aux_sym_class_declaration_token1] = ACTIONS(1058), - [aux_sym_final_modifier_token1] = ACTIONS(1058), - [aux_sym_abstract_modifier_token1] = ACTIONS(1058), - [aux_sym_readonly_modifier_token1] = ACTIONS(1058), - [aux_sym_visibility_modifier_token1] = ACTIONS(1058), - [aux_sym_visibility_modifier_token2] = ACTIONS(1058), - [aux_sym_visibility_modifier_token3] = ACTIONS(1058), - [aux_sym__arrow_function_header_token1] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1056), - [aux_sym_cast_type_token1] = ACTIONS(1058), - [aux_sym_echo_statement_token1] = ACTIONS(1058), - [anon_sym_unset] = ACTIONS(1058), - [aux_sym_declare_statement_token1] = ACTIONS(1058), - [aux_sym_declare_statement_token2] = ACTIONS(1058), - [sym_float] = ACTIONS(1058), - [aux_sym_try_statement_token1] = ACTIONS(1058), - [aux_sym_goto_statement_token1] = ACTIONS(1058), - [aux_sym_continue_statement_token1] = ACTIONS(1058), - [aux_sym_break_statement_token1] = ACTIONS(1058), - [sym_integer] = ACTIONS(1058), - [aux_sym_return_statement_token1] = ACTIONS(1058), - [aux_sym_throw_expression_token1] = ACTIONS(1058), - [aux_sym_while_statement_token1] = ACTIONS(1058), - [aux_sym_while_statement_token2] = ACTIONS(1058), - [aux_sym_do_statement_token1] = ACTIONS(1058), - [aux_sym_for_statement_token1] = ACTIONS(1058), - [aux_sym_for_statement_token2] = ACTIONS(1058), - [aux_sym_foreach_statement_token1] = ACTIONS(1058), - [aux_sym_foreach_statement_token2] = ACTIONS(1058), - [aux_sym_if_statement_token1] = ACTIONS(1058), - [aux_sym_if_statement_token2] = ACTIONS(1058), - [aux_sym_else_if_clause_token1] = ACTIONS(1058), - [aux_sym_else_clause_token1] = ACTIONS(1058), - [aux_sym_match_expression_token1] = ACTIONS(1058), - [aux_sym_match_default_expression_token1] = ACTIONS(1058), - [aux_sym_switch_statement_token1] = ACTIONS(1058), - [aux_sym_switch_block_token1] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1056), - [anon_sym_AT] = ACTIONS(1056), - [aux_sym_clone_expression_token1] = ACTIONS(1058), - [aux_sym_print_intrinsic_token1] = ACTIONS(1058), - [aux_sym_object_creation_expression_token1] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1056), - [aux_sym__list_destructing_token1] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1056), - [anon_sym_self] = ACTIONS(1058), - [anon_sym_parent] = ACTIONS(1058), - [aux_sym__argument_name_token1] = ACTIONS(1058), - [aux_sym__argument_name_token2] = ACTIONS(1058), - [anon_sym_POUND_LBRACK] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1056), - [aux_sym_encapsed_string_token1] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1056), - [aux_sym_string_token1] = ACTIONS(1056), - [anon_sym_LT_LT_LT] = ACTIONS(1056), - [anon_sym_BQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR] = ACTIONS(1056), - [aux_sym_yield_expression_token1] = ACTIONS(1058), - [aux_sym_include_expression_token1] = ACTIONS(1058), - [aux_sym_include_once_expression_token1] = ACTIONS(1058), - [aux_sym_require_expression_token1] = ACTIONS(1058), - [aux_sym_require_once_expression_token1] = ACTIONS(1058), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1060), + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_name] = ACTIONS(1060), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1062), + [aux_sym_function_static_declaration_token1] = ACTIONS(1060), + [aux_sym_global_declaration_token1] = ACTIONS(1060), + [aux_sym_namespace_definition_token1] = ACTIONS(1060), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1060), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1060), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1060), + [anon_sym_BSLASH] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [aux_sym_trait_declaration_token1] = ACTIONS(1060), + [aux_sym_interface_declaration_token1] = ACTIONS(1060), + [aux_sym_enum_declaration_token1] = ACTIONS(1060), + [aux_sym_enum_case_token1] = ACTIONS(1060), + [aux_sym_class_declaration_token1] = ACTIONS(1060), + [aux_sym_final_modifier_token1] = ACTIONS(1060), + [aux_sym_abstract_modifier_token1] = ACTIONS(1060), + [aux_sym_readonly_modifier_token1] = ACTIONS(1060), + [aux_sym_visibility_modifier_token1] = ACTIONS(1060), + [aux_sym_visibility_modifier_token2] = ACTIONS(1060), + [aux_sym_visibility_modifier_token3] = ACTIONS(1060), + [aux_sym__arrow_function_header_token1] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1058), + [aux_sym_cast_type_token1] = ACTIONS(1060), + [aux_sym_echo_statement_token1] = ACTIONS(1060), + [anon_sym_unset] = ACTIONS(1060), + [aux_sym_declare_statement_token1] = ACTIONS(1060), + [aux_sym_declare_statement_token2] = ACTIONS(1060), + [sym_float] = ACTIONS(1060), + [aux_sym_try_statement_token1] = ACTIONS(1060), + [aux_sym_goto_statement_token1] = ACTIONS(1060), + [aux_sym_continue_statement_token1] = ACTIONS(1060), + [aux_sym_break_statement_token1] = ACTIONS(1060), + [sym_integer] = ACTIONS(1060), + [aux_sym_return_statement_token1] = ACTIONS(1060), + [aux_sym_throw_expression_token1] = ACTIONS(1060), + [aux_sym_while_statement_token1] = ACTIONS(1060), + [aux_sym_while_statement_token2] = ACTIONS(1060), + [aux_sym_do_statement_token1] = ACTIONS(1060), + [aux_sym_for_statement_token1] = ACTIONS(1060), + [aux_sym_for_statement_token2] = ACTIONS(1060), + [aux_sym_foreach_statement_token1] = ACTIONS(1060), + [aux_sym_foreach_statement_token2] = ACTIONS(1060), + [aux_sym_if_statement_token1] = ACTIONS(1060), + [aux_sym_if_statement_token2] = ACTIONS(1060), + [aux_sym_else_if_clause_token1] = ACTIONS(1060), + [aux_sym_else_clause_token1] = ACTIONS(1060), + [aux_sym_match_expression_token1] = ACTIONS(1060), + [aux_sym_match_default_expression_token1] = ACTIONS(1060), + [aux_sym_switch_statement_token1] = ACTIONS(1060), + [aux_sym_switch_block_token1] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_AT] = ACTIONS(1058), + [aux_sym_clone_expression_token1] = ACTIONS(1060), + [aux_sym_print_intrinsic_token1] = ACTIONS(1060), + [aux_sym_object_creation_expression_token1] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [aux_sym__list_destructing_token1] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_self] = ACTIONS(1060), + [anon_sym_parent] = ACTIONS(1060), + [aux_sym__argument_name_token1] = ACTIONS(1060), + [aux_sym__argument_name_token2] = ACTIONS(1060), + [anon_sym_POUND_LBRACK] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [aux_sym_encapsed_string_token1] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [aux_sym_string_token1] = ACTIONS(1058), + [anon_sym_LT_LT_LT] = ACTIONS(1058), + [anon_sym_BQUOTE] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [aux_sym_yield_expression_token1] = ACTIONS(1060), + [aux_sym_include_expression_token1] = ACTIONS(1060), + [aux_sym_include_once_expression_token1] = ACTIONS(1060), + [aux_sym_require_expression_token1] = ACTIONS(1060), + [aux_sym_require_once_expression_token1] = ACTIONS(1060), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1062), }, [439] = { [sym_text_interpolation] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_name] = ACTIONS(1064), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1066), - [aux_sym_function_static_declaration_token1] = ACTIONS(1064), - [aux_sym_global_declaration_token1] = ACTIONS(1064), - [aux_sym_namespace_definition_token1] = ACTIONS(1064), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1064), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1064), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1064), - [anon_sym_BSLASH] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1062), - [aux_sym_trait_declaration_token1] = ACTIONS(1064), - [aux_sym_interface_declaration_token1] = ACTIONS(1064), - [aux_sym_enum_declaration_token1] = ACTIONS(1064), - [aux_sym_enum_case_token1] = ACTIONS(1064), - [aux_sym_class_declaration_token1] = ACTIONS(1064), - [aux_sym_final_modifier_token1] = ACTIONS(1064), - [aux_sym_abstract_modifier_token1] = ACTIONS(1064), - [aux_sym_readonly_modifier_token1] = ACTIONS(1064), - [aux_sym_visibility_modifier_token1] = ACTIONS(1064), - [aux_sym_visibility_modifier_token2] = ACTIONS(1064), - [aux_sym_visibility_modifier_token3] = ACTIONS(1064), - [aux_sym__arrow_function_header_token1] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1062), - [aux_sym_cast_type_token1] = ACTIONS(1064), - [aux_sym_echo_statement_token1] = ACTIONS(1064), - [anon_sym_unset] = ACTIONS(1064), - [aux_sym_declare_statement_token1] = ACTIONS(1064), - [aux_sym_declare_statement_token2] = ACTIONS(1064), - [sym_float] = ACTIONS(1064), - [aux_sym_try_statement_token1] = ACTIONS(1064), - [aux_sym_goto_statement_token1] = ACTIONS(1064), - [aux_sym_continue_statement_token1] = ACTIONS(1064), - [aux_sym_break_statement_token1] = ACTIONS(1064), - [sym_integer] = ACTIONS(1064), - [aux_sym_return_statement_token1] = ACTIONS(1064), - [aux_sym_throw_expression_token1] = ACTIONS(1064), - [aux_sym_while_statement_token1] = ACTIONS(1064), - [aux_sym_while_statement_token2] = ACTIONS(1064), - [aux_sym_do_statement_token1] = ACTIONS(1064), - [aux_sym_for_statement_token1] = ACTIONS(1064), - [aux_sym_for_statement_token2] = ACTIONS(1064), - [aux_sym_foreach_statement_token1] = ACTIONS(1064), - [aux_sym_foreach_statement_token2] = ACTIONS(1064), - [aux_sym_if_statement_token1] = ACTIONS(1064), - [aux_sym_if_statement_token2] = ACTIONS(1064), - [aux_sym_else_if_clause_token1] = ACTIONS(1064), - [aux_sym_else_clause_token1] = ACTIONS(1064), - [aux_sym_match_expression_token1] = ACTIONS(1064), - [aux_sym_match_default_expression_token1] = ACTIONS(1064), - [aux_sym_switch_statement_token1] = ACTIONS(1064), - [aux_sym_switch_block_token1] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_AT] = ACTIONS(1062), - [aux_sym_clone_expression_token1] = ACTIONS(1064), - [aux_sym_print_intrinsic_token1] = ACTIONS(1064), - [aux_sym_object_creation_expression_token1] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [aux_sym__list_destructing_token1] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(1062), - [anon_sym_self] = ACTIONS(1064), - [anon_sym_parent] = ACTIONS(1064), - [aux_sym__argument_name_token1] = ACTIONS(1064), - [aux_sym__argument_name_token2] = ACTIONS(1064), - [anon_sym_POUND_LBRACK] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [aux_sym_encapsed_string_token1] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [aux_sym_string_token1] = ACTIONS(1062), - [anon_sym_LT_LT_LT] = ACTIONS(1062), - [anon_sym_BQUOTE] = ACTIONS(1062), - [anon_sym_DOLLAR] = ACTIONS(1062), - [aux_sym_yield_expression_token1] = ACTIONS(1064), - [aux_sym_include_expression_token1] = ACTIONS(1064), - [aux_sym_include_once_expression_token1] = ACTIONS(1064), - [aux_sym_require_expression_token1] = ACTIONS(1064), - [aux_sym_require_once_expression_token1] = ACTIONS(1064), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1066), + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_name] = ACTIONS(1066), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1068), + [aux_sym_function_static_declaration_token1] = ACTIONS(1066), + [aux_sym_global_declaration_token1] = ACTIONS(1066), + [aux_sym_namespace_definition_token1] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1066), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1066), + [anon_sym_BSLASH] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [aux_sym_trait_declaration_token1] = ACTIONS(1066), + [aux_sym_interface_declaration_token1] = ACTIONS(1066), + [aux_sym_enum_declaration_token1] = ACTIONS(1066), + [aux_sym_enum_case_token1] = ACTIONS(1066), + [aux_sym_class_declaration_token1] = ACTIONS(1066), + [aux_sym_final_modifier_token1] = ACTIONS(1066), + [aux_sym_abstract_modifier_token1] = ACTIONS(1066), + [aux_sym_readonly_modifier_token1] = ACTIONS(1066), + [aux_sym_visibility_modifier_token1] = ACTIONS(1066), + [aux_sym_visibility_modifier_token2] = ACTIONS(1066), + [aux_sym_visibility_modifier_token3] = ACTIONS(1066), + [aux_sym__arrow_function_header_token1] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1064), + [aux_sym_cast_type_token1] = ACTIONS(1066), + [aux_sym_echo_statement_token1] = ACTIONS(1066), + [anon_sym_unset] = ACTIONS(1066), + [aux_sym_declare_statement_token1] = ACTIONS(1066), + [aux_sym_declare_statement_token2] = ACTIONS(1066), + [sym_float] = ACTIONS(1066), + [aux_sym_try_statement_token1] = ACTIONS(1066), + [aux_sym_goto_statement_token1] = ACTIONS(1066), + [aux_sym_continue_statement_token1] = ACTIONS(1066), + [aux_sym_break_statement_token1] = ACTIONS(1066), + [sym_integer] = ACTIONS(1066), + [aux_sym_return_statement_token1] = ACTIONS(1066), + [aux_sym_throw_expression_token1] = ACTIONS(1066), + [aux_sym_while_statement_token1] = ACTIONS(1066), + [aux_sym_while_statement_token2] = ACTIONS(1066), + [aux_sym_do_statement_token1] = ACTIONS(1066), + [aux_sym_for_statement_token1] = ACTIONS(1066), + [aux_sym_for_statement_token2] = ACTIONS(1066), + [aux_sym_foreach_statement_token1] = ACTIONS(1066), + [aux_sym_foreach_statement_token2] = ACTIONS(1066), + [aux_sym_if_statement_token1] = ACTIONS(1066), + [aux_sym_if_statement_token2] = ACTIONS(1066), + [aux_sym_else_if_clause_token1] = ACTIONS(1066), + [aux_sym_else_clause_token1] = ACTIONS(1066), + [aux_sym_match_expression_token1] = ACTIONS(1066), + [aux_sym_match_default_expression_token1] = ACTIONS(1066), + [aux_sym_switch_statement_token1] = ACTIONS(1066), + [aux_sym_switch_block_token1] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_AT] = ACTIONS(1064), + [aux_sym_clone_expression_token1] = ACTIONS(1066), + [aux_sym_print_intrinsic_token1] = ACTIONS(1066), + [aux_sym_object_creation_expression_token1] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [aux_sym__list_destructing_token1] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_self] = ACTIONS(1066), + [anon_sym_parent] = ACTIONS(1066), + [aux_sym__argument_name_token1] = ACTIONS(1066), + [aux_sym__argument_name_token2] = ACTIONS(1066), + [anon_sym_POUND_LBRACK] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1064), + [aux_sym_encapsed_string_token1] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [aux_sym_string_token1] = ACTIONS(1064), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), + [aux_sym_yield_expression_token1] = ACTIONS(1066), + [aux_sym_include_expression_token1] = ACTIONS(1066), + [aux_sym_include_once_expression_token1] = ACTIONS(1066), + [aux_sym_require_expression_token1] = ACTIONS(1066), + [aux_sym_require_once_expression_token1] = ACTIONS(1066), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1068), }, [440] = { [sym_text_interpolation] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(1068), - [sym_name] = ACTIONS(1070), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1072), - [aux_sym_function_static_declaration_token1] = ACTIONS(1070), - [aux_sym_global_declaration_token1] = ACTIONS(1070), - [aux_sym_namespace_definition_token1] = ACTIONS(1070), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1070), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1070), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1070), - [anon_sym_BSLASH] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [aux_sym_trait_declaration_token1] = ACTIONS(1070), - [aux_sym_interface_declaration_token1] = ACTIONS(1070), - [aux_sym_enum_declaration_token1] = ACTIONS(1070), - [aux_sym_enum_case_token1] = ACTIONS(1070), - [aux_sym_class_declaration_token1] = ACTIONS(1070), - [aux_sym_final_modifier_token1] = ACTIONS(1070), - [aux_sym_abstract_modifier_token1] = ACTIONS(1070), - [aux_sym_readonly_modifier_token1] = ACTIONS(1070), - [aux_sym_visibility_modifier_token1] = ACTIONS(1070), - [aux_sym_visibility_modifier_token2] = ACTIONS(1070), - [aux_sym_visibility_modifier_token3] = ACTIONS(1070), - [aux_sym__arrow_function_header_token1] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1068), - [aux_sym_cast_type_token1] = ACTIONS(1070), - [aux_sym_echo_statement_token1] = ACTIONS(1070), - [anon_sym_unset] = ACTIONS(1070), - [aux_sym_declare_statement_token1] = ACTIONS(1070), - [aux_sym_declare_statement_token2] = ACTIONS(1070), - [sym_float] = ACTIONS(1070), - [aux_sym_try_statement_token1] = ACTIONS(1070), - [aux_sym_goto_statement_token1] = ACTIONS(1070), - [aux_sym_continue_statement_token1] = ACTIONS(1070), - [aux_sym_break_statement_token1] = ACTIONS(1070), - [sym_integer] = ACTIONS(1070), - [aux_sym_return_statement_token1] = ACTIONS(1070), - [aux_sym_throw_expression_token1] = ACTIONS(1070), - [aux_sym_while_statement_token1] = ACTIONS(1070), - [aux_sym_while_statement_token2] = ACTIONS(1070), - [aux_sym_do_statement_token1] = ACTIONS(1070), - [aux_sym_for_statement_token1] = ACTIONS(1070), - [aux_sym_for_statement_token2] = ACTIONS(1070), - [aux_sym_foreach_statement_token1] = ACTIONS(1070), - [aux_sym_foreach_statement_token2] = ACTIONS(1070), - [aux_sym_if_statement_token1] = ACTIONS(1070), - [aux_sym_if_statement_token2] = ACTIONS(1070), - [aux_sym_else_if_clause_token1] = ACTIONS(1070), - [aux_sym_else_clause_token1] = ACTIONS(1070), - [aux_sym_match_expression_token1] = ACTIONS(1070), - [aux_sym_match_default_expression_token1] = ACTIONS(1070), - [aux_sym_switch_statement_token1] = ACTIONS(1070), - [aux_sym_switch_block_token1] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_AT] = ACTIONS(1068), - [aux_sym_clone_expression_token1] = ACTIONS(1070), - [aux_sym_print_intrinsic_token1] = ACTIONS(1070), - [aux_sym_object_creation_expression_token1] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1068), - [aux_sym__list_destructing_token1] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_self] = ACTIONS(1070), - [anon_sym_parent] = ACTIONS(1070), - [aux_sym__argument_name_token1] = ACTIONS(1070), - [aux_sym__argument_name_token2] = ACTIONS(1070), - [anon_sym_POUND_LBRACK] = ACTIONS(1068), - [anon_sym_SQUOTE] = ACTIONS(1068), - [aux_sym_encapsed_string_token1] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [aux_sym_string_token1] = ACTIONS(1068), - [anon_sym_LT_LT_LT] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [aux_sym_yield_expression_token1] = ACTIONS(1070), - [aux_sym_include_expression_token1] = ACTIONS(1070), - [aux_sym_include_once_expression_token1] = ACTIONS(1070), - [aux_sym_require_expression_token1] = ACTIONS(1070), - [aux_sym_require_once_expression_token1] = ACTIONS(1070), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1072), + [ts_builtin_sym_end] = ACTIONS(1070), + [sym_name] = ACTIONS(1072), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1074), + [aux_sym_function_static_declaration_token1] = ACTIONS(1072), + [aux_sym_global_declaration_token1] = ACTIONS(1072), + [aux_sym_namespace_definition_token1] = ACTIONS(1072), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1072), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1072), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1072), + [anon_sym_BSLASH] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [aux_sym_trait_declaration_token1] = ACTIONS(1072), + [aux_sym_interface_declaration_token1] = ACTIONS(1072), + [aux_sym_enum_declaration_token1] = ACTIONS(1072), + [aux_sym_enum_case_token1] = ACTIONS(1072), + [aux_sym_class_declaration_token1] = ACTIONS(1072), + [aux_sym_final_modifier_token1] = ACTIONS(1072), + [aux_sym_abstract_modifier_token1] = ACTIONS(1072), + [aux_sym_readonly_modifier_token1] = ACTIONS(1072), + [aux_sym_visibility_modifier_token1] = ACTIONS(1072), + [aux_sym_visibility_modifier_token2] = ACTIONS(1072), + [aux_sym_visibility_modifier_token3] = ACTIONS(1072), + [aux_sym__arrow_function_header_token1] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1070), + [aux_sym_cast_type_token1] = ACTIONS(1072), + [aux_sym_echo_statement_token1] = ACTIONS(1072), + [anon_sym_unset] = ACTIONS(1072), + [aux_sym_declare_statement_token1] = ACTIONS(1072), + [aux_sym_declare_statement_token2] = ACTIONS(1072), + [sym_float] = ACTIONS(1072), + [aux_sym_try_statement_token1] = ACTIONS(1072), + [aux_sym_goto_statement_token1] = ACTIONS(1072), + [aux_sym_continue_statement_token1] = ACTIONS(1072), + [aux_sym_break_statement_token1] = ACTIONS(1072), + [sym_integer] = ACTIONS(1072), + [aux_sym_return_statement_token1] = ACTIONS(1072), + [aux_sym_throw_expression_token1] = ACTIONS(1072), + [aux_sym_while_statement_token1] = ACTIONS(1072), + [aux_sym_while_statement_token2] = ACTIONS(1072), + [aux_sym_do_statement_token1] = ACTIONS(1072), + [aux_sym_for_statement_token1] = ACTIONS(1072), + [aux_sym_for_statement_token2] = ACTIONS(1072), + [aux_sym_foreach_statement_token1] = ACTIONS(1072), + [aux_sym_foreach_statement_token2] = ACTIONS(1072), + [aux_sym_if_statement_token1] = ACTIONS(1072), + [aux_sym_if_statement_token2] = ACTIONS(1072), + [aux_sym_else_if_clause_token1] = ACTIONS(1072), + [aux_sym_else_clause_token1] = ACTIONS(1072), + [aux_sym_match_expression_token1] = ACTIONS(1072), + [aux_sym_match_default_expression_token1] = ACTIONS(1072), + [aux_sym_switch_statement_token1] = ACTIONS(1072), + [aux_sym_switch_block_token1] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_AT] = ACTIONS(1070), + [aux_sym_clone_expression_token1] = ACTIONS(1072), + [aux_sym_print_intrinsic_token1] = ACTIONS(1072), + [aux_sym_object_creation_expression_token1] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [aux_sym__list_destructing_token1] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_self] = ACTIONS(1072), + [anon_sym_parent] = ACTIONS(1072), + [aux_sym__argument_name_token1] = ACTIONS(1072), + [aux_sym__argument_name_token2] = ACTIONS(1072), + [anon_sym_POUND_LBRACK] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [aux_sym_encapsed_string_token1] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [aux_sym_string_token1] = ACTIONS(1070), + [anon_sym_LT_LT_LT] = ACTIONS(1070), + [anon_sym_BQUOTE] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [aux_sym_yield_expression_token1] = ACTIONS(1072), + [aux_sym_include_expression_token1] = ACTIONS(1072), + [aux_sym_include_once_expression_token1] = ACTIONS(1072), + [aux_sym_require_expression_token1] = ACTIONS(1072), + [aux_sym_require_once_expression_token1] = ACTIONS(1072), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1074), }, [441] = { [sym_text_interpolation] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(1074), - [sym_name] = ACTIONS(1076), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1078), - [aux_sym_function_static_declaration_token1] = ACTIONS(1076), - [aux_sym_global_declaration_token1] = ACTIONS(1076), - [aux_sym_namespace_definition_token1] = ACTIONS(1076), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1076), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1076), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1076), - [anon_sym_BSLASH] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1074), - [aux_sym_trait_declaration_token1] = ACTIONS(1076), - [aux_sym_interface_declaration_token1] = ACTIONS(1076), - [aux_sym_enum_declaration_token1] = ACTIONS(1076), - [aux_sym_enum_case_token1] = ACTIONS(1076), - [aux_sym_class_declaration_token1] = ACTIONS(1076), - [aux_sym_final_modifier_token1] = ACTIONS(1076), - [aux_sym_abstract_modifier_token1] = ACTIONS(1076), - [aux_sym_readonly_modifier_token1] = ACTIONS(1076), - [aux_sym_visibility_modifier_token1] = ACTIONS(1076), - [aux_sym_visibility_modifier_token2] = ACTIONS(1076), - [aux_sym_visibility_modifier_token3] = ACTIONS(1076), - [aux_sym__arrow_function_header_token1] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1074), - [aux_sym_cast_type_token1] = ACTIONS(1076), - [aux_sym_echo_statement_token1] = ACTIONS(1076), - [anon_sym_unset] = ACTIONS(1076), - [aux_sym_declare_statement_token1] = ACTIONS(1076), - [aux_sym_declare_statement_token2] = ACTIONS(1076), - [sym_float] = ACTIONS(1076), - [aux_sym_try_statement_token1] = ACTIONS(1076), - [aux_sym_goto_statement_token1] = ACTIONS(1076), - [aux_sym_continue_statement_token1] = ACTIONS(1076), - [aux_sym_break_statement_token1] = ACTIONS(1076), - [sym_integer] = ACTIONS(1076), - [aux_sym_return_statement_token1] = ACTIONS(1076), - [aux_sym_throw_expression_token1] = ACTIONS(1076), - [aux_sym_while_statement_token1] = ACTIONS(1076), - [aux_sym_while_statement_token2] = ACTIONS(1076), - [aux_sym_do_statement_token1] = ACTIONS(1076), - [aux_sym_for_statement_token1] = ACTIONS(1076), - [aux_sym_for_statement_token2] = ACTIONS(1076), - [aux_sym_foreach_statement_token1] = ACTIONS(1076), - [aux_sym_foreach_statement_token2] = ACTIONS(1076), - [aux_sym_if_statement_token1] = ACTIONS(1076), - [aux_sym_if_statement_token2] = ACTIONS(1076), - [aux_sym_else_if_clause_token1] = ACTIONS(1076), - [aux_sym_else_clause_token1] = ACTIONS(1076), - [aux_sym_match_expression_token1] = ACTIONS(1076), - [aux_sym_match_default_expression_token1] = ACTIONS(1076), - [aux_sym_switch_statement_token1] = ACTIONS(1076), - [aux_sym_switch_block_token1] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AT] = ACTIONS(1074), - [aux_sym_clone_expression_token1] = ACTIONS(1076), - [aux_sym_print_intrinsic_token1] = ACTIONS(1076), - [aux_sym_object_creation_expression_token1] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [aux_sym__list_destructing_token1] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1074), - [anon_sym_self] = ACTIONS(1076), - [anon_sym_parent] = ACTIONS(1076), - [aux_sym__argument_name_token1] = ACTIONS(1076), - [aux_sym__argument_name_token2] = ACTIONS(1076), - [anon_sym_POUND_LBRACK] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [aux_sym_encapsed_string_token1] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [aux_sym_string_token1] = ACTIONS(1074), - [anon_sym_LT_LT_LT] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(1074), - [anon_sym_DOLLAR] = ACTIONS(1074), - [aux_sym_yield_expression_token1] = ACTIONS(1076), - [aux_sym_include_expression_token1] = ACTIONS(1076), - [aux_sym_include_once_expression_token1] = ACTIONS(1076), - [aux_sym_require_expression_token1] = ACTIONS(1076), - [aux_sym_require_once_expression_token1] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1078), + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_name] = ACTIONS(1078), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1080), + [aux_sym_function_static_declaration_token1] = ACTIONS(1078), + [aux_sym_global_declaration_token1] = ACTIONS(1078), + [aux_sym_namespace_definition_token1] = ACTIONS(1078), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1078), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1078), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1078), + [anon_sym_BSLASH] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [aux_sym_trait_declaration_token1] = ACTIONS(1078), + [aux_sym_interface_declaration_token1] = ACTIONS(1078), + [aux_sym_enum_declaration_token1] = ACTIONS(1078), + [aux_sym_enum_case_token1] = ACTIONS(1078), + [aux_sym_class_declaration_token1] = ACTIONS(1078), + [aux_sym_final_modifier_token1] = ACTIONS(1078), + [aux_sym_abstract_modifier_token1] = ACTIONS(1078), + [aux_sym_readonly_modifier_token1] = ACTIONS(1078), + [aux_sym_visibility_modifier_token1] = ACTIONS(1078), + [aux_sym_visibility_modifier_token2] = ACTIONS(1078), + [aux_sym_visibility_modifier_token3] = ACTIONS(1078), + [aux_sym__arrow_function_header_token1] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [aux_sym_cast_type_token1] = ACTIONS(1078), + [aux_sym_echo_statement_token1] = ACTIONS(1078), + [anon_sym_unset] = ACTIONS(1078), + [aux_sym_declare_statement_token1] = ACTIONS(1078), + [aux_sym_declare_statement_token2] = ACTIONS(1078), + [sym_float] = ACTIONS(1078), + [aux_sym_try_statement_token1] = ACTIONS(1078), + [aux_sym_goto_statement_token1] = ACTIONS(1078), + [aux_sym_continue_statement_token1] = ACTIONS(1078), + [aux_sym_break_statement_token1] = ACTIONS(1078), + [sym_integer] = ACTIONS(1078), + [aux_sym_return_statement_token1] = ACTIONS(1078), + [aux_sym_throw_expression_token1] = ACTIONS(1078), + [aux_sym_while_statement_token1] = ACTIONS(1078), + [aux_sym_while_statement_token2] = ACTIONS(1078), + [aux_sym_do_statement_token1] = ACTIONS(1078), + [aux_sym_for_statement_token1] = ACTIONS(1078), + [aux_sym_for_statement_token2] = ACTIONS(1078), + [aux_sym_foreach_statement_token1] = ACTIONS(1078), + [aux_sym_foreach_statement_token2] = ACTIONS(1078), + [aux_sym_if_statement_token1] = ACTIONS(1078), + [aux_sym_if_statement_token2] = ACTIONS(1078), + [aux_sym_else_if_clause_token1] = ACTIONS(1078), + [aux_sym_else_clause_token1] = ACTIONS(1078), + [aux_sym_match_expression_token1] = ACTIONS(1078), + [aux_sym_match_default_expression_token1] = ACTIONS(1078), + [aux_sym_switch_statement_token1] = ACTIONS(1078), + [aux_sym_switch_block_token1] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_AT] = ACTIONS(1076), + [aux_sym_clone_expression_token1] = ACTIONS(1078), + [aux_sym_print_intrinsic_token1] = ACTIONS(1078), + [aux_sym_object_creation_expression_token1] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [aux_sym__list_destructing_token1] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_self] = ACTIONS(1078), + [anon_sym_parent] = ACTIONS(1078), + [aux_sym__argument_name_token1] = ACTIONS(1078), + [aux_sym__argument_name_token2] = ACTIONS(1078), + [anon_sym_POUND_LBRACK] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [aux_sym_encapsed_string_token1] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [aux_sym_string_token1] = ACTIONS(1076), + [anon_sym_LT_LT_LT] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [aux_sym_yield_expression_token1] = ACTIONS(1078), + [aux_sym_include_expression_token1] = ACTIONS(1078), + [aux_sym_include_once_expression_token1] = ACTIONS(1078), + [aux_sym_require_expression_token1] = ACTIONS(1078), + [aux_sym_require_once_expression_token1] = ACTIONS(1078), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1080), }, [442] = { [sym_text_interpolation] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1080), - [sym_name] = ACTIONS(1082), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1084), - [aux_sym_function_static_declaration_token1] = ACTIONS(1082), - [aux_sym_global_declaration_token1] = ACTIONS(1082), - [aux_sym_namespace_definition_token1] = ACTIONS(1082), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1082), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1082), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1082), - [anon_sym_BSLASH] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1080), - [aux_sym_trait_declaration_token1] = ACTIONS(1082), - [aux_sym_interface_declaration_token1] = ACTIONS(1082), - [aux_sym_enum_declaration_token1] = ACTIONS(1082), - [aux_sym_enum_case_token1] = ACTIONS(1082), - [aux_sym_class_declaration_token1] = ACTIONS(1082), - [aux_sym_final_modifier_token1] = ACTIONS(1082), - [aux_sym_abstract_modifier_token1] = ACTIONS(1082), - [aux_sym_readonly_modifier_token1] = ACTIONS(1082), - [aux_sym_visibility_modifier_token1] = ACTIONS(1082), - [aux_sym_visibility_modifier_token2] = ACTIONS(1082), - [aux_sym_visibility_modifier_token3] = ACTIONS(1082), - [aux_sym__arrow_function_header_token1] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(1080), - [aux_sym_cast_type_token1] = ACTIONS(1082), - [aux_sym_echo_statement_token1] = ACTIONS(1082), - [anon_sym_unset] = ACTIONS(1082), - [aux_sym_declare_statement_token1] = ACTIONS(1082), - [aux_sym_declare_statement_token2] = ACTIONS(1082), - [sym_float] = ACTIONS(1082), - [aux_sym_try_statement_token1] = ACTIONS(1082), - [aux_sym_goto_statement_token1] = ACTIONS(1082), - [aux_sym_continue_statement_token1] = ACTIONS(1082), - [aux_sym_break_statement_token1] = ACTIONS(1082), - [sym_integer] = ACTIONS(1082), - [aux_sym_return_statement_token1] = ACTIONS(1082), - [aux_sym_throw_expression_token1] = ACTIONS(1082), - [aux_sym_while_statement_token1] = ACTIONS(1082), - [aux_sym_while_statement_token2] = ACTIONS(1082), - [aux_sym_do_statement_token1] = ACTIONS(1082), - [aux_sym_for_statement_token1] = ACTIONS(1082), - [aux_sym_for_statement_token2] = ACTIONS(1082), - [aux_sym_foreach_statement_token1] = ACTIONS(1082), - [aux_sym_foreach_statement_token2] = ACTIONS(1082), - [aux_sym_if_statement_token1] = ACTIONS(1082), - [aux_sym_if_statement_token2] = ACTIONS(1082), - [aux_sym_else_if_clause_token1] = ACTIONS(1082), - [aux_sym_else_clause_token1] = ACTIONS(1082), - [aux_sym_match_expression_token1] = ACTIONS(1082), - [aux_sym_match_default_expression_token1] = ACTIONS(1082), - [aux_sym_switch_statement_token1] = ACTIONS(1082), - [aux_sym_switch_block_token1] = ACTIONS(1082), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_AT] = ACTIONS(1080), - [aux_sym_clone_expression_token1] = ACTIONS(1082), - [aux_sym_print_intrinsic_token1] = ACTIONS(1082), - [aux_sym_object_creation_expression_token1] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1080), - [anon_sym_PLUS_PLUS] = ACTIONS(1080), - [aux_sym__list_destructing_token1] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_self] = ACTIONS(1082), - [anon_sym_parent] = ACTIONS(1082), - [aux_sym__argument_name_token1] = ACTIONS(1082), - [aux_sym__argument_name_token2] = ACTIONS(1082), - [anon_sym_POUND_LBRACK] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [aux_sym_encapsed_string_token1] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [aux_sym_string_token1] = ACTIONS(1080), - [anon_sym_LT_LT_LT] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1080), - [aux_sym_yield_expression_token1] = ACTIONS(1082), - [aux_sym_include_expression_token1] = ACTIONS(1082), - [aux_sym_include_once_expression_token1] = ACTIONS(1082), - [aux_sym_require_expression_token1] = ACTIONS(1082), - [aux_sym_require_once_expression_token1] = ACTIONS(1082), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1084), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_name] = ACTIONS(1084), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1086), + [aux_sym_function_static_declaration_token1] = ACTIONS(1084), + [aux_sym_global_declaration_token1] = ACTIONS(1084), + [aux_sym_namespace_definition_token1] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1084), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1084), + [anon_sym_BSLASH] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [aux_sym_trait_declaration_token1] = ACTIONS(1084), + [aux_sym_interface_declaration_token1] = ACTIONS(1084), + [aux_sym_enum_declaration_token1] = ACTIONS(1084), + [aux_sym_enum_case_token1] = ACTIONS(1084), + [aux_sym_class_declaration_token1] = ACTIONS(1084), + [aux_sym_final_modifier_token1] = ACTIONS(1084), + [aux_sym_abstract_modifier_token1] = ACTIONS(1084), + [aux_sym_readonly_modifier_token1] = ACTIONS(1084), + [aux_sym_visibility_modifier_token1] = ACTIONS(1084), + [aux_sym_visibility_modifier_token2] = ACTIONS(1084), + [aux_sym_visibility_modifier_token3] = ACTIONS(1084), + [aux_sym__arrow_function_header_token1] = ACTIONS(1084), + [anon_sym_LPAREN] = ACTIONS(1082), + [aux_sym_cast_type_token1] = ACTIONS(1084), + [aux_sym_echo_statement_token1] = ACTIONS(1084), + [anon_sym_unset] = ACTIONS(1084), + [aux_sym_declare_statement_token1] = ACTIONS(1084), + [aux_sym_declare_statement_token2] = ACTIONS(1084), + [sym_float] = ACTIONS(1084), + [aux_sym_try_statement_token1] = ACTIONS(1084), + [aux_sym_goto_statement_token1] = ACTIONS(1084), + [aux_sym_continue_statement_token1] = ACTIONS(1084), + [aux_sym_break_statement_token1] = ACTIONS(1084), + [sym_integer] = ACTIONS(1084), + [aux_sym_return_statement_token1] = ACTIONS(1084), + [aux_sym_throw_expression_token1] = ACTIONS(1084), + [aux_sym_while_statement_token1] = ACTIONS(1084), + [aux_sym_while_statement_token2] = ACTIONS(1084), + [aux_sym_do_statement_token1] = ACTIONS(1084), + [aux_sym_for_statement_token1] = ACTIONS(1084), + [aux_sym_for_statement_token2] = ACTIONS(1084), + [aux_sym_foreach_statement_token1] = ACTIONS(1084), + [aux_sym_foreach_statement_token2] = ACTIONS(1084), + [aux_sym_if_statement_token1] = ACTIONS(1084), + [aux_sym_if_statement_token2] = ACTIONS(1084), + [aux_sym_else_if_clause_token1] = ACTIONS(1084), + [aux_sym_else_clause_token1] = ACTIONS(1084), + [aux_sym_match_expression_token1] = ACTIONS(1084), + [aux_sym_match_default_expression_token1] = ACTIONS(1084), + [aux_sym_switch_statement_token1] = ACTIONS(1084), + [aux_sym_switch_block_token1] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_AT] = ACTIONS(1082), + [aux_sym_clone_expression_token1] = ACTIONS(1084), + [aux_sym_print_intrinsic_token1] = ACTIONS(1084), + [aux_sym_object_creation_expression_token1] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [aux_sym__list_destructing_token1] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_self] = ACTIONS(1084), + [anon_sym_parent] = ACTIONS(1084), + [aux_sym__argument_name_token1] = ACTIONS(1084), + [aux_sym__argument_name_token2] = ACTIONS(1084), + [anon_sym_POUND_LBRACK] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [aux_sym_encapsed_string_token1] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [aux_sym_string_token1] = ACTIONS(1082), + [anon_sym_LT_LT_LT] = ACTIONS(1082), + [anon_sym_BQUOTE] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [aux_sym_yield_expression_token1] = ACTIONS(1084), + [aux_sym_include_expression_token1] = ACTIONS(1084), + [aux_sym_include_once_expression_token1] = ACTIONS(1084), + [aux_sym_require_expression_token1] = ACTIONS(1084), + [aux_sym_require_once_expression_token1] = ACTIONS(1084), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1086), }, [443] = { [sym_text_interpolation] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(1086), - [sym_name] = ACTIONS(1088), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1090), - [aux_sym_function_static_declaration_token1] = ACTIONS(1088), - [aux_sym_global_declaration_token1] = ACTIONS(1088), - [aux_sym_namespace_definition_token1] = ACTIONS(1088), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1088), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1088), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1088), - [anon_sym_BSLASH] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_RBRACE] = ACTIONS(1086), - [aux_sym_trait_declaration_token1] = ACTIONS(1088), - [aux_sym_interface_declaration_token1] = ACTIONS(1088), - [aux_sym_enum_declaration_token1] = ACTIONS(1088), - [aux_sym_enum_case_token1] = ACTIONS(1088), - [aux_sym_class_declaration_token1] = ACTIONS(1088), - [aux_sym_final_modifier_token1] = ACTIONS(1088), - [aux_sym_abstract_modifier_token1] = ACTIONS(1088), - [aux_sym_readonly_modifier_token1] = ACTIONS(1088), - [aux_sym_visibility_modifier_token1] = ACTIONS(1088), - [aux_sym_visibility_modifier_token2] = ACTIONS(1088), - [aux_sym_visibility_modifier_token3] = ACTIONS(1088), - [aux_sym__arrow_function_header_token1] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(1086), - [aux_sym_cast_type_token1] = ACTIONS(1088), - [aux_sym_echo_statement_token1] = ACTIONS(1088), - [anon_sym_unset] = ACTIONS(1088), - [aux_sym_declare_statement_token1] = ACTIONS(1088), - [aux_sym_declare_statement_token2] = ACTIONS(1088), - [sym_float] = ACTIONS(1088), - [aux_sym_try_statement_token1] = ACTIONS(1088), - [aux_sym_goto_statement_token1] = ACTIONS(1088), - [aux_sym_continue_statement_token1] = ACTIONS(1088), - [aux_sym_break_statement_token1] = ACTIONS(1088), - [sym_integer] = ACTIONS(1088), - [aux_sym_return_statement_token1] = ACTIONS(1088), - [aux_sym_throw_expression_token1] = ACTIONS(1088), - [aux_sym_while_statement_token1] = ACTIONS(1088), - [aux_sym_while_statement_token2] = ACTIONS(1088), - [aux_sym_do_statement_token1] = ACTIONS(1088), - [aux_sym_for_statement_token1] = ACTIONS(1088), - [aux_sym_for_statement_token2] = ACTIONS(1088), - [aux_sym_foreach_statement_token1] = ACTIONS(1088), - [aux_sym_foreach_statement_token2] = ACTIONS(1088), - [aux_sym_if_statement_token1] = ACTIONS(1088), - [aux_sym_if_statement_token2] = ACTIONS(1088), - [aux_sym_else_if_clause_token1] = ACTIONS(1088), - [aux_sym_else_clause_token1] = ACTIONS(1088), - [aux_sym_match_expression_token1] = ACTIONS(1088), - [aux_sym_match_default_expression_token1] = ACTIONS(1088), - [aux_sym_switch_statement_token1] = ACTIONS(1088), - [aux_sym_switch_block_token1] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_AT] = ACTIONS(1086), - [aux_sym_clone_expression_token1] = ACTIONS(1088), - [aux_sym_print_intrinsic_token1] = ACTIONS(1088), - [aux_sym_object_creation_expression_token1] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [aux_sym__list_destructing_token1] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1086), - [anon_sym_self] = ACTIONS(1088), - [anon_sym_parent] = ACTIONS(1088), - [aux_sym__argument_name_token1] = ACTIONS(1088), - [aux_sym__argument_name_token2] = ACTIONS(1088), - [anon_sym_POUND_LBRACK] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [aux_sym_encapsed_string_token1] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [aux_sym_string_token1] = ACTIONS(1086), - [anon_sym_LT_LT_LT] = ACTIONS(1086), - [anon_sym_BQUOTE] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(1086), - [aux_sym_yield_expression_token1] = ACTIONS(1088), - [aux_sym_include_expression_token1] = ACTIONS(1088), - [aux_sym_include_once_expression_token1] = ACTIONS(1088), - [aux_sym_require_expression_token1] = ACTIONS(1088), - [aux_sym_require_once_expression_token1] = ACTIONS(1088), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1090), + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_name] = ACTIONS(1090), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1092), + [aux_sym_function_static_declaration_token1] = ACTIONS(1090), + [aux_sym_global_declaration_token1] = ACTIONS(1090), + [aux_sym_namespace_definition_token1] = ACTIONS(1090), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1090), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1090), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1090), + [anon_sym_BSLASH] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [aux_sym_trait_declaration_token1] = ACTIONS(1090), + [aux_sym_interface_declaration_token1] = ACTIONS(1090), + [aux_sym_enum_declaration_token1] = ACTIONS(1090), + [aux_sym_enum_case_token1] = ACTIONS(1090), + [aux_sym_class_declaration_token1] = ACTIONS(1090), + [aux_sym_final_modifier_token1] = ACTIONS(1090), + [aux_sym_abstract_modifier_token1] = ACTIONS(1090), + [aux_sym_readonly_modifier_token1] = ACTIONS(1090), + [aux_sym_visibility_modifier_token1] = ACTIONS(1090), + [aux_sym_visibility_modifier_token2] = ACTIONS(1090), + [aux_sym_visibility_modifier_token3] = ACTIONS(1090), + [aux_sym__arrow_function_header_token1] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1088), + [aux_sym_cast_type_token1] = ACTIONS(1090), + [aux_sym_echo_statement_token1] = ACTIONS(1090), + [anon_sym_unset] = ACTIONS(1090), + [aux_sym_declare_statement_token1] = ACTIONS(1090), + [aux_sym_declare_statement_token2] = ACTIONS(1090), + [sym_float] = ACTIONS(1090), + [aux_sym_try_statement_token1] = ACTIONS(1090), + [aux_sym_goto_statement_token1] = ACTIONS(1090), + [aux_sym_continue_statement_token1] = ACTIONS(1090), + [aux_sym_break_statement_token1] = ACTIONS(1090), + [sym_integer] = ACTIONS(1090), + [aux_sym_return_statement_token1] = ACTIONS(1090), + [aux_sym_throw_expression_token1] = ACTIONS(1090), + [aux_sym_while_statement_token1] = ACTIONS(1090), + [aux_sym_while_statement_token2] = ACTIONS(1090), + [aux_sym_do_statement_token1] = ACTIONS(1090), + [aux_sym_for_statement_token1] = ACTIONS(1090), + [aux_sym_for_statement_token2] = ACTIONS(1090), + [aux_sym_foreach_statement_token1] = ACTIONS(1090), + [aux_sym_foreach_statement_token2] = ACTIONS(1090), + [aux_sym_if_statement_token1] = ACTIONS(1090), + [aux_sym_if_statement_token2] = ACTIONS(1090), + [aux_sym_else_if_clause_token1] = ACTIONS(1090), + [aux_sym_else_clause_token1] = ACTIONS(1090), + [aux_sym_match_expression_token1] = ACTIONS(1090), + [aux_sym_match_default_expression_token1] = ACTIONS(1090), + [aux_sym_switch_statement_token1] = ACTIONS(1090), + [aux_sym_switch_block_token1] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1088), + [aux_sym_clone_expression_token1] = ACTIONS(1090), + [aux_sym_print_intrinsic_token1] = ACTIONS(1090), + [aux_sym_object_creation_expression_token1] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [aux_sym__list_destructing_token1] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_self] = ACTIONS(1090), + [anon_sym_parent] = ACTIONS(1090), + [aux_sym__argument_name_token1] = ACTIONS(1090), + [aux_sym__argument_name_token2] = ACTIONS(1090), + [anon_sym_POUND_LBRACK] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [aux_sym_encapsed_string_token1] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [aux_sym_string_token1] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [anon_sym_BQUOTE] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1088), + [aux_sym_yield_expression_token1] = ACTIONS(1090), + [aux_sym_include_expression_token1] = ACTIONS(1090), + [aux_sym_include_once_expression_token1] = ACTIONS(1090), + [aux_sym_require_expression_token1] = ACTIONS(1090), + [aux_sym_require_once_expression_token1] = ACTIONS(1090), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1092), }, [444] = { [sym_text_interpolation] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_name] = ACTIONS(1094), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1096), - [aux_sym_function_static_declaration_token1] = ACTIONS(1094), - [aux_sym_global_declaration_token1] = ACTIONS(1094), - [aux_sym_namespace_definition_token1] = ACTIONS(1094), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1094), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1094), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1094), - [anon_sym_BSLASH] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [aux_sym_trait_declaration_token1] = ACTIONS(1094), - [aux_sym_interface_declaration_token1] = ACTIONS(1094), - [aux_sym_enum_declaration_token1] = ACTIONS(1094), - [aux_sym_enum_case_token1] = ACTIONS(1094), - [aux_sym_class_declaration_token1] = ACTIONS(1094), - [aux_sym_final_modifier_token1] = ACTIONS(1094), - [aux_sym_abstract_modifier_token1] = ACTIONS(1094), - [aux_sym_readonly_modifier_token1] = ACTIONS(1094), - [aux_sym_visibility_modifier_token1] = ACTIONS(1094), - [aux_sym_visibility_modifier_token2] = ACTIONS(1094), - [aux_sym_visibility_modifier_token3] = ACTIONS(1094), - [aux_sym__arrow_function_header_token1] = ACTIONS(1094), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_cast_type_token1] = ACTIONS(1094), - [aux_sym_echo_statement_token1] = ACTIONS(1094), - [anon_sym_unset] = ACTIONS(1094), - [aux_sym_declare_statement_token1] = ACTIONS(1094), - [aux_sym_declare_statement_token2] = ACTIONS(1094), - [sym_float] = ACTIONS(1094), - [aux_sym_try_statement_token1] = ACTIONS(1094), - [aux_sym_goto_statement_token1] = ACTIONS(1094), - [aux_sym_continue_statement_token1] = ACTIONS(1094), - [aux_sym_break_statement_token1] = ACTIONS(1094), - [sym_integer] = ACTIONS(1094), - [aux_sym_return_statement_token1] = ACTIONS(1094), - [aux_sym_throw_expression_token1] = ACTIONS(1094), - [aux_sym_while_statement_token1] = ACTIONS(1094), - [aux_sym_while_statement_token2] = ACTIONS(1094), - [aux_sym_do_statement_token1] = ACTIONS(1094), - [aux_sym_for_statement_token1] = ACTIONS(1094), - [aux_sym_for_statement_token2] = ACTIONS(1094), - [aux_sym_foreach_statement_token1] = ACTIONS(1094), - [aux_sym_foreach_statement_token2] = ACTIONS(1094), - [aux_sym_if_statement_token1] = ACTIONS(1094), - [aux_sym_if_statement_token2] = ACTIONS(1094), - [aux_sym_else_if_clause_token1] = ACTIONS(1094), - [aux_sym_else_clause_token1] = ACTIONS(1094), - [aux_sym_match_expression_token1] = ACTIONS(1094), - [aux_sym_match_default_expression_token1] = ACTIONS(1094), - [aux_sym_switch_statement_token1] = ACTIONS(1094), - [aux_sym_switch_block_token1] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1092), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_AT] = ACTIONS(1092), - [aux_sym_clone_expression_token1] = ACTIONS(1094), - [aux_sym_print_intrinsic_token1] = ACTIONS(1094), - [aux_sym_object_creation_expression_token1] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [aux_sym__list_destructing_token1] = ACTIONS(1094), - [anon_sym_LBRACK] = ACTIONS(1092), - [anon_sym_self] = ACTIONS(1094), - [anon_sym_parent] = ACTIONS(1094), - [aux_sym__argument_name_token1] = ACTIONS(1094), - [aux_sym__argument_name_token2] = ACTIONS(1094), - [anon_sym_POUND_LBRACK] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1092), - [aux_sym_encapsed_string_token1] = ACTIONS(1092), - [anon_sym_DQUOTE] = ACTIONS(1092), - [aux_sym_string_token1] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [anon_sym_BQUOTE] = ACTIONS(1092), - [anon_sym_DOLLAR] = ACTIONS(1092), - [aux_sym_yield_expression_token1] = ACTIONS(1094), - [aux_sym_include_expression_token1] = ACTIONS(1094), - [aux_sym_include_once_expression_token1] = ACTIONS(1094), - [aux_sym_require_expression_token1] = ACTIONS(1094), - [aux_sym_require_once_expression_token1] = ACTIONS(1094), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1096), + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_name] = ACTIONS(1096), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1098), + [aux_sym_function_static_declaration_token1] = ACTIONS(1096), + [aux_sym_global_declaration_token1] = ACTIONS(1096), + [aux_sym_namespace_definition_token1] = ACTIONS(1096), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1096), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1096), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1096), + [anon_sym_BSLASH] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), + [aux_sym_trait_declaration_token1] = ACTIONS(1096), + [aux_sym_interface_declaration_token1] = ACTIONS(1096), + [aux_sym_enum_declaration_token1] = ACTIONS(1096), + [aux_sym_enum_case_token1] = ACTIONS(1096), + [aux_sym_class_declaration_token1] = ACTIONS(1096), + [aux_sym_final_modifier_token1] = ACTIONS(1096), + [aux_sym_abstract_modifier_token1] = ACTIONS(1096), + [aux_sym_readonly_modifier_token1] = ACTIONS(1096), + [aux_sym_visibility_modifier_token1] = ACTIONS(1096), + [aux_sym_visibility_modifier_token2] = ACTIONS(1096), + [aux_sym_visibility_modifier_token3] = ACTIONS(1096), + [aux_sym__arrow_function_header_token1] = ACTIONS(1096), + [anon_sym_LPAREN] = ACTIONS(1094), + [aux_sym_cast_type_token1] = ACTIONS(1096), + [aux_sym_echo_statement_token1] = ACTIONS(1096), + [anon_sym_unset] = ACTIONS(1096), + [aux_sym_declare_statement_token1] = ACTIONS(1096), + [aux_sym_declare_statement_token2] = ACTIONS(1096), + [sym_float] = ACTIONS(1096), + [aux_sym_try_statement_token1] = ACTIONS(1096), + [aux_sym_goto_statement_token1] = ACTIONS(1096), + [aux_sym_continue_statement_token1] = ACTIONS(1096), + [aux_sym_break_statement_token1] = ACTIONS(1096), + [sym_integer] = ACTIONS(1096), + [aux_sym_return_statement_token1] = ACTIONS(1096), + [aux_sym_throw_expression_token1] = ACTIONS(1096), + [aux_sym_while_statement_token1] = ACTIONS(1096), + [aux_sym_while_statement_token2] = ACTIONS(1096), + [aux_sym_do_statement_token1] = ACTIONS(1096), + [aux_sym_for_statement_token1] = ACTIONS(1096), + [aux_sym_for_statement_token2] = ACTIONS(1096), + [aux_sym_foreach_statement_token1] = ACTIONS(1096), + [aux_sym_foreach_statement_token2] = ACTIONS(1096), + [aux_sym_if_statement_token1] = ACTIONS(1096), + [aux_sym_if_statement_token2] = ACTIONS(1096), + [aux_sym_else_if_clause_token1] = ACTIONS(1096), + [aux_sym_else_clause_token1] = ACTIONS(1096), + [aux_sym_match_expression_token1] = ACTIONS(1096), + [aux_sym_match_default_expression_token1] = ACTIONS(1096), + [aux_sym_switch_statement_token1] = ACTIONS(1096), + [aux_sym_switch_block_token1] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_AT] = ACTIONS(1094), + [aux_sym_clone_expression_token1] = ACTIONS(1096), + [aux_sym_print_intrinsic_token1] = ACTIONS(1096), + [aux_sym_object_creation_expression_token1] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [aux_sym__list_destructing_token1] = ACTIONS(1096), + [anon_sym_LBRACK] = ACTIONS(1094), + [anon_sym_self] = ACTIONS(1096), + [anon_sym_parent] = ACTIONS(1096), + [aux_sym__argument_name_token1] = ACTIONS(1096), + [aux_sym__argument_name_token2] = ACTIONS(1096), + [anon_sym_POUND_LBRACK] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [aux_sym_encapsed_string_token1] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [aux_sym_string_token1] = ACTIONS(1094), + [anon_sym_LT_LT_LT] = ACTIONS(1094), + [anon_sym_BQUOTE] = ACTIONS(1094), + [anon_sym_DOLLAR] = ACTIONS(1094), + [aux_sym_yield_expression_token1] = ACTIONS(1096), + [aux_sym_include_expression_token1] = ACTIONS(1096), + [aux_sym_include_once_expression_token1] = ACTIONS(1096), + [aux_sym_require_expression_token1] = ACTIONS(1096), + [aux_sym_require_once_expression_token1] = ACTIONS(1096), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1098), }, [445] = { [sym_text_interpolation] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(1098), - [sym_name] = ACTIONS(1100), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1102), - [aux_sym_function_static_declaration_token1] = ACTIONS(1100), - [aux_sym_global_declaration_token1] = ACTIONS(1100), - [aux_sym_namespace_definition_token1] = ACTIONS(1100), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1100), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1100), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1100), - [anon_sym_BSLASH] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [aux_sym_trait_declaration_token1] = ACTIONS(1100), - [aux_sym_interface_declaration_token1] = ACTIONS(1100), - [aux_sym_enum_declaration_token1] = ACTIONS(1100), - [aux_sym_enum_case_token1] = ACTIONS(1100), - [aux_sym_class_declaration_token1] = ACTIONS(1100), - [aux_sym_final_modifier_token1] = ACTIONS(1100), - [aux_sym_abstract_modifier_token1] = ACTIONS(1100), - [aux_sym_readonly_modifier_token1] = ACTIONS(1100), - [aux_sym_visibility_modifier_token1] = ACTIONS(1100), - [aux_sym_visibility_modifier_token2] = ACTIONS(1100), - [aux_sym_visibility_modifier_token3] = ACTIONS(1100), - [aux_sym__arrow_function_header_token1] = ACTIONS(1100), - [anon_sym_LPAREN] = ACTIONS(1098), - [aux_sym_cast_type_token1] = ACTIONS(1100), - [aux_sym_echo_statement_token1] = ACTIONS(1100), - [anon_sym_unset] = ACTIONS(1100), - [aux_sym_declare_statement_token1] = ACTIONS(1100), - [aux_sym_declare_statement_token2] = ACTIONS(1100), - [sym_float] = ACTIONS(1100), - [aux_sym_try_statement_token1] = ACTIONS(1100), - [aux_sym_goto_statement_token1] = ACTIONS(1100), - [aux_sym_continue_statement_token1] = ACTIONS(1100), - [aux_sym_break_statement_token1] = ACTIONS(1100), - [sym_integer] = ACTIONS(1100), - [aux_sym_return_statement_token1] = ACTIONS(1100), - [aux_sym_throw_expression_token1] = ACTIONS(1100), - [aux_sym_while_statement_token1] = ACTIONS(1100), - [aux_sym_while_statement_token2] = ACTIONS(1100), - [aux_sym_do_statement_token1] = ACTIONS(1100), - [aux_sym_for_statement_token1] = ACTIONS(1100), - [aux_sym_for_statement_token2] = ACTIONS(1100), - [aux_sym_foreach_statement_token1] = ACTIONS(1100), - [aux_sym_foreach_statement_token2] = ACTIONS(1100), - [aux_sym_if_statement_token1] = ACTIONS(1100), - [aux_sym_if_statement_token2] = ACTIONS(1100), - [aux_sym_else_if_clause_token1] = ACTIONS(1100), - [aux_sym_else_clause_token1] = ACTIONS(1100), - [aux_sym_match_expression_token1] = ACTIONS(1100), - [aux_sym_match_default_expression_token1] = ACTIONS(1100), - [aux_sym_switch_statement_token1] = ACTIONS(1100), - [aux_sym_switch_block_token1] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_AT] = ACTIONS(1098), - [aux_sym_clone_expression_token1] = ACTIONS(1100), - [aux_sym_print_intrinsic_token1] = ACTIONS(1100), - [aux_sym_object_creation_expression_token1] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [aux_sym__list_destructing_token1] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_self] = ACTIONS(1100), - [anon_sym_parent] = ACTIONS(1100), - [aux_sym__argument_name_token1] = ACTIONS(1100), - [aux_sym__argument_name_token2] = ACTIONS(1100), - [anon_sym_POUND_LBRACK] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [aux_sym_encapsed_string_token1] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [aux_sym_string_token1] = ACTIONS(1098), - [anon_sym_LT_LT_LT] = ACTIONS(1098), - [anon_sym_BQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [aux_sym_yield_expression_token1] = ACTIONS(1100), - [aux_sym_include_expression_token1] = ACTIONS(1100), - [aux_sym_include_once_expression_token1] = ACTIONS(1100), - [aux_sym_require_expression_token1] = ACTIONS(1100), - [aux_sym_require_once_expression_token1] = ACTIONS(1100), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1102), + [ts_builtin_sym_end] = ACTIONS(1100), + [sym_name] = ACTIONS(1102), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1104), + [aux_sym_function_static_declaration_token1] = ACTIONS(1102), + [aux_sym_global_declaration_token1] = ACTIONS(1102), + [aux_sym_namespace_definition_token1] = ACTIONS(1102), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1102), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1102), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1102), + [anon_sym_BSLASH] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1100), + [aux_sym_trait_declaration_token1] = ACTIONS(1102), + [aux_sym_interface_declaration_token1] = ACTIONS(1102), + [aux_sym_enum_declaration_token1] = ACTIONS(1102), + [aux_sym_enum_case_token1] = ACTIONS(1102), + [aux_sym_class_declaration_token1] = ACTIONS(1102), + [aux_sym_final_modifier_token1] = ACTIONS(1102), + [aux_sym_abstract_modifier_token1] = ACTIONS(1102), + [aux_sym_readonly_modifier_token1] = ACTIONS(1102), + [aux_sym_visibility_modifier_token1] = ACTIONS(1102), + [aux_sym_visibility_modifier_token2] = ACTIONS(1102), + [aux_sym_visibility_modifier_token3] = ACTIONS(1102), + [aux_sym__arrow_function_header_token1] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [aux_sym_cast_type_token1] = ACTIONS(1102), + [aux_sym_echo_statement_token1] = ACTIONS(1102), + [anon_sym_unset] = ACTIONS(1102), + [aux_sym_declare_statement_token1] = ACTIONS(1102), + [aux_sym_declare_statement_token2] = ACTIONS(1102), + [sym_float] = ACTIONS(1102), + [aux_sym_try_statement_token1] = ACTIONS(1102), + [aux_sym_goto_statement_token1] = ACTIONS(1102), + [aux_sym_continue_statement_token1] = ACTIONS(1102), + [aux_sym_break_statement_token1] = ACTIONS(1102), + [sym_integer] = ACTIONS(1102), + [aux_sym_return_statement_token1] = ACTIONS(1102), + [aux_sym_throw_expression_token1] = ACTIONS(1102), + [aux_sym_while_statement_token1] = ACTIONS(1102), + [aux_sym_while_statement_token2] = ACTIONS(1102), + [aux_sym_do_statement_token1] = ACTIONS(1102), + [aux_sym_for_statement_token1] = ACTIONS(1102), + [aux_sym_for_statement_token2] = ACTIONS(1102), + [aux_sym_foreach_statement_token1] = ACTIONS(1102), + [aux_sym_foreach_statement_token2] = ACTIONS(1102), + [aux_sym_if_statement_token1] = ACTIONS(1102), + [aux_sym_if_statement_token2] = ACTIONS(1102), + [aux_sym_else_if_clause_token1] = ACTIONS(1102), + [aux_sym_else_clause_token1] = ACTIONS(1102), + [aux_sym_match_expression_token1] = ACTIONS(1102), + [aux_sym_match_default_expression_token1] = ACTIONS(1102), + [aux_sym_switch_statement_token1] = ACTIONS(1102), + [aux_sym_switch_block_token1] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1100), + [aux_sym_clone_expression_token1] = ACTIONS(1102), + [aux_sym_print_intrinsic_token1] = ACTIONS(1102), + [aux_sym_object_creation_expression_token1] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1100), + [aux_sym__list_destructing_token1] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_self] = ACTIONS(1102), + [anon_sym_parent] = ACTIONS(1102), + [aux_sym__argument_name_token1] = ACTIONS(1102), + [aux_sym__argument_name_token2] = ACTIONS(1102), + [anon_sym_POUND_LBRACK] = ACTIONS(1100), + [anon_sym_SQUOTE] = ACTIONS(1100), + [aux_sym_encapsed_string_token1] = ACTIONS(1100), + [anon_sym_DQUOTE] = ACTIONS(1100), + [aux_sym_string_token1] = ACTIONS(1100), + [anon_sym_LT_LT_LT] = ACTIONS(1100), + [anon_sym_BQUOTE] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1100), + [aux_sym_yield_expression_token1] = ACTIONS(1102), + [aux_sym_include_expression_token1] = ACTIONS(1102), + [aux_sym_include_once_expression_token1] = ACTIONS(1102), + [aux_sym_require_expression_token1] = ACTIONS(1102), + [aux_sym_require_once_expression_token1] = ACTIONS(1102), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1104), }, [446] = { [sym_text_interpolation] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(1104), - [sym_name] = ACTIONS(1106), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1108), - [aux_sym_function_static_declaration_token1] = ACTIONS(1106), - [aux_sym_global_declaration_token1] = ACTIONS(1106), - [aux_sym_namespace_definition_token1] = ACTIONS(1106), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1106), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1106), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1106), - [anon_sym_BSLASH] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1104), - [aux_sym_trait_declaration_token1] = ACTIONS(1106), - [aux_sym_interface_declaration_token1] = ACTIONS(1106), - [aux_sym_enum_declaration_token1] = ACTIONS(1106), - [aux_sym_enum_case_token1] = ACTIONS(1106), - [aux_sym_class_declaration_token1] = ACTIONS(1106), - [aux_sym_final_modifier_token1] = ACTIONS(1106), - [aux_sym_abstract_modifier_token1] = ACTIONS(1106), - [aux_sym_readonly_modifier_token1] = ACTIONS(1106), - [aux_sym_visibility_modifier_token1] = ACTIONS(1106), - [aux_sym_visibility_modifier_token2] = ACTIONS(1106), - [aux_sym_visibility_modifier_token3] = ACTIONS(1106), - [aux_sym__arrow_function_header_token1] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1104), - [aux_sym_cast_type_token1] = ACTIONS(1106), - [aux_sym_echo_statement_token1] = ACTIONS(1106), - [anon_sym_unset] = ACTIONS(1106), - [aux_sym_declare_statement_token1] = ACTIONS(1106), - [aux_sym_declare_statement_token2] = ACTIONS(1106), - [sym_float] = ACTIONS(1106), - [aux_sym_try_statement_token1] = ACTIONS(1106), - [aux_sym_goto_statement_token1] = ACTIONS(1106), - [aux_sym_continue_statement_token1] = ACTIONS(1106), - [aux_sym_break_statement_token1] = ACTIONS(1106), - [sym_integer] = ACTIONS(1106), - [aux_sym_return_statement_token1] = ACTIONS(1106), - [aux_sym_throw_expression_token1] = ACTIONS(1106), - [aux_sym_while_statement_token1] = ACTIONS(1106), - [aux_sym_while_statement_token2] = ACTIONS(1106), - [aux_sym_do_statement_token1] = ACTIONS(1106), - [aux_sym_for_statement_token1] = ACTIONS(1106), - [aux_sym_for_statement_token2] = ACTIONS(1106), - [aux_sym_foreach_statement_token1] = ACTIONS(1106), - [aux_sym_foreach_statement_token2] = ACTIONS(1106), - [aux_sym_if_statement_token1] = ACTIONS(1106), - [aux_sym_if_statement_token2] = ACTIONS(1106), - [aux_sym_else_if_clause_token1] = ACTIONS(1106), - [aux_sym_else_clause_token1] = ACTIONS(1106), - [aux_sym_match_expression_token1] = ACTIONS(1106), - [aux_sym_match_default_expression_token1] = ACTIONS(1106), - [aux_sym_switch_statement_token1] = ACTIONS(1106), - [aux_sym_switch_block_token1] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_AT] = ACTIONS(1104), - [aux_sym_clone_expression_token1] = ACTIONS(1106), - [aux_sym_print_intrinsic_token1] = ACTIONS(1106), - [aux_sym_object_creation_expression_token1] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [aux_sym__list_destructing_token1] = ACTIONS(1106), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_self] = ACTIONS(1106), - [anon_sym_parent] = ACTIONS(1106), - [aux_sym__argument_name_token1] = ACTIONS(1106), - [aux_sym__argument_name_token2] = ACTIONS(1106), - [anon_sym_POUND_LBRACK] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [aux_sym_encapsed_string_token1] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1104), - [aux_sym_string_token1] = ACTIONS(1104), - [anon_sym_LT_LT_LT] = ACTIONS(1104), - [anon_sym_BQUOTE] = ACTIONS(1104), - [anon_sym_DOLLAR] = ACTIONS(1104), - [aux_sym_yield_expression_token1] = ACTIONS(1106), - [aux_sym_include_expression_token1] = ACTIONS(1106), - [aux_sym_include_once_expression_token1] = ACTIONS(1106), - [aux_sym_require_expression_token1] = ACTIONS(1106), - [aux_sym_require_once_expression_token1] = ACTIONS(1106), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1108), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_name] = ACTIONS(1108), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1110), + [aux_sym_function_static_declaration_token1] = ACTIONS(1108), + [aux_sym_global_declaration_token1] = ACTIONS(1108), + [aux_sym_namespace_definition_token1] = ACTIONS(1108), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1108), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1108), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1108), + [anon_sym_BSLASH] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [aux_sym_trait_declaration_token1] = ACTIONS(1108), + [aux_sym_interface_declaration_token1] = ACTIONS(1108), + [aux_sym_enum_declaration_token1] = ACTIONS(1108), + [aux_sym_enum_case_token1] = ACTIONS(1108), + [aux_sym_class_declaration_token1] = ACTIONS(1108), + [aux_sym_final_modifier_token1] = ACTIONS(1108), + [aux_sym_abstract_modifier_token1] = ACTIONS(1108), + [aux_sym_readonly_modifier_token1] = ACTIONS(1108), + [aux_sym_visibility_modifier_token1] = ACTIONS(1108), + [aux_sym_visibility_modifier_token2] = ACTIONS(1108), + [aux_sym_visibility_modifier_token3] = ACTIONS(1108), + [aux_sym__arrow_function_header_token1] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1106), + [aux_sym_cast_type_token1] = ACTIONS(1108), + [aux_sym_echo_statement_token1] = ACTIONS(1108), + [anon_sym_unset] = ACTIONS(1108), + [aux_sym_declare_statement_token1] = ACTIONS(1108), + [aux_sym_declare_statement_token2] = ACTIONS(1108), + [sym_float] = ACTIONS(1108), + [aux_sym_try_statement_token1] = ACTIONS(1108), + [aux_sym_goto_statement_token1] = ACTIONS(1108), + [aux_sym_continue_statement_token1] = ACTIONS(1108), + [aux_sym_break_statement_token1] = ACTIONS(1108), + [sym_integer] = ACTIONS(1108), + [aux_sym_return_statement_token1] = ACTIONS(1108), + [aux_sym_throw_expression_token1] = ACTIONS(1108), + [aux_sym_while_statement_token1] = ACTIONS(1108), + [aux_sym_while_statement_token2] = ACTIONS(1108), + [aux_sym_do_statement_token1] = ACTIONS(1108), + [aux_sym_for_statement_token1] = ACTIONS(1108), + [aux_sym_for_statement_token2] = ACTIONS(1108), + [aux_sym_foreach_statement_token1] = ACTIONS(1108), + [aux_sym_foreach_statement_token2] = ACTIONS(1108), + [aux_sym_if_statement_token1] = ACTIONS(1108), + [aux_sym_if_statement_token2] = ACTIONS(1108), + [aux_sym_else_if_clause_token1] = ACTIONS(1108), + [aux_sym_else_clause_token1] = ACTIONS(1108), + [aux_sym_match_expression_token1] = ACTIONS(1108), + [aux_sym_match_default_expression_token1] = ACTIONS(1108), + [aux_sym_switch_statement_token1] = ACTIONS(1108), + [aux_sym_switch_block_token1] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_AT] = ACTIONS(1106), + [aux_sym_clone_expression_token1] = ACTIONS(1108), + [aux_sym_print_intrinsic_token1] = ACTIONS(1108), + [aux_sym_object_creation_expression_token1] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [aux_sym__list_destructing_token1] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_self] = ACTIONS(1108), + [anon_sym_parent] = ACTIONS(1108), + [aux_sym__argument_name_token1] = ACTIONS(1108), + [aux_sym__argument_name_token2] = ACTIONS(1108), + [anon_sym_POUND_LBRACK] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [aux_sym_encapsed_string_token1] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [aux_sym_string_token1] = ACTIONS(1106), + [anon_sym_LT_LT_LT] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1106), + [aux_sym_yield_expression_token1] = ACTIONS(1108), + [aux_sym_include_expression_token1] = ACTIONS(1108), + [aux_sym_include_once_expression_token1] = ACTIONS(1108), + [aux_sym_require_expression_token1] = ACTIONS(1108), + [aux_sym_require_once_expression_token1] = ACTIONS(1108), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1110), }, [447] = { [sym_text_interpolation] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_name] = ACTIONS(1112), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1114), - [aux_sym_function_static_declaration_token1] = ACTIONS(1112), - [aux_sym_global_declaration_token1] = ACTIONS(1112), - [aux_sym_namespace_definition_token1] = ACTIONS(1112), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1112), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1112), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1112), - [anon_sym_BSLASH] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1110), - [aux_sym_trait_declaration_token1] = ACTIONS(1112), - [aux_sym_interface_declaration_token1] = ACTIONS(1112), - [aux_sym_enum_declaration_token1] = ACTIONS(1112), - [aux_sym_enum_case_token1] = ACTIONS(1112), - [aux_sym_class_declaration_token1] = ACTIONS(1112), - [aux_sym_final_modifier_token1] = ACTIONS(1112), - [aux_sym_abstract_modifier_token1] = ACTIONS(1112), - [aux_sym_readonly_modifier_token1] = ACTIONS(1112), - [aux_sym_visibility_modifier_token1] = ACTIONS(1112), - [aux_sym_visibility_modifier_token2] = ACTIONS(1112), - [aux_sym_visibility_modifier_token3] = ACTIONS(1112), - [aux_sym__arrow_function_header_token1] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1110), - [aux_sym_cast_type_token1] = ACTIONS(1112), - [aux_sym_echo_statement_token1] = ACTIONS(1112), - [anon_sym_unset] = ACTIONS(1112), - [aux_sym_declare_statement_token1] = ACTIONS(1112), - [aux_sym_declare_statement_token2] = ACTIONS(1112), - [sym_float] = ACTIONS(1112), - [aux_sym_try_statement_token1] = ACTIONS(1112), - [aux_sym_goto_statement_token1] = ACTIONS(1112), - [aux_sym_continue_statement_token1] = ACTIONS(1112), - [aux_sym_break_statement_token1] = ACTIONS(1112), - [sym_integer] = ACTIONS(1112), - [aux_sym_return_statement_token1] = ACTIONS(1112), - [aux_sym_throw_expression_token1] = ACTIONS(1112), - [aux_sym_while_statement_token1] = ACTIONS(1112), - [aux_sym_while_statement_token2] = ACTIONS(1112), - [aux_sym_do_statement_token1] = ACTIONS(1112), - [aux_sym_for_statement_token1] = ACTIONS(1112), - [aux_sym_for_statement_token2] = ACTIONS(1112), - [aux_sym_foreach_statement_token1] = ACTIONS(1112), - [aux_sym_foreach_statement_token2] = ACTIONS(1112), - [aux_sym_if_statement_token1] = ACTIONS(1112), - [aux_sym_if_statement_token2] = ACTIONS(1112), - [aux_sym_else_if_clause_token1] = ACTIONS(1112), - [aux_sym_else_clause_token1] = ACTIONS(1112), - [aux_sym_match_expression_token1] = ACTIONS(1112), - [aux_sym_match_default_expression_token1] = ACTIONS(1112), - [aux_sym_switch_statement_token1] = ACTIONS(1112), - [aux_sym_switch_block_token1] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_AT] = ACTIONS(1110), - [aux_sym_clone_expression_token1] = ACTIONS(1112), - [aux_sym_print_intrinsic_token1] = ACTIONS(1112), - [aux_sym_object_creation_expression_token1] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [aux_sym__list_destructing_token1] = ACTIONS(1112), - [anon_sym_LBRACK] = ACTIONS(1110), - [anon_sym_self] = ACTIONS(1112), - [anon_sym_parent] = ACTIONS(1112), - [aux_sym__argument_name_token1] = ACTIONS(1112), - [aux_sym__argument_name_token2] = ACTIONS(1112), - [anon_sym_POUND_LBRACK] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [aux_sym_encapsed_string_token1] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [aux_sym_string_token1] = ACTIONS(1110), - [anon_sym_LT_LT_LT] = ACTIONS(1110), - [anon_sym_BQUOTE] = ACTIONS(1110), - [anon_sym_DOLLAR] = ACTIONS(1110), - [aux_sym_yield_expression_token1] = ACTIONS(1112), - [aux_sym_include_expression_token1] = ACTIONS(1112), - [aux_sym_include_once_expression_token1] = ACTIONS(1112), - [aux_sym_require_expression_token1] = ACTIONS(1112), - [aux_sym_require_once_expression_token1] = ACTIONS(1112), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1114), + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_name] = ACTIONS(1114), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1116), + [aux_sym_function_static_declaration_token1] = ACTIONS(1114), + [aux_sym_global_declaration_token1] = ACTIONS(1114), + [aux_sym_namespace_definition_token1] = ACTIONS(1114), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1114), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1114), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1114), + [anon_sym_BSLASH] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [aux_sym_trait_declaration_token1] = ACTIONS(1114), + [aux_sym_interface_declaration_token1] = ACTIONS(1114), + [aux_sym_enum_declaration_token1] = ACTIONS(1114), + [aux_sym_enum_case_token1] = ACTIONS(1114), + [aux_sym_class_declaration_token1] = ACTIONS(1114), + [aux_sym_final_modifier_token1] = ACTIONS(1114), + [aux_sym_abstract_modifier_token1] = ACTIONS(1114), + [aux_sym_readonly_modifier_token1] = ACTIONS(1114), + [aux_sym_visibility_modifier_token1] = ACTIONS(1114), + [aux_sym_visibility_modifier_token2] = ACTIONS(1114), + [aux_sym_visibility_modifier_token3] = ACTIONS(1114), + [aux_sym__arrow_function_header_token1] = ACTIONS(1114), + [anon_sym_LPAREN] = ACTIONS(1112), + [aux_sym_cast_type_token1] = ACTIONS(1114), + [aux_sym_echo_statement_token1] = ACTIONS(1114), + [anon_sym_unset] = ACTIONS(1114), + [aux_sym_declare_statement_token1] = ACTIONS(1114), + [aux_sym_declare_statement_token2] = ACTIONS(1114), + [sym_float] = ACTIONS(1114), + [aux_sym_try_statement_token1] = ACTIONS(1114), + [aux_sym_goto_statement_token1] = ACTIONS(1114), + [aux_sym_continue_statement_token1] = ACTIONS(1114), + [aux_sym_break_statement_token1] = ACTIONS(1114), + [sym_integer] = ACTIONS(1114), + [aux_sym_return_statement_token1] = ACTIONS(1114), + [aux_sym_throw_expression_token1] = ACTIONS(1114), + [aux_sym_while_statement_token1] = ACTIONS(1114), + [aux_sym_while_statement_token2] = ACTIONS(1114), + [aux_sym_do_statement_token1] = ACTIONS(1114), + [aux_sym_for_statement_token1] = ACTIONS(1114), + [aux_sym_for_statement_token2] = ACTIONS(1114), + [aux_sym_foreach_statement_token1] = ACTIONS(1114), + [aux_sym_foreach_statement_token2] = ACTIONS(1114), + [aux_sym_if_statement_token1] = ACTIONS(1114), + [aux_sym_if_statement_token2] = ACTIONS(1114), + [aux_sym_else_if_clause_token1] = ACTIONS(1114), + [aux_sym_else_clause_token1] = ACTIONS(1114), + [aux_sym_match_expression_token1] = ACTIONS(1114), + [aux_sym_match_default_expression_token1] = ACTIONS(1114), + [aux_sym_switch_statement_token1] = ACTIONS(1114), + [aux_sym_switch_block_token1] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1112), + [aux_sym_clone_expression_token1] = ACTIONS(1114), + [aux_sym_print_intrinsic_token1] = ACTIONS(1114), + [aux_sym_object_creation_expression_token1] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [aux_sym__list_destructing_token1] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(1112), + [anon_sym_self] = ACTIONS(1114), + [anon_sym_parent] = ACTIONS(1114), + [aux_sym__argument_name_token1] = ACTIONS(1114), + [aux_sym__argument_name_token2] = ACTIONS(1114), + [anon_sym_POUND_LBRACK] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [aux_sym_encapsed_string_token1] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [aux_sym_string_token1] = ACTIONS(1112), + [anon_sym_LT_LT_LT] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1112), + [aux_sym_yield_expression_token1] = ACTIONS(1114), + [aux_sym_include_expression_token1] = ACTIONS(1114), + [aux_sym_include_once_expression_token1] = ACTIONS(1114), + [aux_sym_require_expression_token1] = ACTIONS(1114), + [aux_sym_require_once_expression_token1] = ACTIONS(1114), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1116), }, [448] = { [sym_text_interpolation] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(1116), - [sym_name] = ACTIONS(1118), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1120), - [aux_sym_function_static_declaration_token1] = ACTIONS(1118), - [aux_sym_global_declaration_token1] = ACTIONS(1118), - [aux_sym_namespace_definition_token1] = ACTIONS(1118), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1118), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1118), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1118), - [anon_sym_BSLASH] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_RBRACE] = ACTIONS(1116), - [aux_sym_trait_declaration_token1] = ACTIONS(1118), - [aux_sym_interface_declaration_token1] = ACTIONS(1118), - [aux_sym_enum_declaration_token1] = ACTIONS(1118), - [aux_sym_enum_case_token1] = ACTIONS(1118), - [aux_sym_class_declaration_token1] = ACTIONS(1118), - [aux_sym_final_modifier_token1] = ACTIONS(1118), - [aux_sym_abstract_modifier_token1] = ACTIONS(1118), - [aux_sym_readonly_modifier_token1] = ACTIONS(1118), - [aux_sym_visibility_modifier_token1] = ACTIONS(1118), - [aux_sym_visibility_modifier_token2] = ACTIONS(1118), - [aux_sym_visibility_modifier_token3] = ACTIONS(1118), - [aux_sym__arrow_function_header_token1] = ACTIONS(1118), - [anon_sym_LPAREN] = ACTIONS(1116), - [aux_sym_cast_type_token1] = ACTIONS(1118), - [aux_sym_echo_statement_token1] = ACTIONS(1118), - [anon_sym_unset] = ACTIONS(1118), - [aux_sym_declare_statement_token1] = ACTIONS(1118), - [aux_sym_declare_statement_token2] = ACTIONS(1118), - [sym_float] = ACTIONS(1118), - [aux_sym_try_statement_token1] = ACTIONS(1118), - [aux_sym_goto_statement_token1] = ACTIONS(1118), - [aux_sym_continue_statement_token1] = ACTIONS(1118), - [aux_sym_break_statement_token1] = ACTIONS(1118), - [sym_integer] = ACTIONS(1118), - [aux_sym_return_statement_token1] = ACTIONS(1118), - [aux_sym_throw_expression_token1] = ACTIONS(1118), - [aux_sym_while_statement_token1] = ACTIONS(1118), - [aux_sym_while_statement_token2] = ACTIONS(1118), - [aux_sym_do_statement_token1] = ACTIONS(1118), - [aux_sym_for_statement_token1] = ACTIONS(1118), - [aux_sym_for_statement_token2] = ACTIONS(1118), - [aux_sym_foreach_statement_token1] = ACTIONS(1118), - [aux_sym_foreach_statement_token2] = ACTIONS(1118), - [aux_sym_if_statement_token1] = ACTIONS(1118), - [aux_sym_if_statement_token2] = ACTIONS(1118), - [aux_sym_else_if_clause_token1] = ACTIONS(1118), - [aux_sym_else_clause_token1] = ACTIONS(1118), - [aux_sym_match_expression_token1] = ACTIONS(1118), - [aux_sym_match_default_expression_token1] = ACTIONS(1118), - [aux_sym_switch_statement_token1] = ACTIONS(1118), - [aux_sym_switch_block_token1] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1116), - [anon_sym_BANG] = ACTIONS(1116), - [anon_sym_AT] = ACTIONS(1116), - [aux_sym_clone_expression_token1] = ACTIONS(1118), - [aux_sym_print_intrinsic_token1] = ACTIONS(1118), - [aux_sym_object_creation_expression_token1] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1116), - [anon_sym_PLUS_PLUS] = ACTIONS(1116), - [aux_sym__list_destructing_token1] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_self] = ACTIONS(1118), - [anon_sym_parent] = ACTIONS(1118), - [aux_sym__argument_name_token1] = ACTIONS(1118), - [aux_sym__argument_name_token2] = ACTIONS(1118), - [anon_sym_POUND_LBRACK] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1116), - [aux_sym_encapsed_string_token1] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1116), - [aux_sym_string_token1] = ACTIONS(1116), - [anon_sym_LT_LT_LT] = ACTIONS(1116), - [anon_sym_BQUOTE] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1116), - [aux_sym_yield_expression_token1] = ACTIONS(1118), - [aux_sym_include_expression_token1] = ACTIONS(1118), - [aux_sym_include_once_expression_token1] = ACTIONS(1118), - [aux_sym_require_expression_token1] = ACTIONS(1118), - [aux_sym_require_once_expression_token1] = ACTIONS(1118), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1120), - }, - [449] = { - [sym_text_interpolation] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1122), - [sym_name] = ACTIONS(1124), - [anon_sym_QMARK_GT] = ACTIONS(18), + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_name] = ACTIONS(1120), + [anon_sym_QMARK_GT] = ACTIONS(20), [anon_sym_SEMI] = ACTIONS(1122), - [aux_sym_function_static_declaration_token1] = ACTIONS(1124), - [aux_sym_global_declaration_token1] = ACTIONS(1124), - [aux_sym_namespace_definition_token1] = ACTIONS(1124), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1124), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1124), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1124), - [anon_sym_BSLASH] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(1122), - [aux_sym_trait_declaration_token1] = ACTIONS(1124), - [aux_sym_interface_declaration_token1] = ACTIONS(1124), - [aux_sym_enum_declaration_token1] = ACTIONS(1124), - [aux_sym_enum_case_token1] = ACTIONS(1124), - [aux_sym_class_declaration_token1] = ACTIONS(1124), - [aux_sym_final_modifier_token1] = ACTIONS(1124), - [aux_sym_abstract_modifier_token1] = ACTIONS(1124), - [aux_sym_readonly_modifier_token1] = ACTIONS(1124), - [aux_sym_visibility_modifier_token1] = ACTIONS(1124), - [aux_sym_visibility_modifier_token2] = ACTIONS(1124), - [aux_sym_visibility_modifier_token3] = ACTIONS(1124), - [aux_sym__arrow_function_header_token1] = ACTIONS(1124), - [anon_sym_LPAREN] = ACTIONS(1122), - [aux_sym_cast_type_token1] = ACTIONS(1124), - [aux_sym_echo_statement_token1] = ACTIONS(1124), - [anon_sym_unset] = ACTIONS(1124), - [aux_sym_declare_statement_token1] = ACTIONS(1124), - [aux_sym_declare_statement_token2] = ACTIONS(1124), - [sym_float] = ACTIONS(1124), - [aux_sym_try_statement_token1] = ACTIONS(1124), - [aux_sym_goto_statement_token1] = ACTIONS(1124), - [aux_sym_continue_statement_token1] = ACTIONS(1124), - [aux_sym_break_statement_token1] = ACTIONS(1124), - [sym_integer] = ACTIONS(1124), - [aux_sym_return_statement_token1] = ACTIONS(1124), - [aux_sym_throw_expression_token1] = ACTIONS(1124), - [aux_sym_while_statement_token1] = ACTIONS(1124), - [aux_sym_while_statement_token2] = ACTIONS(1124), - [aux_sym_do_statement_token1] = ACTIONS(1124), - [aux_sym_for_statement_token1] = ACTIONS(1124), - [aux_sym_for_statement_token2] = ACTIONS(1124), - [aux_sym_foreach_statement_token1] = ACTIONS(1124), - [aux_sym_foreach_statement_token2] = ACTIONS(1124), - [aux_sym_if_statement_token1] = ACTIONS(1124), - [aux_sym_if_statement_token2] = ACTIONS(1124), - [aux_sym_else_if_clause_token1] = ACTIONS(1124), - [aux_sym_else_clause_token1] = ACTIONS(1124), - [aux_sym_match_expression_token1] = ACTIONS(1124), - [aux_sym_match_default_expression_token1] = ACTIONS(1124), - [aux_sym_switch_statement_token1] = ACTIONS(1124), - [aux_sym_switch_block_token1] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_AT] = ACTIONS(1122), - [aux_sym_clone_expression_token1] = ACTIONS(1124), - [aux_sym_print_intrinsic_token1] = ACTIONS(1124), - [aux_sym_object_creation_expression_token1] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [aux_sym__list_destructing_token1] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_self] = ACTIONS(1124), - [anon_sym_parent] = ACTIONS(1124), - [aux_sym__argument_name_token1] = ACTIONS(1124), - [aux_sym__argument_name_token2] = ACTIONS(1124), - [anon_sym_POUND_LBRACK] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [aux_sym_encapsed_string_token1] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [aux_sym_string_token1] = ACTIONS(1122), - [anon_sym_LT_LT_LT] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1122), - [anon_sym_DOLLAR] = ACTIONS(1122), - [aux_sym_yield_expression_token1] = ACTIONS(1124), - [aux_sym_include_expression_token1] = ACTIONS(1124), - [aux_sym_include_once_expression_token1] = ACTIONS(1124), - [aux_sym_require_expression_token1] = ACTIONS(1124), - [aux_sym_require_once_expression_token1] = ACTIONS(1124), + [aux_sym_function_static_declaration_token1] = ACTIONS(1120), + [aux_sym_global_declaration_token1] = ACTIONS(1120), + [aux_sym_namespace_definition_token1] = ACTIONS(1120), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1120), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1120), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1120), + [anon_sym_BSLASH] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [aux_sym_trait_declaration_token1] = ACTIONS(1120), + [aux_sym_interface_declaration_token1] = ACTIONS(1120), + [aux_sym_enum_declaration_token1] = ACTIONS(1120), + [aux_sym_enum_case_token1] = ACTIONS(1120), + [aux_sym_class_declaration_token1] = ACTIONS(1120), + [aux_sym_final_modifier_token1] = ACTIONS(1120), + [aux_sym_abstract_modifier_token1] = ACTIONS(1120), + [aux_sym_readonly_modifier_token1] = ACTIONS(1120), + [aux_sym_visibility_modifier_token1] = ACTIONS(1120), + [aux_sym_visibility_modifier_token2] = ACTIONS(1120), + [aux_sym_visibility_modifier_token3] = ACTIONS(1120), + [aux_sym__arrow_function_header_token1] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1118), + [aux_sym_cast_type_token1] = ACTIONS(1120), + [aux_sym_echo_statement_token1] = ACTIONS(1120), + [anon_sym_unset] = ACTIONS(1120), + [aux_sym_declare_statement_token1] = ACTIONS(1120), + [aux_sym_declare_statement_token2] = ACTIONS(1120), + [sym_float] = ACTIONS(1120), + [aux_sym_try_statement_token1] = ACTIONS(1120), + [aux_sym_goto_statement_token1] = ACTIONS(1120), + [aux_sym_continue_statement_token1] = ACTIONS(1120), + [aux_sym_break_statement_token1] = ACTIONS(1120), + [sym_integer] = ACTIONS(1120), + [aux_sym_return_statement_token1] = ACTIONS(1120), + [aux_sym_throw_expression_token1] = ACTIONS(1120), + [aux_sym_while_statement_token1] = ACTIONS(1120), + [aux_sym_while_statement_token2] = ACTIONS(1120), + [aux_sym_do_statement_token1] = ACTIONS(1120), + [aux_sym_for_statement_token1] = ACTIONS(1120), + [aux_sym_for_statement_token2] = ACTIONS(1120), + [aux_sym_foreach_statement_token1] = ACTIONS(1120), + [aux_sym_foreach_statement_token2] = ACTIONS(1120), + [aux_sym_if_statement_token1] = ACTIONS(1120), + [aux_sym_if_statement_token2] = ACTIONS(1120), + [aux_sym_else_if_clause_token1] = ACTIONS(1120), + [aux_sym_else_clause_token1] = ACTIONS(1120), + [aux_sym_match_expression_token1] = ACTIONS(1120), + [aux_sym_match_default_expression_token1] = ACTIONS(1120), + [aux_sym_switch_statement_token1] = ACTIONS(1120), + [aux_sym_switch_block_token1] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_AT] = ACTIONS(1118), + [aux_sym_clone_expression_token1] = ACTIONS(1120), + [aux_sym_print_intrinsic_token1] = ACTIONS(1120), + [aux_sym_object_creation_expression_token1] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [aux_sym__list_destructing_token1] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1118), + [anon_sym_self] = ACTIONS(1120), + [anon_sym_parent] = ACTIONS(1120), + [aux_sym__argument_name_token1] = ACTIONS(1120), + [aux_sym__argument_name_token2] = ACTIONS(1120), + [anon_sym_POUND_LBRACK] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [aux_sym_encapsed_string_token1] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [aux_sym_string_token1] = ACTIONS(1118), + [anon_sym_LT_LT_LT] = ACTIONS(1118), + [anon_sym_BQUOTE] = ACTIONS(1118), + [anon_sym_DOLLAR] = ACTIONS(1118), + [aux_sym_yield_expression_token1] = ACTIONS(1120), + [aux_sym_include_expression_token1] = ACTIONS(1120), + [aux_sym_include_once_expression_token1] = ACTIONS(1120), + [aux_sym_require_expression_token1] = ACTIONS(1120), + [aux_sym_require_once_expression_token1] = ACTIONS(1120), [sym_comment] = ACTIONS(5), [sym__automatic_semicolon] = ACTIONS(1122), }, + [449] = { + [sym_text_interpolation] = STATE(449), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_name] = ACTIONS(1126), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1124), + [aux_sym_function_static_declaration_token1] = ACTIONS(1126), + [aux_sym_global_declaration_token1] = ACTIONS(1126), + [aux_sym_namespace_definition_token1] = ACTIONS(1126), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1126), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1126), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1126), + [anon_sym_BSLASH] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [aux_sym_trait_declaration_token1] = ACTIONS(1126), + [aux_sym_interface_declaration_token1] = ACTIONS(1126), + [aux_sym_enum_declaration_token1] = ACTIONS(1126), + [aux_sym_enum_case_token1] = ACTIONS(1126), + [aux_sym_class_declaration_token1] = ACTIONS(1126), + [aux_sym_final_modifier_token1] = ACTIONS(1126), + [aux_sym_abstract_modifier_token1] = ACTIONS(1126), + [aux_sym_readonly_modifier_token1] = ACTIONS(1126), + [aux_sym_visibility_modifier_token1] = ACTIONS(1126), + [aux_sym_visibility_modifier_token2] = ACTIONS(1126), + [aux_sym_visibility_modifier_token3] = ACTIONS(1126), + [aux_sym__arrow_function_header_token1] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(1124), + [aux_sym_cast_type_token1] = ACTIONS(1126), + [aux_sym_echo_statement_token1] = ACTIONS(1126), + [anon_sym_unset] = ACTIONS(1126), + [aux_sym_declare_statement_token1] = ACTIONS(1126), + [aux_sym_declare_statement_token2] = ACTIONS(1126), + [sym_float] = ACTIONS(1126), + [aux_sym_try_statement_token1] = ACTIONS(1126), + [aux_sym_goto_statement_token1] = ACTIONS(1126), + [aux_sym_continue_statement_token1] = ACTIONS(1126), + [aux_sym_break_statement_token1] = ACTIONS(1126), + [sym_integer] = ACTIONS(1126), + [aux_sym_return_statement_token1] = ACTIONS(1126), + [aux_sym_throw_expression_token1] = ACTIONS(1126), + [aux_sym_while_statement_token1] = ACTIONS(1126), + [aux_sym_while_statement_token2] = ACTIONS(1126), + [aux_sym_do_statement_token1] = ACTIONS(1126), + [aux_sym_for_statement_token1] = ACTIONS(1126), + [aux_sym_for_statement_token2] = ACTIONS(1126), + [aux_sym_foreach_statement_token1] = ACTIONS(1126), + [aux_sym_foreach_statement_token2] = ACTIONS(1126), + [aux_sym_if_statement_token1] = ACTIONS(1126), + [aux_sym_if_statement_token2] = ACTIONS(1126), + [aux_sym_else_if_clause_token1] = ACTIONS(1126), + [aux_sym_else_clause_token1] = ACTIONS(1126), + [aux_sym_match_expression_token1] = ACTIONS(1126), + [aux_sym_match_default_expression_token1] = ACTIONS(1126), + [aux_sym_switch_statement_token1] = ACTIONS(1126), + [aux_sym_switch_block_token1] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1124), + [aux_sym_clone_expression_token1] = ACTIONS(1126), + [aux_sym_print_intrinsic_token1] = ACTIONS(1126), + [aux_sym_object_creation_expression_token1] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [aux_sym__list_destructing_token1] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1124), + [anon_sym_self] = ACTIONS(1126), + [anon_sym_parent] = ACTIONS(1126), + [aux_sym__argument_name_token1] = ACTIONS(1126), + [aux_sym__argument_name_token2] = ACTIONS(1126), + [anon_sym_POUND_LBRACK] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [aux_sym_encapsed_string_token1] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [aux_sym_string_token1] = ACTIONS(1124), + [anon_sym_LT_LT_LT] = ACTIONS(1124), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_DOLLAR] = ACTIONS(1124), + [aux_sym_yield_expression_token1] = ACTIONS(1126), + [aux_sym_include_expression_token1] = ACTIONS(1126), + [aux_sym_include_once_expression_token1] = ACTIONS(1126), + [aux_sym_require_expression_token1] = ACTIONS(1126), + [aux_sym_require_once_expression_token1] = ACTIONS(1126), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1124), + }, [450] = { [sym_text_interpolation] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1126), - [sym_name] = ACTIONS(1128), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1130), - [aux_sym_function_static_declaration_token1] = ACTIONS(1128), - [aux_sym_global_declaration_token1] = ACTIONS(1128), - [aux_sym_namespace_definition_token1] = ACTIONS(1128), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1128), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1128), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1128), - [anon_sym_BSLASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_RBRACE] = ACTIONS(1126), - [aux_sym_trait_declaration_token1] = ACTIONS(1128), - [aux_sym_interface_declaration_token1] = ACTIONS(1128), - [aux_sym_enum_declaration_token1] = ACTIONS(1128), - [aux_sym_enum_case_token1] = ACTIONS(1128), - [aux_sym_class_declaration_token1] = ACTIONS(1128), - [aux_sym_final_modifier_token1] = ACTIONS(1128), - [aux_sym_abstract_modifier_token1] = ACTIONS(1128), - [aux_sym_readonly_modifier_token1] = ACTIONS(1128), - [aux_sym_visibility_modifier_token1] = ACTIONS(1128), - [aux_sym_visibility_modifier_token2] = ACTIONS(1128), - [aux_sym_visibility_modifier_token3] = ACTIONS(1128), - [aux_sym__arrow_function_header_token1] = ACTIONS(1128), - [anon_sym_LPAREN] = ACTIONS(1126), - [aux_sym_cast_type_token1] = ACTIONS(1128), - [aux_sym_echo_statement_token1] = ACTIONS(1128), - [anon_sym_unset] = ACTIONS(1128), - [aux_sym_declare_statement_token1] = ACTIONS(1128), - [aux_sym_declare_statement_token2] = ACTIONS(1128), - [sym_float] = ACTIONS(1128), - [aux_sym_try_statement_token1] = ACTIONS(1128), - [aux_sym_goto_statement_token1] = ACTIONS(1128), - [aux_sym_continue_statement_token1] = ACTIONS(1128), - [aux_sym_break_statement_token1] = ACTIONS(1128), - [sym_integer] = ACTIONS(1128), - [aux_sym_return_statement_token1] = ACTIONS(1128), - [aux_sym_throw_expression_token1] = ACTIONS(1128), - [aux_sym_while_statement_token1] = ACTIONS(1128), - [aux_sym_while_statement_token2] = ACTIONS(1128), - [aux_sym_do_statement_token1] = ACTIONS(1128), - [aux_sym_for_statement_token1] = ACTIONS(1128), - [aux_sym_for_statement_token2] = ACTIONS(1128), - [aux_sym_foreach_statement_token1] = ACTIONS(1128), - [aux_sym_foreach_statement_token2] = ACTIONS(1128), - [aux_sym_if_statement_token1] = ACTIONS(1128), - [aux_sym_if_statement_token2] = ACTIONS(1128), - [aux_sym_else_if_clause_token1] = ACTIONS(1128), - [aux_sym_else_clause_token1] = ACTIONS(1128), - [aux_sym_match_expression_token1] = ACTIONS(1128), - [aux_sym_match_default_expression_token1] = ACTIONS(1128), - [aux_sym_switch_statement_token1] = ACTIONS(1128), - [aux_sym_switch_block_token1] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_AT] = ACTIONS(1126), - [aux_sym_clone_expression_token1] = ACTIONS(1128), - [aux_sym_print_intrinsic_token1] = ACTIONS(1128), - [aux_sym_object_creation_expression_token1] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [aux_sym__list_destructing_token1] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_self] = ACTIONS(1128), - [anon_sym_parent] = ACTIONS(1128), - [aux_sym__argument_name_token1] = ACTIONS(1128), - [aux_sym__argument_name_token2] = ACTIONS(1128), - [anon_sym_POUND_LBRACK] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1126), - [aux_sym_encapsed_string_token1] = ACTIONS(1126), - [anon_sym_DQUOTE] = ACTIONS(1126), - [aux_sym_string_token1] = ACTIONS(1126), - [anon_sym_LT_LT_LT] = ACTIONS(1126), - [anon_sym_BQUOTE] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(1126), - [aux_sym_yield_expression_token1] = ACTIONS(1128), - [aux_sym_include_expression_token1] = ACTIONS(1128), - [aux_sym_include_once_expression_token1] = ACTIONS(1128), - [aux_sym_require_expression_token1] = ACTIONS(1128), - [aux_sym_require_once_expression_token1] = ACTIONS(1128), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1130), + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_name] = ACTIONS(1130), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1132), + [aux_sym_function_static_declaration_token1] = ACTIONS(1130), + [aux_sym_global_declaration_token1] = ACTIONS(1130), + [aux_sym_namespace_definition_token1] = ACTIONS(1130), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1130), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1130), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1130), + [anon_sym_BSLASH] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [aux_sym_trait_declaration_token1] = ACTIONS(1130), + [aux_sym_interface_declaration_token1] = ACTIONS(1130), + [aux_sym_enum_declaration_token1] = ACTIONS(1130), + [aux_sym_enum_case_token1] = ACTIONS(1130), + [aux_sym_class_declaration_token1] = ACTIONS(1130), + [aux_sym_final_modifier_token1] = ACTIONS(1130), + [aux_sym_abstract_modifier_token1] = ACTIONS(1130), + [aux_sym_readonly_modifier_token1] = ACTIONS(1130), + [aux_sym_visibility_modifier_token1] = ACTIONS(1130), + [aux_sym_visibility_modifier_token2] = ACTIONS(1130), + [aux_sym_visibility_modifier_token3] = ACTIONS(1130), + [aux_sym__arrow_function_header_token1] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1128), + [aux_sym_cast_type_token1] = ACTIONS(1130), + [aux_sym_echo_statement_token1] = ACTIONS(1130), + [anon_sym_unset] = ACTIONS(1130), + [aux_sym_declare_statement_token1] = ACTIONS(1130), + [aux_sym_declare_statement_token2] = ACTIONS(1130), + [sym_float] = ACTIONS(1130), + [aux_sym_try_statement_token1] = ACTIONS(1130), + [aux_sym_goto_statement_token1] = ACTIONS(1130), + [aux_sym_continue_statement_token1] = ACTIONS(1130), + [aux_sym_break_statement_token1] = ACTIONS(1130), + [sym_integer] = ACTIONS(1130), + [aux_sym_return_statement_token1] = ACTIONS(1130), + [aux_sym_throw_expression_token1] = ACTIONS(1130), + [aux_sym_while_statement_token1] = ACTIONS(1130), + [aux_sym_while_statement_token2] = ACTIONS(1130), + [aux_sym_do_statement_token1] = ACTIONS(1130), + [aux_sym_for_statement_token1] = ACTIONS(1130), + [aux_sym_for_statement_token2] = ACTIONS(1130), + [aux_sym_foreach_statement_token1] = ACTIONS(1130), + [aux_sym_foreach_statement_token2] = ACTIONS(1130), + [aux_sym_if_statement_token1] = ACTIONS(1130), + [aux_sym_if_statement_token2] = ACTIONS(1130), + [aux_sym_else_if_clause_token1] = ACTIONS(1130), + [aux_sym_else_clause_token1] = ACTIONS(1130), + [aux_sym_match_expression_token1] = ACTIONS(1130), + [aux_sym_match_default_expression_token1] = ACTIONS(1130), + [aux_sym_switch_statement_token1] = ACTIONS(1130), + [aux_sym_switch_block_token1] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(1128), + [aux_sym_clone_expression_token1] = ACTIONS(1130), + [aux_sym_print_intrinsic_token1] = ACTIONS(1130), + [aux_sym_object_creation_expression_token1] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [aux_sym__list_destructing_token1] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_self] = ACTIONS(1130), + [anon_sym_parent] = ACTIONS(1130), + [aux_sym__argument_name_token1] = ACTIONS(1130), + [aux_sym__argument_name_token2] = ACTIONS(1130), + [anon_sym_POUND_LBRACK] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [aux_sym_encapsed_string_token1] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [aux_sym_string_token1] = ACTIONS(1128), + [anon_sym_LT_LT_LT] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1128), + [aux_sym_yield_expression_token1] = ACTIONS(1130), + [aux_sym_include_expression_token1] = ACTIONS(1130), + [aux_sym_include_once_expression_token1] = ACTIONS(1130), + [aux_sym_require_expression_token1] = ACTIONS(1130), + [aux_sym_require_once_expression_token1] = ACTIONS(1130), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1132), }, [451] = { [sym_text_interpolation] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(1132), - [sym_name] = ACTIONS(1134), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1136), - [aux_sym_function_static_declaration_token1] = ACTIONS(1134), - [aux_sym_global_declaration_token1] = ACTIONS(1134), - [aux_sym_namespace_definition_token1] = ACTIONS(1134), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1134), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1134), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1134), - [anon_sym_BSLASH] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1132), - [anon_sym_RBRACE] = ACTIONS(1132), - [aux_sym_trait_declaration_token1] = ACTIONS(1134), - [aux_sym_interface_declaration_token1] = ACTIONS(1134), - [aux_sym_enum_declaration_token1] = ACTIONS(1134), - [aux_sym_enum_case_token1] = ACTIONS(1134), - [aux_sym_class_declaration_token1] = ACTIONS(1134), - [aux_sym_final_modifier_token1] = ACTIONS(1134), - [aux_sym_abstract_modifier_token1] = ACTIONS(1134), - [aux_sym_readonly_modifier_token1] = ACTIONS(1134), - [aux_sym_visibility_modifier_token1] = ACTIONS(1134), - [aux_sym_visibility_modifier_token2] = ACTIONS(1134), - [aux_sym_visibility_modifier_token3] = ACTIONS(1134), - [aux_sym__arrow_function_header_token1] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1132), - [aux_sym_cast_type_token1] = ACTIONS(1134), - [aux_sym_echo_statement_token1] = ACTIONS(1134), - [anon_sym_unset] = ACTIONS(1134), - [aux_sym_declare_statement_token1] = ACTIONS(1134), - [aux_sym_declare_statement_token2] = ACTIONS(1134), - [sym_float] = ACTIONS(1134), - [aux_sym_try_statement_token1] = ACTIONS(1134), - [aux_sym_goto_statement_token1] = ACTIONS(1134), - [aux_sym_continue_statement_token1] = ACTIONS(1134), - [aux_sym_break_statement_token1] = ACTIONS(1134), - [sym_integer] = ACTIONS(1134), - [aux_sym_return_statement_token1] = ACTIONS(1134), - [aux_sym_throw_expression_token1] = ACTIONS(1134), - [aux_sym_while_statement_token1] = ACTIONS(1134), - [aux_sym_while_statement_token2] = ACTIONS(1134), - [aux_sym_do_statement_token1] = ACTIONS(1134), - [aux_sym_for_statement_token1] = ACTIONS(1134), - [aux_sym_for_statement_token2] = ACTIONS(1134), - [aux_sym_foreach_statement_token1] = ACTIONS(1134), - [aux_sym_foreach_statement_token2] = ACTIONS(1134), - [aux_sym_if_statement_token1] = ACTIONS(1134), - [aux_sym_if_statement_token2] = ACTIONS(1134), - [aux_sym_else_if_clause_token1] = ACTIONS(1134), - [aux_sym_else_clause_token1] = ACTIONS(1134), - [aux_sym_match_expression_token1] = ACTIONS(1134), - [aux_sym_match_default_expression_token1] = ACTIONS(1134), - [aux_sym_switch_statement_token1] = ACTIONS(1134), - [aux_sym_switch_block_token1] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_TILDE] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1132), - [anon_sym_AT] = ACTIONS(1132), - [aux_sym_clone_expression_token1] = ACTIONS(1134), - [aux_sym_print_intrinsic_token1] = ACTIONS(1134), - [aux_sym_object_creation_expression_token1] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1132), - [anon_sym_PLUS_PLUS] = ACTIONS(1132), - [aux_sym__list_destructing_token1] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1132), - [anon_sym_self] = ACTIONS(1134), - [anon_sym_parent] = ACTIONS(1134), - [aux_sym__argument_name_token1] = ACTIONS(1134), - [aux_sym__argument_name_token2] = ACTIONS(1134), - [anon_sym_POUND_LBRACK] = ACTIONS(1132), - [anon_sym_SQUOTE] = ACTIONS(1132), - [aux_sym_encapsed_string_token1] = ACTIONS(1132), - [anon_sym_DQUOTE] = ACTIONS(1132), - [aux_sym_string_token1] = ACTIONS(1132), - [anon_sym_LT_LT_LT] = ACTIONS(1132), - [anon_sym_BQUOTE] = ACTIONS(1132), - [anon_sym_DOLLAR] = ACTIONS(1132), - [aux_sym_yield_expression_token1] = ACTIONS(1134), - [aux_sym_include_expression_token1] = ACTIONS(1134), - [aux_sym_include_once_expression_token1] = ACTIONS(1134), - [aux_sym_require_expression_token1] = ACTIONS(1134), - [aux_sym_require_once_expression_token1] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1136), + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_name] = ACTIONS(1136), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1138), + [aux_sym_function_static_declaration_token1] = ACTIONS(1136), + [aux_sym_global_declaration_token1] = ACTIONS(1136), + [aux_sym_namespace_definition_token1] = ACTIONS(1136), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1136), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1136), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1136), + [anon_sym_BSLASH] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [aux_sym_trait_declaration_token1] = ACTIONS(1136), + [aux_sym_interface_declaration_token1] = ACTIONS(1136), + [aux_sym_enum_declaration_token1] = ACTIONS(1136), + [aux_sym_enum_case_token1] = ACTIONS(1136), + [aux_sym_class_declaration_token1] = ACTIONS(1136), + [aux_sym_final_modifier_token1] = ACTIONS(1136), + [aux_sym_abstract_modifier_token1] = ACTIONS(1136), + [aux_sym_readonly_modifier_token1] = ACTIONS(1136), + [aux_sym_visibility_modifier_token1] = ACTIONS(1136), + [aux_sym_visibility_modifier_token2] = ACTIONS(1136), + [aux_sym_visibility_modifier_token3] = ACTIONS(1136), + [aux_sym__arrow_function_header_token1] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1134), + [aux_sym_cast_type_token1] = ACTIONS(1136), + [aux_sym_echo_statement_token1] = ACTIONS(1136), + [anon_sym_unset] = ACTIONS(1136), + [aux_sym_declare_statement_token1] = ACTIONS(1136), + [aux_sym_declare_statement_token2] = ACTIONS(1136), + [sym_float] = ACTIONS(1136), + [aux_sym_try_statement_token1] = ACTIONS(1136), + [aux_sym_goto_statement_token1] = ACTIONS(1136), + [aux_sym_continue_statement_token1] = ACTIONS(1136), + [aux_sym_break_statement_token1] = ACTIONS(1136), + [sym_integer] = ACTIONS(1136), + [aux_sym_return_statement_token1] = ACTIONS(1136), + [aux_sym_throw_expression_token1] = ACTIONS(1136), + [aux_sym_while_statement_token1] = ACTIONS(1136), + [aux_sym_while_statement_token2] = ACTIONS(1136), + [aux_sym_do_statement_token1] = ACTIONS(1136), + [aux_sym_for_statement_token1] = ACTIONS(1136), + [aux_sym_for_statement_token2] = ACTIONS(1136), + [aux_sym_foreach_statement_token1] = ACTIONS(1136), + [aux_sym_foreach_statement_token2] = ACTIONS(1136), + [aux_sym_if_statement_token1] = ACTIONS(1136), + [aux_sym_if_statement_token2] = ACTIONS(1136), + [aux_sym_else_if_clause_token1] = ACTIONS(1136), + [aux_sym_else_clause_token1] = ACTIONS(1136), + [aux_sym_match_expression_token1] = ACTIONS(1136), + [aux_sym_match_default_expression_token1] = ACTIONS(1136), + [aux_sym_switch_statement_token1] = ACTIONS(1136), + [aux_sym_switch_block_token1] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_AT] = ACTIONS(1134), + [aux_sym_clone_expression_token1] = ACTIONS(1136), + [aux_sym_print_intrinsic_token1] = ACTIONS(1136), + [aux_sym_object_creation_expression_token1] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [aux_sym__list_destructing_token1] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_self] = ACTIONS(1136), + [anon_sym_parent] = ACTIONS(1136), + [aux_sym__argument_name_token1] = ACTIONS(1136), + [aux_sym__argument_name_token2] = ACTIONS(1136), + [anon_sym_POUND_LBRACK] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [aux_sym_encapsed_string_token1] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1134), + [aux_sym_string_token1] = ACTIONS(1134), + [anon_sym_LT_LT_LT] = ACTIONS(1134), + [anon_sym_BQUOTE] = ACTIONS(1134), + [anon_sym_DOLLAR] = ACTIONS(1134), + [aux_sym_yield_expression_token1] = ACTIONS(1136), + [aux_sym_include_expression_token1] = ACTIONS(1136), + [aux_sym_include_once_expression_token1] = ACTIONS(1136), + [aux_sym_require_expression_token1] = ACTIONS(1136), + [aux_sym_require_once_expression_token1] = ACTIONS(1136), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1138), }, [452] = { [sym_text_interpolation] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_name] = ACTIONS(1140), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1142), - [aux_sym_function_static_declaration_token1] = ACTIONS(1140), - [aux_sym_global_declaration_token1] = ACTIONS(1140), - [aux_sym_namespace_definition_token1] = ACTIONS(1140), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1140), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1140), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1140), - [anon_sym_BSLASH] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_RBRACE] = ACTIONS(1138), - [aux_sym_trait_declaration_token1] = ACTIONS(1140), - [aux_sym_interface_declaration_token1] = ACTIONS(1140), - [aux_sym_enum_declaration_token1] = ACTIONS(1140), - [aux_sym_enum_case_token1] = ACTIONS(1140), - [aux_sym_class_declaration_token1] = ACTIONS(1140), - [aux_sym_final_modifier_token1] = ACTIONS(1140), - [aux_sym_abstract_modifier_token1] = ACTIONS(1140), - [aux_sym_readonly_modifier_token1] = ACTIONS(1140), - [aux_sym_visibility_modifier_token1] = ACTIONS(1140), - [aux_sym_visibility_modifier_token2] = ACTIONS(1140), - [aux_sym_visibility_modifier_token3] = ACTIONS(1140), - [aux_sym__arrow_function_header_token1] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1138), - [aux_sym_cast_type_token1] = ACTIONS(1140), - [aux_sym_echo_statement_token1] = ACTIONS(1140), - [anon_sym_unset] = ACTIONS(1140), - [aux_sym_declare_statement_token1] = ACTIONS(1140), - [aux_sym_declare_statement_token2] = ACTIONS(1140), - [sym_float] = ACTIONS(1140), - [aux_sym_try_statement_token1] = ACTIONS(1140), - [aux_sym_goto_statement_token1] = ACTIONS(1140), - [aux_sym_continue_statement_token1] = ACTIONS(1140), - [aux_sym_break_statement_token1] = ACTIONS(1140), - [sym_integer] = ACTIONS(1140), - [aux_sym_return_statement_token1] = ACTIONS(1140), - [aux_sym_throw_expression_token1] = ACTIONS(1140), - [aux_sym_while_statement_token1] = ACTIONS(1140), - [aux_sym_while_statement_token2] = ACTIONS(1140), - [aux_sym_do_statement_token1] = ACTIONS(1140), - [aux_sym_for_statement_token1] = ACTIONS(1140), - [aux_sym_for_statement_token2] = ACTIONS(1140), - [aux_sym_foreach_statement_token1] = ACTIONS(1140), - [aux_sym_foreach_statement_token2] = ACTIONS(1140), - [aux_sym_if_statement_token1] = ACTIONS(1140), - [aux_sym_if_statement_token2] = ACTIONS(1140), - [aux_sym_else_if_clause_token1] = ACTIONS(1140), - [aux_sym_else_clause_token1] = ACTIONS(1140), - [aux_sym_match_expression_token1] = ACTIONS(1140), - [aux_sym_match_default_expression_token1] = ACTIONS(1140), - [aux_sym_switch_statement_token1] = ACTIONS(1140), - [aux_sym_switch_block_token1] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_AT] = ACTIONS(1138), - [aux_sym_clone_expression_token1] = ACTIONS(1140), - [aux_sym_print_intrinsic_token1] = ACTIONS(1140), - [aux_sym_object_creation_expression_token1] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1138), - [aux_sym__list_destructing_token1] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_self] = ACTIONS(1140), - [anon_sym_parent] = ACTIONS(1140), - [aux_sym__argument_name_token1] = ACTIONS(1140), - [aux_sym__argument_name_token2] = ACTIONS(1140), - [anon_sym_POUND_LBRACK] = ACTIONS(1138), - [anon_sym_SQUOTE] = ACTIONS(1138), - [aux_sym_encapsed_string_token1] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [aux_sym_string_token1] = ACTIONS(1138), - [anon_sym_LT_LT_LT] = ACTIONS(1138), - [anon_sym_BQUOTE] = ACTIONS(1138), - [anon_sym_DOLLAR] = ACTIONS(1138), - [aux_sym_yield_expression_token1] = ACTIONS(1140), - [aux_sym_include_expression_token1] = ACTIONS(1140), - [aux_sym_include_once_expression_token1] = ACTIONS(1140), - [aux_sym_require_expression_token1] = ACTIONS(1140), - [aux_sym_require_once_expression_token1] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1142), - }, - [453] = { - [sym_text_interpolation] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_name] = ACTIONS(1146), - [anon_sym_QMARK_GT] = ACTIONS(18), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_name] = ACTIONS(1142), + [anon_sym_QMARK_GT] = ACTIONS(20), [anon_sym_SEMI] = ACTIONS(1144), - [aux_sym_function_static_declaration_token1] = ACTIONS(1146), - [aux_sym_global_declaration_token1] = ACTIONS(1146), - [aux_sym_namespace_definition_token1] = ACTIONS(1146), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1146), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1146), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1146), - [anon_sym_BSLASH] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [aux_sym_trait_declaration_token1] = ACTIONS(1146), - [aux_sym_interface_declaration_token1] = ACTIONS(1146), - [aux_sym_enum_declaration_token1] = ACTIONS(1146), - [aux_sym_enum_case_token1] = ACTIONS(1146), - [aux_sym_class_declaration_token1] = ACTIONS(1146), - [aux_sym_final_modifier_token1] = ACTIONS(1146), - [aux_sym_abstract_modifier_token1] = ACTIONS(1146), - [aux_sym_readonly_modifier_token1] = ACTIONS(1146), - [aux_sym_visibility_modifier_token1] = ACTIONS(1146), - [aux_sym_visibility_modifier_token2] = ACTIONS(1146), - [aux_sym_visibility_modifier_token3] = ACTIONS(1146), - [aux_sym__arrow_function_header_token1] = ACTIONS(1146), - [anon_sym_LPAREN] = ACTIONS(1144), - [aux_sym_cast_type_token1] = ACTIONS(1146), - [aux_sym_echo_statement_token1] = ACTIONS(1146), - [anon_sym_unset] = ACTIONS(1146), - [aux_sym_declare_statement_token1] = ACTIONS(1146), - [aux_sym_declare_statement_token2] = ACTIONS(1146), - [sym_float] = ACTIONS(1146), - [aux_sym_try_statement_token1] = ACTIONS(1146), - [aux_sym_goto_statement_token1] = ACTIONS(1146), - [aux_sym_continue_statement_token1] = ACTIONS(1146), - [aux_sym_break_statement_token1] = ACTIONS(1146), - [sym_integer] = ACTIONS(1146), - [aux_sym_return_statement_token1] = ACTIONS(1146), - [aux_sym_throw_expression_token1] = ACTIONS(1146), - [aux_sym_while_statement_token1] = ACTIONS(1146), - [aux_sym_while_statement_token2] = ACTIONS(1146), - [aux_sym_do_statement_token1] = ACTIONS(1146), - [aux_sym_for_statement_token1] = ACTIONS(1146), - [aux_sym_for_statement_token2] = ACTIONS(1146), - [aux_sym_foreach_statement_token1] = ACTIONS(1146), - [aux_sym_foreach_statement_token2] = ACTIONS(1146), - [aux_sym_if_statement_token1] = ACTIONS(1146), - [aux_sym_if_statement_token2] = ACTIONS(1146), - [aux_sym_else_if_clause_token1] = ACTIONS(1146), - [aux_sym_else_clause_token1] = ACTIONS(1146), - [aux_sym_match_expression_token1] = ACTIONS(1146), - [aux_sym_match_default_expression_token1] = ACTIONS(1146), - [aux_sym_switch_statement_token1] = ACTIONS(1146), - [aux_sym_switch_block_token1] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_AT] = ACTIONS(1144), - [aux_sym_clone_expression_token1] = ACTIONS(1146), - [aux_sym_print_intrinsic_token1] = ACTIONS(1146), - [aux_sym_object_creation_expression_token1] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [aux_sym__list_destructing_token1] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_self] = ACTIONS(1146), - [anon_sym_parent] = ACTIONS(1146), - [aux_sym__argument_name_token1] = ACTIONS(1146), - [aux_sym__argument_name_token2] = ACTIONS(1146), - [anon_sym_POUND_LBRACK] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [aux_sym_encapsed_string_token1] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [aux_sym_string_token1] = ACTIONS(1144), - [anon_sym_LT_LT_LT] = ACTIONS(1144), - [anon_sym_BQUOTE] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(1144), - [aux_sym_yield_expression_token1] = ACTIONS(1146), - [aux_sym_include_expression_token1] = ACTIONS(1146), - [aux_sym_include_once_expression_token1] = ACTIONS(1146), - [aux_sym_require_expression_token1] = ACTIONS(1146), - [aux_sym_require_once_expression_token1] = ACTIONS(1146), + [aux_sym_function_static_declaration_token1] = ACTIONS(1142), + [aux_sym_global_declaration_token1] = ACTIONS(1142), + [aux_sym_namespace_definition_token1] = ACTIONS(1142), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1142), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1142), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1142), + [anon_sym_BSLASH] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [aux_sym_trait_declaration_token1] = ACTIONS(1142), + [aux_sym_interface_declaration_token1] = ACTIONS(1142), + [aux_sym_enum_declaration_token1] = ACTIONS(1142), + [aux_sym_enum_case_token1] = ACTIONS(1142), + [aux_sym_class_declaration_token1] = ACTIONS(1142), + [aux_sym_final_modifier_token1] = ACTIONS(1142), + [aux_sym_abstract_modifier_token1] = ACTIONS(1142), + [aux_sym_readonly_modifier_token1] = ACTIONS(1142), + [aux_sym_visibility_modifier_token1] = ACTIONS(1142), + [aux_sym_visibility_modifier_token2] = ACTIONS(1142), + [aux_sym_visibility_modifier_token3] = ACTIONS(1142), + [aux_sym__arrow_function_header_token1] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1140), + [aux_sym_cast_type_token1] = ACTIONS(1142), + [aux_sym_echo_statement_token1] = ACTIONS(1142), + [anon_sym_unset] = ACTIONS(1142), + [aux_sym_declare_statement_token1] = ACTIONS(1142), + [aux_sym_declare_statement_token2] = ACTIONS(1142), + [sym_float] = ACTIONS(1142), + [aux_sym_try_statement_token1] = ACTIONS(1142), + [aux_sym_goto_statement_token1] = ACTIONS(1142), + [aux_sym_continue_statement_token1] = ACTIONS(1142), + [aux_sym_break_statement_token1] = ACTIONS(1142), + [sym_integer] = ACTIONS(1142), + [aux_sym_return_statement_token1] = ACTIONS(1142), + [aux_sym_throw_expression_token1] = ACTIONS(1142), + [aux_sym_while_statement_token1] = ACTIONS(1142), + [aux_sym_while_statement_token2] = ACTIONS(1142), + [aux_sym_do_statement_token1] = ACTIONS(1142), + [aux_sym_for_statement_token1] = ACTIONS(1142), + [aux_sym_for_statement_token2] = ACTIONS(1142), + [aux_sym_foreach_statement_token1] = ACTIONS(1142), + [aux_sym_foreach_statement_token2] = ACTIONS(1142), + [aux_sym_if_statement_token1] = ACTIONS(1142), + [aux_sym_if_statement_token2] = ACTIONS(1142), + [aux_sym_else_if_clause_token1] = ACTIONS(1142), + [aux_sym_else_clause_token1] = ACTIONS(1142), + [aux_sym_match_expression_token1] = ACTIONS(1142), + [aux_sym_match_default_expression_token1] = ACTIONS(1142), + [aux_sym_switch_statement_token1] = ACTIONS(1142), + [aux_sym_switch_block_token1] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_AT] = ACTIONS(1140), + [aux_sym_clone_expression_token1] = ACTIONS(1142), + [aux_sym_print_intrinsic_token1] = ACTIONS(1142), + [aux_sym_object_creation_expression_token1] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1140), + [aux_sym__list_destructing_token1] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_self] = ACTIONS(1142), + [anon_sym_parent] = ACTIONS(1142), + [aux_sym__argument_name_token1] = ACTIONS(1142), + [aux_sym__argument_name_token2] = ACTIONS(1142), + [anon_sym_POUND_LBRACK] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [aux_sym_encapsed_string_token1] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1140), + [aux_sym_string_token1] = ACTIONS(1140), + [anon_sym_LT_LT_LT] = ACTIONS(1140), + [anon_sym_BQUOTE] = ACTIONS(1140), + [anon_sym_DOLLAR] = ACTIONS(1140), + [aux_sym_yield_expression_token1] = ACTIONS(1142), + [aux_sym_include_expression_token1] = ACTIONS(1142), + [aux_sym_include_once_expression_token1] = ACTIONS(1142), + [aux_sym_require_expression_token1] = ACTIONS(1142), + [aux_sym_require_once_expression_token1] = ACTIONS(1142), [sym_comment] = ACTIONS(5), [sym__automatic_semicolon] = ACTIONS(1144), }, + [453] = { + [sym_text_interpolation] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_name] = ACTIONS(1148), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1146), + [aux_sym_function_static_declaration_token1] = ACTIONS(1148), + [aux_sym_global_declaration_token1] = ACTIONS(1148), + [aux_sym_namespace_definition_token1] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1148), + [anon_sym_BSLASH] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [aux_sym_trait_declaration_token1] = ACTIONS(1148), + [aux_sym_interface_declaration_token1] = ACTIONS(1148), + [aux_sym_enum_declaration_token1] = ACTIONS(1148), + [aux_sym_enum_case_token1] = ACTIONS(1148), + [aux_sym_class_declaration_token1] = ACTIONS(1148), + [aux_sym_final_modifier_token1] = ACTIONS(1148), + [aux_sym_abstract_modifier_token1] = ACTIONS(1148), + [aux_sym_readonly_modifier_token1] = ACTIONS(1148), + [aux_sym_visibility_modifier_token1] = ACTIONS(1148), + [aux_sym_visibility_modifier_token2] = ACTIONS(1148), + [aux_sym_visibility_modifier_token3] = ACTIONS(1148), + [aux_sym__arrow_function_header_token1] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [aux_sym_cast_type_token1] = ACTIONS(1148), + [aux_sym_echo_statement_token1] = ACTIONS(1148), + [anon_sym_unset] = ACTIONS(1148), + [aux_sym_declare_statement_token1] = ACTIONS(1148), + [aux_sym_declare_statement_token2] = ACTIONS(1148), + [sym_float] = ACTIONS(1148), + [aux_sym_try_statement_token1] = ACTIONS(1148), + [aux_sym_goto_statement_token1] = ACTIONS(1148), + [aux_sym_continue_statement_token1] = ACTIONS(1148), + [aux_sym_break_statement_token1] = ACTIONS(1148), + [sym_integer] = ACTIONS(1148), + [aux_sym_return_statement_token1] = ACTIONS(1148), + [aux_sym_throw_expression_token1] = ACTIONS(1148), + [aux_sym_while_statement_token1] = ACTIONS(1148), + [aux_sym_while_statement_token2] = ACTIONS(1148), + [aux_sym_do_statement_token1] = ACTIONS(1148), + [aux_sym_for_statement_token1] = ACTIONS(1148), + [aux_sym_for_statement_token2] = ACTIONS(1148), + [aux_sym_foreach_statement_token1] = ACTIONS(1148), + [aux_sym_foreach_statement_token2] = ACTIONS(1148), + [aux_sym_if_statement_token1] = ACTIONS(1148), + [aux_sym_if_statement_token2] = ACTIONS(1148), + [aux_sym_else_if_clause_token1] = ACTIONS(1148), + [aux_sym_else_clause_token1] = ACTIONS(1148), + [aux_sym_match_expression_token1] = ACTIONS(1148), + [aux_sym_match_default_expression_token1] = ACTIONS(1148), + [aux_sym_switch_statement_token1] = ACTIONS(1148), + [aux_sym_switch_block_token1] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(1146), + [aux_sym_clone_expression_token1] = ACTIONS(1148), + [aux_sym_print_intrinsic_token1] = ACTIONS(1148), + [aux_sym_object_creation_expression_token1] = ACTIONS(1148), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [aux_sym__list_destructing_token1] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_self] = ACTIONS(1148), + [anon_sym_parent] = ACTIONS(1148), + [aux_sym__argument_name_token1] = ACTIONS(1148), + [aux_sym__argument_name_token2] = ACTIONS(1148), + [anon_sym_POUND_LBRACK] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(1146), + [aux_sym_encapsed_string_token1] = ACTIONS(1146), + [anon_sym_DQUOTE] = ACTIONS(1146), + [aux_sym_string_token1] = ACTIONS(1146), + [anon_sym_LT_LT_LT] = ACTIONS(1146), + [anon_sym_BQUOTE] = ACTIONS(1146), + [anon_sym_DOLLAR] = ACTIONS(1146), + [aux_sym_yield_expression_token1] = ACTIONS(1148), + [aux_sym_include_expression_token1] = ACTIONS(1148), + [aux_sym_include_once_expression_token1] = ACTIONS(1148), + [aux_sym_require_expression_token1] = ACTIONS(1148), + [aux_sym_require_once_expression_token1] = ACTIONS(1148), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1146), + }, [454] = { [sym_text_interpolation] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(1148), - [sym_name] = ACTIONS(1150), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1152), - [aux_sym_function_static_declaration_token1] = ACTIONS(1150), - [aux_sym_global_declaration_token1] = ACTIONS(1150), - [aux_sym_namespace_definition_token1] = ACTIONS(1150), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1150), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1150), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1150), - [anon_sym_BSLASH] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [aux_sym_trait_declaration_token1] = ACTIONS(1150), - [aux_sym_interface_declaration_token1] = ACTIONS(1150), - [aux_sym_enum_declaration_token1] = ACTIONS(1150), - [aux_sym_enum_case_token1] = ACTIONS(1150), - [aux_sym_class_declaration_token1] = ACTIONS(1150), - [aux_sym_final_modifier_token1] = ACTIONS(1150), - [aux_sym_abstract_modifier_token1] = ACTIONS(1150), - [aux_sym_readonly_modifier_token1] = ACTIONS(1150), - [aux_sym_visibility_modifier_token1] = ACTIONS(1150), - [aux_sym_visibility_modifier_token2] = ACTIONS(1150), - [aux_sym_visibility_modifier_token3] = ACTIONS(1150), - [aux_sym__arrow_function_header_token1] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1148), - [aux_sym_cast_type_token1] = ACTIONS(1150), - [aux_sym_echo_statement_token1] = ACTIONS(1150), - [anon_sym_unset] = ACTIONS(1150), - [aux_sym_declare_statement_token1] = ACTIONS(1150), - [aux_sym_declare_statement_token2] = ACTIONS(1150), - [sym_float] = ACTIONS(1150), - [aux_sym_try_statement_token1] = ACTIONS(1150), - [aux_sym_goto_statement_token1] = ACTIONS(1150), - [aux_sym_continue_statement_token1] = ACTIONS(1150), - [aux_sym_break_statement_token1] = ACTIONS(1150), - [sym_integer] = ACTIONS(1150), - [aux_sym_return_statement_token1] = ACTIONS(1150), - [aux_sym_throw_expression_token1] = ACTIONS(1150), - [aux_sym_while_statement_token1] = ACTIONS(1150), - [aux_sym_while_statement_token2] = ACTIONS(1150), - [aux_sym_do_statement_token1] = ACTIONS(1150), - [aux_sym_for_statement_token1] = ACTIONS(1150), - [aux_sym_for_statement_token2] = ACTIONS(1150), - [aux_sym_foreach_statement_token1] = ACTIONS(1150), - [aux_sym_foreach_statement_token2] = ACTIONS(1150), - [aux_sym_if_statement_token1] = ACTIONS(1150), - [aux_sym_if_statement_token2] = ACTIONS(1150), - [aux_sym_else_if_clause_token1] = ACTIONS(1150), - [aux_sym_else_clause_token1] = ACTIONS(1150), - [aux_sym_match_expression_token1] = ACTIONS(1150), - [aux_sym_match_default_expression_token1] = ACTIONS(1150), - [aux_sym_switch_statement_token1] = ACTIONS(1150), - [aux_sym_switch_block_token1] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_AT] = ACTIONS(1148), - [aux_sym_clone_expression_token1] = ACTIONS(1150), - [aux_sym_print_intrinsic_token1] = ACTIONS(1150), - [aux_sym_object_creation_expression_token1] = ACTIONS(1150), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [aux_sym__list_destructing_token1] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_self] = ACTIONS(1150), - [anon_sym_parent] = ACTIONS(1150), - [aux_sym__argument_name_token1] = ACTIONS(1150), - [aux_sym__argument_name_token2] = ACTIONS(1150), - [anon_sym_POUND_LBRACK] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [aux_sym_encapsed_string_token1] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [aux_sym_string_token1] = ACTIONS(1148), - [anon_sym_LT_LT_LT] = ACTIONS(1148), - [anon_sym_BQUOTE] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1148), - [aux_sym_yield_expression_token1] = ACTIONS(1150), - [aux_sym_include_expression_token1] = ACTIONS(1150), - [aux_sym_include_once_expression_token1] = ACTIONS(1150), - [aux_sym_require_expression_token1] = ACTIONS(1150), - [aux_sym_require_once_expression_token1] = ACTIONS(1150), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1152), + [ts_builtin_sym_end] = ACTIONS(1150), + [sym_name] = ACTIONS(1152), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1154), + [aux_sym_function_static_declaration_token1] = ACTIONS(1152), + [aux_sym_global_declaration_token1] = ACTIONS(1152), + [aux_sym_namespace_definition_token1] = ACTIONS(1152), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1152), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1152), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1152), + [anon_sym_BSLASH] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(1150), + [aux_sym_trait_declaration_token1] = ACTIONS(1152), + [aux_sym_interface_declaration_token1] = ACTIONS(1152), + [aux_sym_enum_declaration_token1] = ACTIONS(1152), + [aux_sym_enum_case_token1] = ACTIONS(1152), + [aux_sym_class_declaration_token1] = ACTIONS(1152), + [aux_sym_final_modifier_token1] = ACTIONS(1152), + [aux_sym_abstract_modifier_token1] = ACTIONS(1152), + [aux_sym_readonly_modifier_token1] = ACTIONS(1152), + [aux_sym_visibility_modifier_token1] = ACTIONS(1152), + [aux_sym_visibility_modifier_token2] = ACTIONS(1152), + [aux_sym_visibility_modifier_token3] = ACTIONS(1152), + [aux_sym__arrow_function_header_token1] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1150), + [aux_sym_cast_type_token1] = ACTIONS(1152), + [aux_sym_echo_statement_token1] = ACTIONS(1152), + [anon_sym_unset] = ACTIONS(1152), + [aux_sym_declare_statement_token1] = ACTIONS(1152), + [aux_sym_declare_statement_token2] = ACTIONS(1152), + [sym_float] = ACTIONS(1152), + [aux_sym_try_statement_token1] = ACTIONS(1152), + [aux_sym_goto_statement_token1] = ACTIONS(1152), + [aux_sym_continue_statement_token1] = ACTIONS(1152), + [aux_sym_break_statement_token1] = ACTIONS(1152), + [sym_integer] = ACTIONS(1152), + [aux_sym_return_statement_token1] = ACTIONS(1152), + [aux_sym_throw_expression_token1] = ACTIONS(1152), + [aux_sym_while_statement_token1] = ACTIONS(1152), + [aux_sym_while_statement_token2] = ACTIONS(1152), + [aux_sym_do_statement_token1] = ACTIONS(1152), + [aux_sym_for_statement_token1] = ACTIONS(1152), + [aux_sym_for_statement_token2] = ACTIONS(1152), + [aux_sym_foreach_statement_token1] = ACTIONS(1152), + [aux_sym_foreach_statement_token2] = ACTIONS(1152), + [aux_sym_if_statement_token1] = ACTIONS(1152), + [aux_sym_if_statement_token2] = ACTIONS(1152), + [aux_sym_else_if_clause_token1] = ACTIONS(1152), + [aux_sym_else_clause_token1] = ACTIONS(1152), + [aux_sym_match_expression_token1] = ACTIONS(1152), + [aux_sym_match_default_expression_token1] = ACTIONS(1152), + [aux_sym_switch_statement_token1] = ACTIONS(1152), + [aux_sym_switch_block_token1] = ACTIONS(1152), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1150), + [anon_sym_AT] = ACTIONS(1150), + [aux_sym_clone_expression_token1] = ACTIONS(1152), + [aux_sym_print_intrinsic_token1] = ACTIONS(1152), + [aux_sym_object_creation_expression_token1] = ACTIONS(1152), + [anon_sym_DASH_DASH] = ACTIONS(1150), + [anon_sym_PLUS_PLUS] = ACTIONS(1150), + [aux_sym__list_destructing_token1] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_self] = ACTIONS(1152), + [anon_sym_parent] = ACTIONS(1152), + [aux_sym__argument_name_token1] = ACTIONS(1152), + [aux_sym__argument_name_token2] = ACTIONS(1152), + [anon_sym_POUND_LBRACK] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [aux_sym_encapsed_string_token1] = ACTIONS(1150), + [anon_sym_DQUOTE] = ACTIONS(1150), + [aux_sym_string_token1] = ACTIONS(1150), + [anon_sym_LT_LT_LT] = ACTIONS(1150), + [anon_sym_BQUOTE] = ACTIONS(1150), + [anon_sym_DOLLAR] = ACTIONS(1150), + [aux_sym_yield_expression_token1] = ACTIONS(1152), + [aux_sym_include_expression_token1] = ACTIONS(1152), + [aux_sym_include_once_expression_token1] = ACTIONS(1152), + [aux_sym_require_expression_token1] = ACTIONS(1152), + [aux_sym_require_once_expression_token1] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1154), }, [455] = { [sym_text_interpolation] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_name] = ACTIONS(1156), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1158), - [aux_sym_function_static_declaration_token1] = ACTIONS(1156), - [aux_sym_global_declaration_token1] = ACTIONS(1156), - [aux_sym_namespace_definition_token1] = ACTIONS(1156), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1156), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1156), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1156), - [anon_sym_BSLASH] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [aux_sym_trait_declaration_token1] = ACTIONS(1156), - [aux_sym_interface_declaration_token1] = ACTIONS(1156), - [aux_sym_enum_declaration_token1] = ACTIONS(1156), - [aux_sym_enum_case_token1] = ACTIONS(1156), - [aux_sym_class_declaration_token1] = ACTIONS(1156), - [aux_sym_final_modifier_token1] = ACTIONS(1156), - [aux_sym_abstract_modifier_token1] = ACTIONS(1156), - [aux_sym_readonly_modifier_token1] = ACTIONS(1156), - [aux_sym_visibility_modifier_token1] = ACTIONS(1156), - [aux_sym_visibility_modifier_token2] = ACTIONS(1156), - [aux_sym_visibility_modifier_token3] = ACTIONS(1156), - [aux_sym__arrow_function_header_token1] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1154), - [aux_sym_cast_type_token1] = ACTIONS(1156), - [aux_sym_echo_statement_token1] = ACTIONS(1156), - [anon_sym_unset] = ACTIONS(1156), - [aux_sym_declare_statement_token1] = ACTIONS(1156), - [aux_sym_declare_statement_token2] = ACTIONS(1156), - [sym_float] = ACTIONS(1156), - [aux_sym_try_statement_token1] = ACTIONS(1156), - [aux_sym_goto_statement_token1] = ACTIONS(1156), - [aux_sym_continue_statement_token1] = ACTIONS(1156), - [aux_sym_break_statement_token1] = ACTIONS(1156), - [sym_integer] = ACTIONS(1156), - [aux_sym_return_statement_token1] = ACTIONS(1156), - [aux_sym_throw_expression_token1] = ACTIONS(1156), - [aux_sym_while_statement_token1] = ACTIONS(1156), - [aux_sym_while_statement_token2] = ACTIONS(1156), - [aux_sym_do_statement_token1] = ACTIONS(1156), - [aux_sym_for_statement_token1] = ACTIONS(1156), - [aux_sym_for_statement_token2] = ACTIONS(1156), - [aux_sym_foreach_statement_token1] = ACTIONS(1156), - [aux_sym_foreach_statement_token2] = ACTIONS(1156), - [aux_sym_if_statement_token1] = ACTIONS(1156), - [aux_sym_if_statement_token2] = ACTIONS(1156), - [aux_sym_else_if_clause_token1] = ACTIONS(1156), - [aux_sym_else_clause_token1] = ACTIONS(1156), - [aux_sym_match_expression_token1] = ACTIONS(1156), - [aux_sym_match_default_expression_token1] = ACTIONS(1156), - [aux_sym_switch_statement_token1] = ACTIONS(1156), - [aux_sym_switch_block_token1] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_AT] = ACTIONS(1154), - [aux_sym_clone_expression_token1] = ACTIONS(1156), - [aux_sym_print_intrinsic_token1] = ACTIONS(1156), - [aux_sym_object_creation_expression_token1] = ACTIONS(1156), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [aux_sym__list_destructing_token1] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_self] = ACTIONS(1156), - [anon_sym_parent] = ACTIONS(1156), - [aux_sym__argument_name_token1] = ACTIONS(1156), - [aux_sym__argument_name_token2] = ACTIONS(1156), - [anon_sym_POUND_LBRACK] = ACTIONS(1154), - [anon_sym_SQUOTE] = ACTIONS(1154), - [aux_sym_encapsed_string_token1] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [aux_sym_string_token1] = ACTIONS(1154), - [anon_sym_LT_LT_LT] = ACTIONS(1154), - [anon_sym_BQUOTE] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1154), - [aux_sym_yield_expression_token1] = ACTIONS(1156), - [aux_sym_include_expression_token1] = ACTIONS(1156), - [aux_sym_include_once_expression_token1] = ACTIONS(1156), - [aux_sym_require_expression_token1] = ACTIONS(1156), - [aux_sym_require_once_expression_token1] = ACTIONS(1156), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1158), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_name] = ACTIONS(1158), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1160), + [aux_sym_function_static_declaration_token1] = ACTIONS(1158), + [aux_sym_global_declaration_token1] = ACTIONS(1158), + [aux_sym_namespace_definition_token1] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1158), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1158), + [anon_sym_BSLASH] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [aux_sym_trait_declaration_token1] = ACTIONS(1158), + [aux_sym_interface_declaration_token1] = ACTIONS(1158), + [aux_sym_enum_declaration_token1] = ACTIONS(1158), + [aux_sym_enum_case_token1] = ACTIONS(1158), + [aux_sym_class_declaration_token1] = ACTIONS(1158), + [aux_sym_final_modifier_token1] = ACTIONS(1158), + [aux_sym_abstract_modifier_token1] = ACTIONS(1158), + [aux_sym_readonly_modifier_token1] = ACTIONS(1158), + [aux_sym_visibility_modifier_token1] = ACTIONS(1158), + [aux_sym_visibility_modifier_token2] = ACTIONS(1158), + [aux_sym_visibility_modifier_token3] = ACTIONS(1158), + [aux_sym__arrow_function_header_token1] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1156), + [aux_sym_cast_type_token1] = ACTIONS(1158), + [aux_sym_echo_statement_token1] = ACTIONS(1158), + [anon_sym_unset] = ACTIONS(1158), + [aux_sym_declare_statement_token1] = ACTIONS(1158), + [aux_sym_declare_statement_token2] = ACTIONS(1158), + [sym_float] = ACTIONS(1158), + [aux_sym_try_statement_token1] = ACTIONS(1158), + [aux_sym_goto_statement_token1] = ACTIONS(1158), + [aux_sym_continue_statement_token1] = ACTIONS(1158), + [aux_sym_break_statement_token1] = ACTIONS(1158), + [sym_integer] = ACTIONS(1158), + [aux_sym_return_statement_token1] = ACTIONS(1158), + [aux_sym_throw_expression_token1] = ACTIONS(1158), + [aux_sym_while_statement_token1] = ACTIONS(1158), + [aux_sym_while_statement_token2] = ACTIONS(1158), + [aux_sym_do_statement_token1] = ACTIONS(1158), + [aux_sym_for_statement_token1] = ACTIONS(1158), + [aux_sym_for_statement_token2] = ACTIONS(1158), + [aux_sym_foreach_statement_token1] = ACTIONS(1158), + [aux_sym_foreach_statement_token2] = ACTIONS(1158), + [aux_sym_if_statement_token1] = ACTIONS(1158), + [aux_sym_if_statement_token2] = ACTIONS(1158), + [aux_sym_else_if_clause_token1] = ACTIONS(1158), + [aux_sym_else_clause_token1] = ACTIONS(1158), + [aux_sym_match_expression_token1] = ACTIONS(1158), + [aux_sym_match_default_expression_token1] = ACTIONS(1158), + [aux_sym_switch_statement_token1] = ACTIONS(1158), + [aux_sym_switch_block_token1] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_AT] = ACTIONS(1156), + [aux_sym_clone_expression_token1] = ACTIONS(1158), + [aux_sym_print_intrinsic_token1] = ACTIONS(1158), + [aux_sym_object_creation_expression_token1] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [aux_sym__list_destructing_token1] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_self] = ACTIONS(1158), + [anon_sym_parent] = ACTIONS(1158), + [aux_sym__argument_name_token1] = ACTIONS(1158), + [aux_sym__argument_name_token2] = ACTIONS(1158), + [anon_sym_POUND_LBRACK] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [aux_sym_encapsed_string_token1] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1156), + [aux_sym_string_token1] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_DOLLAR] = ACTIONS(1156), + [aux_sym_yield_expression_token1] = ACTIONS(1158), + [aux_sym_include_expression_token1] = ACTIONS(1158), + [aux_sym_include_once_expression_token1] = ACTIONS(1158), + [aux_sym_require_expression_token1] = ACTIONS(1158), + [aux_sym_require_once_expression_token1] = ACTIONS(1158), + [sym_comment] = ACTIONS(5), + [sym__automatic_semicolon] = ACTIONS(1160), }, [456] = { [sym_text_interpolation] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(1160), - [sym_name] = ACTIONS(1162), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1160), - [aux_sym_function_static_declaration_token1] = ACTIONS(1162), - [aux_sym_global_declaration_token1] = ACTIONS(1162), - [aux_sym_namespace_definition_token1] = ACTIONS(1162), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1162), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1162), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1162), - [anon_sym_BSLASH] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_RBRACE] = ACTIONS(1160), - [aux_sym_trait_declaration_token1] = ACTIONS(1162), - [aux_sym_interface_declaration_token1] = ACTIONS(1162), - [aux_sym_enum_declaration_token1] = ACTIONS(1162), - [aux_sym_enum_case_token1] = ACTIONS(1162), - [aux_sym_class_declaration_token1] = ACTIONS(1162), - [aux_sym_final_modifier_token1] = ACTIONS(1162), - [aux_sym_abstract_modifier_token1] = ACTIONS(1162), - [aux_sym_readonly_modifier_token1] = ACTIONS(1162), - [aux_sym_visibility_modifier_token1] = ACTIONS(1162), - [aux_sym_visibility_modifier_token2] = ACTIONS(1162), - [aux_sym_visibility_modifier_token3] = ACTIONS(1162), - [aux_sym__arrow_function_header_token1] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1160), - [aux_sym_cast_type_token1] = ACTIONS(1162), - [aux_sym_echo_statement_token1] = ACTIONS(1162), - [anon_sym_unset] = ACTIONS(1162), - [aux_sym_declare_statement_token1] = ACTIONS(1162), - [aux_sym_declare_statement_token2] = ACTIONS(1162), - [sym_float] = ACTIONS(1162), - [aux_sym_try_statement_token1] = ACTIONS(1162), - [aux_sym_goto_statement_token1] = ACTIONS(1162), - [aux_sym_continue_statement_token1] = ACTIONS(1162), - [aux_sym_break_statement_token1] = ACTIONS(1162), - [sym_integer] = ACTIONS(1162), - [aux_sym_return_statement_token1] = ACTIONS(1162), - [aux_sym_throw_expression_token1] = ACTIONS(1162), - [aux_sym_while_statement_token1] = ACTIONS(1162), - [aux_sym_while_statement_token2] = ACTIONS(1162), - [aux_sym_do_statement_token1] = ACTIONS(1162), - [aux_sym_for_statement_token1] = ACTIONS(1162), - [aux_sym_for_statement_token2] = ACTIONS(1162), - [aux_sym_foreach_statement_token1] = ACTIONS(1162), - [aux_sym_foreach_statement_token2] = ACTIONS(1162), - [aux_sym_if_statement_token1] = ACTIONS(1162), - [aux_sym_if_statement_token2] = ACTIONS(1162), - [aux_sym_else_if_clause_token1] = ACTIONS(1162), - [aux_sym_else_clause_token1] = ACTIONS(1162), - [aux_sym_match_expression_token1] = ACTIONS(1162), - [aux_sym_match_default_expression_token1] = ACTIONS(1162), - [aux_sym_switch_statement_token1] = ACTIONS(1162), - [aux_sym_switch_block_token1] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(1160), - [aux_sym_clone_expression_token1] = ACTIONS(1162), - [aux_sym_print_intrinsic_token1] = ACTIONS(1162), - [aux_sym_object_creation_expression_token1] = ACTIONS(1162), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [aux_sym__list_destructing_token1] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_self] = ACTIONS(1162), - [anon_sym_parent] = ACTIONS(1162), - [aux_sym__argument_name_token1] = ACTIONS(1162), - [aux_sym__argument_name_token2] = ACTIONS(1162), - [anon_sym_POUND_LBRACK] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [aux_sym_encapsed_string_token1] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [aux_sym_string_token1] = ACTIONS(1160), - [anon_sym_LT_LT_LT] = ACTIONS(1160), - [anon_sym_BQUOTE] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1160), - [aux_sym_yield_expression_token1] = ACTIONS(1162), - [aux_sym_include_expression_token1] = ACTIONS(1162), - [aux_sym_include_once_expression_token1] = ACTIONS(1162), - [aux_sym_require_expression_token1] = ACTIONS(1162), - [aux_sym_require_once_expression_token1] = ACTIONS(1162), + [ts_builtin_sym_end] = ACTIONS(1162), + [sym_name] = ACTIONS(1164), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1162), + [aux_sym_function_static_declaration_token1] = ACTIONS(1164), + [aux_sym_global_declaration_token1] = ACTIONS(1164), + [aux_sym_namespace_definition_token1] = ACTIONS(1164), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1164), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1164), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1164), + [anon_sym_BSLASH] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_RBRACE] = ACTIONS(1162), + [aux_sym_trait_declaration_token1] = ACTIONS(1164), + [aux_sym_interface_declaration_token1] = ACTIONS(1164), + [aux_sym_enum_declaration_token1] = ACTIONS(1164), + [aux_sym_enum_case_token1] = ACTIONS(1164), + [aux_sym_class_declaration_token1] = ACTIONS(1164), + [aux_sym_final_modifier_token1] = ACTIONS(1164), + [aux_sym_abstract_modifier_token1] = ACTIONS(1164), + [aux_sym_readonly_modifier_token1] = ACTIONS(1164), + [aux_sym_visibility_modifier_token1] = ACTIONS(1164), + [aux_sym_visibility_modifier_token2] = ACTIONS(1164), + [aux_sym_visibility_modifier_token3] = ACTIONS(1164), + [aux_sym__arrow_function_header_token1] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1162), + [aux_sym_cast_type_token1] = ACTIONS(1164), + [aux_sym_echo_statement_token1] = ACTIONS(1164), + [anon_sym_unset] = ACTIONS(1164), + [aux_sym_declare_statement_token1] = ACTIONS(1164), + [aux_sym_declare_statement_token2] = ACTIONS(1164), + [sym_float] = ACTIONS(1164), + [aux_sym_try_statement_token1] = ACTIONS(1164), + [aux_sym_goto_statement_token1] = ACTIONS(1164), + [aux_sym_continue_statement_token1] = ACTIONS(1164), + [aux_sym_break_statement_token1] = ACTIONS(1164), + [sym_integer] = ACTIONS(1164), + [aux_sym_return_statement_token1] = ACTIONS(1164), + [aux_sym_throw_expression_token1] = ACTIONS(1164), + [aux_sym_while_statement_token1] = ACTIONS(1164), + [aux_sym_while_statement_token2] = ACTIONS(1164), + [aux_sym_do_statement_token1] = ACTIONS(1164), + [aux_sym_for_statement_token1] = ACTIONS(1164), + [aux_sym_for_statement_token2] = ACTIONS(1164), + [aux_sym_foreach_statement_token1] = ACTIONS(1164), + [aux_sym_foreach_statement_token2] = ACTIONS(1164), + [aux_sym_if_statement_token1] = ACTIONS(1164), + [aux_sym_if_statement_token2] = ACTIONS(1164), + [aux_sym_else_if_clause_token1] = ACTIONS(1164), + [aux_sym_else_clause_token1] = ACTIONS(1164), + [aux_sym_match_expression_token1] = ACTIONS(1164), + [aux_sym_match_default_expression_token1] = ACTIONS(1164), + [aux_sym_switch_statement_token1] = ACTIONS(1164), + [aux_sym_switch_block_token1] = ACTIONS(1164), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1162), + [anon_sym_AT] = ACTIONS(1162), + [aux_sym_clone_expression_token1] = ACTIONS(1164), + [aux_sym_print_intrinsic_token1] = ACTIONS(1164), + [aux_sym_object_creation_expression_token1] = ACTIONS(1164), + [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_PLUS_PLUS] = ACTIONS(1162), + [aux_sym__list_destructing_token1] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_self] = ACTIONS(1164), + [anon_sym_parent] = ACTIONS(1164), + [aux_sym__argument_name_token1] = ACTIONS(1164), + [aux_sym__argument_name_token2] = ACTIONS(1164), + [anon_sym_POUND_LBRACK] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1162), + [aux_sym_encapsed_string_token1] = ACTIONS(1162), + [anon_sym_DQUOTE] = ACTIONS(1162), + [aux_sym_string_token1] = ACTIONS(1162), + [anon_sym_LT_LT_LT] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [anon_sym_DOLLAR] = ACTIONS(1162), + [aux_sym_yield_expression_token1] = ACTIONS(1164), + [aux_sym_include_expression_token1] = ACTIONS(1164), + [aux_sym_include_once_expression_token1] = ACTIONS(1164), + [aux_sym_require_expression_token1] = ACTIONS(1164), + [aux_sym_require_once_expression_token1] = ACTIONS(1164), [sym_comment] = ACTIONS(5), }, [457] = { [sym_text_interpolation] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(1164), - [sym_name] = ACTIONS(1166), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1164), - [aux_sym_function_static_declaration_token1] = ACTIONS(1166), - [aux_sym_global_declaration_token1] = ACTIONS(1166), - [aux_sym_namespace_definition_token1] = ACTIONS(1166), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1166), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1166), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1166), - [anon_sym_BSLASH] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_RBRACE] = ACTIONS(1164), - [aux_sym_trait_declaration_token1] = ACTIONS(1166), - [aux_sym_interface_declaration_token1] = ACTIONS(1166), - [aux_sym_enum_declaration_token1] = ACTIONS(1166), - [aux_sym_enum_case_token1] = ACTIONS(1166), - [aux_sym_class_declaration_token1] = ACTIONS(1166), - [aux_sym_final_modifier_token1] = ACTIONS(1166), - [aux_sym_abstract_modifier_token1] = ACTIONS(1166), - [aux_sym_readonly_modifier_token1] = ACTIONS(1166), - [aux_sym_visibility_modifier_token1] = ACTIONS(1166), - [aux_sym_visibility_modifier_token2] = ACTIONS(1166), - [aux_sym_visibility_modifier_token3] = ACTIONS(1166), - [aux_sym__arrow_function_header_token1] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1164), - [aux_sym_cast_type_token1] = ACTIONS(1166), - [aux_sym_echo_statement_token1] = ACTIONS(1166), - [anon_sym_unset] = ACTIONS(1166), - [aux_sym_declare_statement_token1] = ACTIONS(1166), - [aux_sym_declare_statement_token2] = ACTIONS(1166), - [sym_float] = ACTIONS(1166), - [aux_sym_try_statement_token1] = ACTIONS(1166), - [aux_sym_goto_statement_token1] = ACTIONS(1166), - [aux_sym_continue_statement_token1] = ACTIONS(1166), - [aux_sym_break_statement_token1] = ACTIONS(1166), - [sym_integer] = ACTIONS(1166), - [aux_sym_return_statement_token1] = ACTIONS(1166), - [aux_sym_throw_expression_token1] = ACTIONS(1166), - [aux_sym_while_statement_token1] = ACTIONS(1166), - [aux_sym_while_statement_token2] = ACTIONS(1166), - [aux_sym_do_statement_token1] = ACTIONS(1166), - [aux_sym_for_statement_token1] = ACTIONS(1166), - [aux_sym_for_statement_token2] = ACTIONS(1166), - [aux_sym_foreach_statement_token1] = ACTIONS(1166), - [aux_sym_foreach_statement_token2] = ACTIONS(1166), - [aux_sym_if_statement_token1] = ACTIONS(1166), - [aux_sym_if_statement_token2] = ACTIONS(1166), - [aux_sym_else_if_clause_token1] = ACTIONS(1166), - [aux_sym_else_clause_token1] = ACTIONS(1166), - [aux_sym_match_expression_token1] = ACTIONS(1166), - [aux_sym_match_default_expression_token1] = ACTIONS(1166), - [aux_sym_switch_statement_token1] = ACTIONS(1166), - [aux_sym_switch_block_token1] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_AT] = ACTIONS(1164), - [aux_sym_clone_expression_token1] = ACTIONS(1166), - [aux_sym_print_intrinsic_token1] = ACTIONS(1166), - [aux_sym_object_creation_expression_token1] = ACTIONS(1166), - [anon_sym_DASH_DASH] = ACTIONS(1164), - [anon_sym_PLUS_PLUS] = ACTIONS(1164), - [aux_sym__list_destructing_token1] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1164), - [anon_sym_self] = ACTIONS(1166), - [anon_sym_parent] = ACTIONS(1166), - [aux_sym__argument_name_token1] = ACTIONS(1166), - [aux_sym__argument_name_token2] = ACTIONS(1166), - [anon_sym_POUND_LBRACK] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [aux_sym_encapsed_string_token1] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [aux_sym_string_token1] = ACTIONS(1164), - [anon_sym_LT_LT_LT] = ACTIONS(1164), - [anon_sym_BQUOTE] = ACTIONS(1164), - [anon_sym_DOLLAR] = ACTIONS(1164), - [aux_sym_yield_expression_token1] = ACTIONS(1166), - [aux_sym_include_expression_token1] = ACTIONS(1166), - [aux_sym_include_once_expression_token1] = ACTIONS(1166), - [aux_sym_require_expression_token1] = ACTIONS(1166), - [aux_sym_require_once_expression_token1] = ACTIONS(1166), + [ts_builtin_sym_end] = ACTIONS(1166), + [sym_name] = ACTIONS(1168), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1166), + [aux_sym_function_static_declaration_token1] = ACTIONS(1168), + [aux_sym_global_declaration_token1] = ACTIONS(1168), + [aux_sym_namespace_definition_token1] = ACTIONS(1168), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1168), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1168), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1168), + [anon_sym_BSLASH] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1166), + [aux_sym_trait_declaration_token1] = ACTIONS(1168), + [aux_sym_interface_declaration_token1] = ACTIONS(1168), + [aux_sym_enum_declaration_token1] = ACTIONS(1168), + [aux_sym_enum_case_token1] = ACTIONS(1168), + [aux_sym_class_declaration_token1] = ACTIONS(1168), + [aux_sym_final_modifier_token1] = ACTIONS(1168), + [aux_sym_abstract_modifier_token1] = ACTIONS(1168), + [aux_sym_readonly_modifier_token1] = ACTIONS(1168), + [aux_sym_visibility_modifier_token1] = ACTIONS(1168), + [aux_sym_visibility_modifier_token2] = ACTIONS(1168), + [aux_sym_visibility_modifier_token3] = ACTIONS(1168), + [aux_sym__arrow_function_header_token1] = ACTIONS(1168), + [anon_sym_LPAREN] = ACTIONS(1166), + [aux_sym_cast_type_token1] = ACTIONS(1168), + [aux_sym_echo_statement_token1] = ACTIONS(1168), + [anon_sym_unset] = ACTIONS(1168), + [aux_sym_declare_statement_token1] = ACTIONS(1168), + [aux_sym_declare_statement_token2] = ACTIONS(1168), + [sym_float] = ACTIONS(1168), + [aux_sym_try_statement_token1] = ACTIONS(1168), + [aux_sym_goto_statement_token1] = ACTIONS(1168), + [aux_sym_continue_statement_token1] = ACTIONS(1168), + [aux_sym_break_statement_token1] = ACTIONS(1168), + [sym_integer] = ACTIONS(1168), + [aux_sym_return_statement_token1] = ACTIONS(1168), + [aux_sym_throw_expression_token1] = ACTIONS(1168), + [aux_sym_while_statement_token1] = ACTIONS(1168), + [aux_sym_while_statement_token2] = ACTIONS(1168), + [aux_sym_do_statement_token1] = ACTIONS(1168), + [aux_sym_for_statement_token1] = ACTIONS(1168), + [aux_sym_for_statement_token2] = ACTIONS(1168), + [aux_sym_foreach_statement_token1] = ACTIONS(1168), + [aux_sym_foreach_statement_token2] = ACTIONS(1168), + [aux_sym_if_statement_token1] = ACTIONS(1168), + [aux_sym_if_statement_token2] = ACTIONS(1168), + [aux_sym_else_if_clause_token1] = ACTIONS(1168), + [aux_sym_else_clause_token1] = ACTIONS(1168), + [aux_sym_match_expression_token1] = ACTIONS(1168), + [aux_sym_match_default_expression_token1] = ACTIONS(1168), + [aux_sym_switch_statement_token1] = ACTIONS(1168), + [aux_sym_switch_block_token1] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1166), + [anon_sym_AT] = ACTIONS(1166), + [aux_sym_clone_expression_token1] = ACTIONS(1168), + [aux_sym_print_intrinsic_token1] = ACTIONS(1168), + [aux_sym_object_creation_expression_token1] = ACTIONS(1168), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [aux_sym__list_destructing_token1] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_self] = ACTIONS(1168), + [anon_sym_parent] = ACTIONS(1168), + [aux_sym__argument_name_token1] = ACTIONS(1168), + [aux_sym__argument_name_token2] = ACTIONS(1168), + [anon_sym_POUND_LBRACK] = ACTIONS(1166), + [anon_sym_SQUOTE] = ACTIONS(1166), + [aux_sym_encapsed_string_token1] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(1166), + [aux_sym_string_token1] = ACTIONS(1166), + [anon_sym_LT_LT_LT] = ACTIONS(1166), + [anon_sym_BQUOTE] = ACTIONS(1166), + [anon_sym_DOLLAR] = ACTIONS(1166), + [aux_sym_yield_expression_token1] = ACTIONS(1168), + [aux_sym_include_expression_token1] = ACTIONS(1168), + [aux_sym_include_once_expression_token1] = ACTIONS(1168), + [aux_sym_require_expression_token1] = ACTIONS(1168), + [aux_sym_require_once_expression_token1] = ACTIONS(1168), [sym_comment] = ACTIONS(5), }, [458] = { [sym_text_interpolation] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(1168), - [sym_name] = ACTIONS(1170), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1168), - [aux_sym_function_static_declaration_token1] = ACTIONS(1170), - [aux_sym_global_declaration_token1] = ACTIONS(1170), - [aux_sym_namespace_definition_token1] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1170), - [anon_sym_BSLASH] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [aux_sym_trait_declaration_token1] = ACTIONS(1170), - [aux_sym_interface_declaration_token1] = ACTIONS(1170), - [aux_sym_enum_declaration_token1] = ACTIONS(1170), - [aux_sym_enum_case_token1] = ACTIONS(1170), - [aux_sym_class_declaration_token1] = ACTIONS(1170), - [aux_sym_final_modifier_token1] = ACTIONS(1170), - [aux_sym_abstract_modifier_token1] = ACTIONS(1170), - [aux_sym_readonly_modifier_token1] = ACTIONS(1170), - [aux_sym_visibility_modifier_token1] = ACTIONS(1170), - [aux_sym_visibility_modifier_token2] = ACTIONS(1170), - [aux_sym_visibility_modifier_token3] = ACTIONS(1170), - [aux_sym__arrow_function_header_token1] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1168), - [aux_sym_cast_type_token1] = ACTIONS(1170), - [aux_sym_echo_statement_token1] = ACTIONS(1170), - [anon_sym_unset] = ACTIONS(1170), - [aux_sym_declare_statement_token1] = ACTIONS(1170), - [aux_sym_declare_statement_token2] = ACTIONS(1170), - [sym_float] = ACTIONS(1170), - [aux_sym_try_statement_token1] = ACTIONS(1170), - [aux_sym_goto_statement_token1] = ACTIONS(1170), - [aux_sym_continue_statement_token1] = ACTIONS(1170), - [aux_sym_break_statement_token1] = ACTIONS(1170), - [sym_integer] = ACTIONS(1170), - [aux_sym_return_statement_token1] = ACTIONS(1170), - [aux_sym_throw_expression_token1] = ACTIONS(1170), - [aux_sym_while_statement_token1] = ACTIONS(1170), - [aux_sym_while_statement_token2] = ACTIONS(1170), - [aux_sym_do_statement_token1] = ACTIONS(1170), - [aux_sym_for_statement_token1] = ACTIONS(1170), - [aux_sym_for_statement_token2] = ACTIONS(1170), - [aux_sym_foreach_statement_token1] = ACTIONS(1170), - [aux_sym_foreach_statement_token2] = ACTIONS(1170), - [aux_sym_if_statement_token1] = ACTIONS(1170), - [aux_sym_if_statement_token2] = ACTIONS(1170), - [aux_sym_else_if_clause_token1] = ACTIONS(1170), - [aux_sym_else_clause_token1] = ACTIONS(1170), - [aux_sym_match_expression_token1] = ACTIONS(1170), - [aux_sym_match_default_expression_token1] = ACTIONS(1170), - [aux_sym_switch_statement_token1] = ACTIONS(1170), - [aux_sym_switch_block_token1] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_AT] = ACTIONS(1168), - [aux_sym_clone_expression_token1] = ACTIONS(1170), - [aux_sym_print_intrinsic_token1] = ACTIONS(1170), - [aux_sym_object_creation_expression_token1] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [aux_sym__list_destructing_token1] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_self] = ACTIONS(1170), - [anon_sym_parent] = ACTIONS(1170), - [aux_sym__argument_name_token1] = ACTIONS(1170), - [aux_sym__argument_name_token2] = ACTIONS(1170), - [anon_sym_POUND_LBRACK] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [aux_sym_encapsed_string_token1] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [aux_sym_string_token1] = ACTIONS(1168), - [anon_sym_LT_LT_LT] = ACTIONS(1168), - [anon_sym_BQUOTE] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1168), - [aux_sym_yield_expression_token1] = ACTIONS(1170), - [aux_sym_include_expression_token1] = ACTIONS(1170), - [aux_sym_include_once_expression_token1] = ACTIONS(1170), - [aux_sym_require_expression_token1] = ACTIONS(1170), - [aux_sym_require_once_expression_token1] = ACTIONS(1170), + [ts_builtin_sym_end] = ACTIONS(1170), + [sym_name] = ACTIONS(1172), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1170), + [aux_sym_function_static_declaration_token1] = ACTIONS(1172), + [aux_sym_global_declaration_token1] = ACTIONS(1172), + [aux_sym_namespace_definition_token1] = ACTIONS(1172), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1172), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1172), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1172), + [anon_sym_BSLASH] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1170), + [aux_sym_trait_declaration_token1] = ACTIONS(1172), + [aux_sym_interface_declaration_token1] = ACTIONS(1172), + [aux_sym_enum_declaration_token1] = ACTIONS(1172), + [aux_sym_enum_case_token1] = ACTIONS(1172), + [aux_sym_class_declaration_token1] = ACTIONS(1172), + [aux_sym_final_modifier_token1] = ACTIONS(1172), + [aux_sym_abstract_modifier_token1] = ACTIONS(1172), + [aux_sym_readonly_modifier_token1] = ACTIONS(1172), + [aux_sym_visibility_modifier_token1] = ACTIONS(1172), + [aux_sym_visibility_modifier_token2] = ACTIONS(1172), + [aux_sym_visibility_modifier_token3] = ACTIONS(1172), + [aux_sym__arrow_function_header_token1] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1170), + [aux_sym_cast_type_token1] = ACTIONS(1172), + [aux_sym_echo_statement_token1] = ACTIONS(1172), + [anon_sym_unset] = ACTIONS(1172), + [aux_sym_declare_statement_token1] = ACTIONS(1172), + [aux_sym_declare_statement_token2] = ACTIONS(1172), + [sym_float] = ACTIONS(1172), + [aux_sym_try_statement_token1] = ACTIONS(1172), + [aux_sym_goto_statement_token1] = ACTIONS(1172), + [aux_sym_continue_statement_token1] = ACTIONS(1172), + [aux_sym_break_statement_token1] = ACTIONS(1172), + [sym_integer] = ACTIONS(1172), + [aux_sym_return_statement_token1] = ACTIONS(1172), + [aux_sym_throw_expression_token1] = ACTIONS(1172), + [aux_sym_while_statement_token1] = ACTIONS(1172), + [aux_sym_while_statement_token2] = ACTIONS(1172), + [aux_sym_do_statement_token1] = ACTIONS(1172), + [aux_sym_for_statement_token1] = ACTIONS(1172), + [aux_sym_for_statement_token2] = ACTIONS(1172), + [aux_sym_foreach_statement_token1] = ACTIONS(1172), + [aux_sym_foreach_statement_token2] = ACTIONS(1172), + [aux_sym_if_statement_token1] = ACTIONS(1172), + [aux_sym_if_statement_token2] = ACTIONS(1172), + [aux_sym_else_if_clause_token1] = ACTIONS(1172), + [aux_sym_else_clause_token1] = ACTIONS(1172), + [aux_sym_match_expression_token1] = ACTIONS(1172), + [aux_sym_match_default_expression_token1] = ACTIONS(1172), + [aux_sym_switch_statement_token1] = ACTIONS(1172), + [aux_sym_switch_block_token1] = ACTIONS(1172), + [anon_sym_PLUS] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_AT] = ACTIONS(1170), + [aux_sym_clone_expression_token1] = ACTIONS(1172), + [aux_sym_print_intrinsic_token1] = ACTIONS(1172), + [aux_sym_object_creation_expression_token1] = ACTIONS(1172), + [anon_sym_DASH_DASH] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [aux_sym__list_destructing_token1] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_self] = ACTIONS(1172), + [anon_sym_parent] = ACTIONS(1172), + [aux_sym__argument_name_token1] = ACTIONS(1172), + [aux_sym__argument_name_token2] = ACTIONS(1172), + [anon_sym_POUND_LBRACK] = ACTIONS(1170), + [anon_sym_SQUOTE] = ACTIONS(1170), + [aux_sym_encapsed_string_token1] = ACTIONS(1170), + [anon_sym_DQUOTE] = ACTIONS(1170), + [aux_sym_string_token1] = ACTIONS(1170), + [anon_sym_LT_LT_LT] = ACTIONS(1170), + [anon_sym_BQUOTE] = ACTIONS(1170), + [anon_sym_DOLLAR] = ACTIONS(1170), + [aux_sym_yield_expression_token1] = ACTIONS(1172), + [aux_sym_include_expression_token1] = ACTIONS(1172), + [aux_sym_include_once_expression_token1] = ACTIONS(1172), + [aux_sym_require_expression_token1] = ACTIONS(1172), + [aux_sym_require_once_expression_token1] = ACTIONS(1172), [sym_comment] = ACTIONS(5), }, [459] = { @@ -68027,5262 +67984,5262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_include_once_expression] = STATE(906), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(625), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(633), - [aux_sym_clone_expression_token1] = ACTIONS(637), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(647), - [aux_sym_include_once_expression_token1] = ACTIONS(649), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(627), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [aux_sym_clone_expression_token1] = ACTIONS(639), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), [sym_comment] = ACTIONS(5), }, [460] = { [sym_text_interpolation] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_name] = ACTIONS(1176), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1174), - [aux_sym_function_static_declaration_token1] = ACTIONS(1176), - [aux_sym_global_declaration_token1] = ACTIONS(1176), - [aux_sym_namespace_definition_token1] = ACTIONS(1176), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1176), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1176), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1176), - [anon_sym_BSLASH] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [aux_sym_trait_declaration_token1] = ACTIONS(1176), - [aux_sym_interface_declaration_token1] = ACTIONS(1176), - [aux_sym_enum_declaration_token1] = ACTIONS(1176), - [aux_sym_enum_case_token1] = ACTIONS(1176), - [aux_sym_class_declaration_token1] = ACTIONS(1176), - [aux_sym_final_modifier_token1] = ACTIONS(1176), - [aux_sym_abstract_modifier_token1] = ACTIONS(1176), - [aux_sym_readonly_modifier_token1] = ACTIONS(1176), - [aux_sym_visibility_modifier_token1] = ACTIONS(1176), - [aux_sym_visibility_modifier_token2] = ACTIONS(1176), - [aux_sym_visibility_modifier_token3] = ACTIONS(1176), - [aux_sym__arrow_function_header_token1] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1174), - [aux_sym_cast_type_token1] = ACTIONS(1176), - [aux_sym_echo_statement_token1] = ACTIONS(1176), - [anon_sym_unset] = ACTIONS(1176), - [aux_sym_declare_statement_token1] = ACTIONS(1176), - [aux_sym_declare_statement_token2] = ACTIONS(1176), - [sym_float] = ACTIONS(1176), - [aux_sym_try_statement_token1] = ACTIONS(1176), - [aux_sym_goto_statement_token1] = ACTIONS(1176), - [aux_sym_continue_statement_token1] = ACTIONS(1176), - [aux_sym_break_statement_token1] = ACTIONS(1176), - [sym_integer] = ACTIONS(1176), - [aux_sym_return_statement_token1] = ACTIONS(1176), - [aux_sym_throw_expression_token1] = ACTIONS(1176), - [aux_sym_while_statement_token1] = ACTIONS(1176), - [aux_sym_while_statement_token2] = ACTIONS(1176), - [aux_sym_do_statement_token1] = ACTIONS(1176), - [aux_sym_for_statement_token1] = ACTIONS(1176), - [aux_sym_for_statement_token2] = ACTIONS(1176), - [aux_sym_foreach_statement_token1] = ACTIONS(1176), - [aux_sym_foreach_statement_token2] = ACTIONS(1176), - [aux_sym_if_statement_token1] = ACTIONS(1176), - [aux_sym_if_statement_token2] = ACTIONS(1176), - [aux_sym_else_if_clause_token1] = ACTIONS(1176), - [aux_sym_else_clause_token1] = ACTIONS(1176), - [aux_sym_match_expression_token1] = ACTIONS(1176), - [aux_sym_match_default_expression_token1] = ACTIONS(1176), - [aux_sym_switch_statement_token1] = ACTIONS(1176), - [aux_sym_switch_block_token1] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_AT] = ACTIONS(1174), - [aux_sym_clone_expression_token1] = ACTIONS(1176), - [aux_sym_print_intrinsic_token1] = ACTIONS(1176), - [aux_sym_object_creation_expression_token1] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [aux_sym__list_destructing_token1] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_self] = ACTIONS(1176), - [anon_sym_parent] = ACTIONS(1176), - [aux_sym__argument_name_token1] = ACTIONS(1176), - [aux_sym__argument_name_token2] = ACTIONS(1176), - [anon_sym_POUND_LBRACK] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [aux_sym_encapsed_string_token1] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [aux_sym_string_token1] = ACTIONS(1174), - [anon_sym_LT_LT_LT] = ACTIONS(1174), - [anon_sym_BQUOTE] = ACTIONS(1174), - [anon_sym_DOLLAR] = ACTIONS(1174), - [aux_sym_yield_expression_token1] = ACTIONS(1176), - [aux_sym_include_expression_token1] = ACTIONS(1176), - [aux_sym_include_once_expression_token1] = ACTIONS(1176), - [aux_sym_require_expression_token1] = ACTIONS(1176), - [aux_sym_require_once_expression_token1] = ACTIONS(1176), + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_name] = ACTIONS(1178), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1176), + [aux_sym_function_static_declaration_token1] = ACTIONS(1178), + [aux_sym_global_declaration_token1] = ACTIONS(1178), + [aux_sym_namespace_definition_token1] = ACTIONS(1178), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1178), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1178), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1178), + [anon_sym_BSLASH] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1176), + [aux_sym_trait_declaration_token1] = ACTIONS(1178), + [aux_sym_interface_declaration_token1] = ACTIONS(1178), + [aux_sym_enum_declaration_token1] = ACTIONS(1178), + [aux_sym_enum_case_token1] = ACTIONS(1178), + [aux_sym_class_declaration_token1] = ACTIONS(1178), + [aux_sym_final_modifier_token1] = ACTIONS(1178), + [aux_sym_abstract_modifier_token1] = ACTIONS(1178), + [aux_sym_readonly_modifier_token1] = ACTIONS(1178), + [aux_sym_visibility_modifier_token1] = ACTIONS(1178), + [aux_sym_visibility_modifier_token2] = ACTIONS(1178), + [aux_sym_visibility_modifier_token3] = ACTIONS(1178), + [aux_sym__arrow_function_header_token1] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1176), + [aux_sym_cast_type_token1] = ACTIONS(1178), + [aux_sym_echo_statement_token1] = ACTIONS(1178), + [anon_sym_unset] = ACTIONS(1178), + [aux_sym_declare_statement_token1] = ACTIONS(1178), + [aux_sym_declare_statement_token2] = ACTIONS(1178), + [sym_float] = ACTIONS(1178), + [aux_sym_try_statement_token1] = ACTIONS(1178), + [aux_sym_goto_statement_token1] = ACTIONS(1178), + [aux_sym_continue_statement_token1] = ACTIONS(1178), + [aux_sym_break_statement_token1] = ACTIONS(1178), + [sym_integer] = ACTIONS(1178), + [aux_sym_return_statement_token1] = ACTIONS(1178), + [aux_sym_throw_expression_token1] = ACTIONS(1178), + [aux_sym_while_statement_token1] = ACTIONS(1178), + [aux_sym_while_statement_token2] = ACTIONS(1178), + [aux_sym_do_statement_token1] = ACTIONS(1178), + [aux_sym_for_statement_token1] = ACTIONS(1178), + [aux_sym_for_statement_token2] = ACTIONS(1178), + [aux_sym_foreach_statement_token1] = ACTIONS(1178), + [aux_sym_foreach_statement_token2] = ACTIONS(1178), + [aux_sym_if_statement_token1] = ACTIONS(1178), + [aux_sym_if_statement_token2] = ACTIONS(1178), + [aux_sym_else_if_clause_token1] = ACTIONS(1178), + [aux_sym_else_clause_token1] = ACTIONS(1178), + [aux_sym_match_expression_token1] = ACTIONS(1178), + [aux_sym_match_default_expression_token1] = ACTIONS(1178), + [aux_sym_switch_statement_token1] = ACTIONS(1178), + [aux_sym_switch_block_token1] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_TILDE] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1176), + [aux_sym_clone_expression_token1] = ACTIONS(1178), + [aux_sym_print_intrinsic_token1] = ACTIONS(1178), + [aux_sym_object_creation_expression_token1] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1176), + [aux_sym__list_destructing_token1] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_self] = ACTIONS(1178), + [anon_sym_parent] = ACTIONS(1178), + [aux_sym__argument_name_token1] = ACTIONS(1178), + [aux_sym__argument_name_token2] = ACTIONS(1178), + [anon_sym_POUND_LBRACK] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [aux_sym_encapsed_string_token1] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1176), + [aux_sym_string_token1] = ACTIONS(1176), + [anon_sym_LT_LT_LT] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(1176), + [anon_sym_DOLLAR] = ACTIONS(1176), + [aux_sym_yield_expression_token1] = ACTIONS(1178), + [aux_sym_include_expression_token1] = ACTIONS(1178), + [aux_sym_include_once_expression_token1] = ACTIONS(1178), + [aux_sym_require_expression_token1] = ACTIONS(1178), + [aux_sym_require_once_expression_token1] = ACTIONS(1178), [sym_comment] = ACTIONS(5), }, [461] = { [sym_text_interpolation] = STATE(461), - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_name] = ACTIONS(1180), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1178), - [aux_sym_function_static_declaration_token1] = ACTIONS(1180), - [aux_sym_global_declaration_token1] = ACTIONS(1180), - [aux_sym_namespace_definition_token1] = ACTIONS(1180), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1180), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1180), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1180), - [anon_sym_BSLASH] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [aux_sym_trait_declaration_token1] = ACTIONS(1180), - [aux_sym_interface_declaration_token1] = ACTIONS(1180), - [aux_sym_enum_declaration_token1] = ACTIONS(1180), - [aux_sym_enum_case_token1] = ACTIONS(1180), - [aux_sym_class_declaration_token1] = ACTIONS(1180), - [aux_sym_final_modifier_token1] = ACTIONS(1180), - [aux_sym_abstract_modifier_token1] = ACTIONS(1180), - [aux_sym_readonly_modifier_token1] = ACTIONS(1180), - [aux_sym_visibility_modifier_token1] = ACTIONS(1180), - [aux_sym_visibility_modifier_token2] = ACTIONS(1180), - [aux_sym_visibility_modifier_token3] = ACTIONS(1180), - [aux_sym__arrow_function_header_token1] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(1178), - [aux_sym_cast_type_token1] = ACTIONS(1180), - [aux_sym_echo_statement_token1] = ACTIONS(1180), - [anon_sym_unset] = ACTIONS(1180), - [aux_sym_declare_statement_token1] = ACTIONS(1180), - [aux_sym_declare_statement_token2] = ACTIONS(1180), - [sym_float] = ACTIONS(1180), - [aux_sym_try_statement_token1] = ACTIONS(1180), - [aux_sym_goto_statement_token1] = ACTIONS(1180), - [aux_sym_continue_statement_token1] = ACTIONS(1180), - [aux_sym_break_statement_token1] = ACTIONS(1180), - [sym_integer] = ACTIONS(1180), - [aux_sym_return_statement_token1] = ACTIONS(1180), - [aux_sym_throw_expression_token1] = ACTIONS(1180), - [aux_sym_while_statement_token1] = ACTIONS(1180), - [aux_sym_while_statement_token2] = ACTIONS(1180), - [aux_sym_do_statement_token1] = ACTIONS(1180), - [aux_sym_for_statement_token1] = ACTIONS(1180), - [aux_sym_for_statement_token2] = ACTIONS(1180), - [aux_sym_foreach_statement_token1] = ACTIONS(1180), - [aux_sym_foreach_statement_token2] = ACTIONS(1180), - [aux_sym_if_statement_token1] = ACTIONS(1180), - [aux_sym_if_statement_token2] = ACTIONS(1180), - [aux_sym_else_if_clause_token1] = ACTIONS(1180), - [aux_sym_else_clause_token1] = ACTIONS(1180), - [aux_sym_match_expression_token1] = ACTIONS(1180), - [aux_sym_match_default_expression_token1] = ACTIONS(1180), - [aux_sym_switch_statement_token1] = ACTIONS(1180), - [aux_sym_switch_block_token1] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(1178), - [aux_sym_clone_expression_token1] = ACTIONS(1180), - [aux_sym_print_intrinsic_token1] = ACTIONS(1180), - [aux_sym_object_creation_expression_token1] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [aux_sym__list_destructing_token1] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_self] = ACTIONS(1180), - [anon_sym_parent] = ACTIONS(1180), - [aux_sym__argument_name_token1] = ACTIONS(1180), - [aux_sym__argument_name_token2] = ACTIONS(1180), - [anon_sym_POUND_LBRACK] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1178), - [aux_sym_encapsed_string_token1] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1178), - [aux_sym_string_token1] = ACTIONS(1178), - [anon_sym_LT_LT_LT] = ACTIONS(1178), - [anon_sym_BQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR] = ACTIONS(1178), - [aux_sym_yield_expression_token1] = ACTIONS(1180), - [aux_sym_include_expression_token1] = ACTIONS(1180), - [aux_sym_include_once_expression_token1] = ACTIONS(1180), - [aux_sym_require_expression_token1] = ACTIONS(1180), - [aux_sym_require_once_expression_token1] = ACTIONS(1180), + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_name] = ACTIONS(1182), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1180), + [aux_sym_function_static_declaration_token1] = ACTIONS(1182), + [aux_sym_global_declaration_token1] = ACTIONS(1182), + [aux_sym_namespace_definition_token1] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1182), + [anon_sym_BSLASH] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [aux_sym_trait_declaration_token1] = ACTIONS(1182), + [aux_sym_interface_declaration_token1] = ACTIONS(1182), + [aux_sym_enum_declaration_token1] = ACTIONS(1182), + [aux_sym_enum_case_token1] = ACTIONS(1182), + [aux_sym_class_declaration_token1] = ACTIONS(1182), + [aux_sym_final_modifier_token1] = ACTIONS(1182), + [aux_sym_abstract_modifier_token1] = ACTIONS(1182), + [aux_sym_readonly_modifier_token1] = ACTIONS(1182), + [aux_sym_visibility_modifier_token1] = ACTIONS(1182), + [aux_sym_visibility_modifier_token2] = ACTIONS(1182), + [aux_sym_visibility_modifier_token3] = ACTIONS(1182), + [aux_sym__arrow_function_header_token1] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1180), + [aux_sym_cast_type_token1] = ACTIONS(1182), + [aux_sym_echo_statement_token1] = ACTIONS(1182), + [anon_sym_unset] = ACTIONS(1182), + [aux_sym_declare_statement_token1] = ACTIONS(1182), + [aux_sym_declare_statement_token2] = ACTIONS(1182), + [sym_float] = ACTIONS(1182), + [aux_sym_try_statement_token1] = ACTIONS(1182), + [aux_sym_goto_statement_token1] = ACTIONS(1182), + [aux_sym_continue_statement_token1] = ACTIONS(1182), + [aux_sym_break_statement_token1] = ACTIONS(1182), + [sym_integer] = ACTIONS(1182), + [aux_sym_return_statement_token1] = ACTIONS(1182), + [aux_sym_throw_expression_token1] = ACTIONS(1182), + [aux_sym_while_statement_token1] = ACTIONS(1182), + [aux_sym_while_statement_token2] = ACTIONS(1182), + [aux_sym_do_statement_token1] = ACTIONS(1182), + [aux_sym_for_statement_token1] = ACTIONS(1182), + [aux_sym_for_statement_token2] = ACTIONS(1182), + [aux_sym_foreach_statement_token1] = ACTIONS(1182), + [aux_sym_foreach_statement_token2] = ACTIONS(1182), + [aux_sym_if_statement_token1] = ACTIONS(1182), + [aux_sym_if_statement_token2] = ACTIONS(1182), + [aux_sym_else_if_clause_token1] = ACTIONS(1182), + [aux_sym_else_clause_token1] = ACTIONS(1182), + [aux_sym_match_expression_token1] = ACTIONS(1182), + [aux_sym_match_default_expression_token1] = ACTIONS(1182), + [aux_sym_switch_statement_token1] = ACTIONS(1182), + [aux_sym_switch_block_token1] = ACTIONS(1182), + [anon_sym_PLUS] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_AT] = ACTIONS(1180), + [aux_sym_clone_expression_token1] = ACTIONS(1182), + [aux_sym_print_intrinsic_token1] = ACTIONS(1182), + [aux_sym_object_creation_expression_token1] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1180), + [aux_sym__list_destructing_token1] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_self] = ACTIONS(1182), + [anon_sym_parent] = ACTIONS(1182), + [aux_sym__argument_name_token1] = ACTIONS(1182), + [aux_sym__argument_name_token2] = ACTIONS(1182), + [anon_sym_POUND_LBRACK] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [aux_sym_encapsed_string_token1] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1180), + [aux_sym_string_token1] = ACTIONS(1180), + [anon_sym_LT_LT_LT] = ACTIONS(1180), + [anon_sym_BQUOTE] = ACTIONS(1180), + [anon_sym_DOLLAR] = ACTIONS(1180), + [aux_sym_yield_expression_token1] = ACTIONS(1182), + [aux_sym_include_expression_token1] = ACTIONS(1182), + [aux_sym_include_once_expression_token1] = ACTIONS(1182), + [aux_sym_require_expression_token1] = ACTIONS(1182), + [aux_sym_require_once_expression_token1] = ACTIONS(1182), [sym_comment] = ACTIONS(5), }, [462] = { [sym_text_interpolation] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_name] = ACTIONS(1184), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1182), - [aux_sym_function_static_declaration_token1] = ACTIONS(1184), - [aux_sym_global_declaration_token1] = ACTIONS(1184), - [aux_sym_namespace_definition_token1] = ACTIONS(1184), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1184), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1184), - [anon_sym_BSLASH] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_RBRACE] = ACTIONS(1182), - [aux_sym_trait_declaration_token1] = ACTIONS(1184), - [aux_sym_interface_declaration_token1] = ACTIONS(1184), - [aux_sym_enum_declaration_token1] = ACTIONS(1184), - [aux_sym_enum_case_token1] = ACTIONS(1184), - [aux_sym_class_declaration_token1] = ACTIONS(1184), - [aux_sym_final_modifier_token1] = ACTIONS(1184), - [aux_sym_abstract_modifier_token1] = ACTIONS(1184), - [aux_sym_readonly_modifier_token1] = ACTIONS(1184), - [aux_sym_visibility_modifier_token1] = ACTIONS(1184), - [aux_sym_visibility_modifier_token2] = ACTIONS(1184), - [aux_sym_visibility_modifier_token3] = ACTIONS(1184), - [aux_sym__arrow_function_header_token1] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1182), - [aux_sym_cast_type_token1] = ACTIONS(1184), - [aux_sym_echo_statement_token1] = ACTIONS(1184), - [anon_sym_unset] = ACTIONS(1184), - [aux_sym_declare_statement_token1] = ACTIONS(1184), - [aux_sym_declare_statement_token2] = ACTIONS(1184), - [sym_float] = ACTIONS(1184), - [aux_sym_try_statement_token1] = ACTIONS(1184), - [aux_sym_goto_statement_token1] = ACTIONS(1184), - [aux_sym_continue_statement_token1] = ACTIONS(1184), - [aux_sym_break_statement_token1] = ACTIONS(1184), - [sym_integer] = ACTIONS(1184), - [aux_sym_return_statement_token1] = ACTIONS(1184), - [aux_sym_throw_expression_token1] = ACTIONS(1184), - [aux_sym_while_statement_token1] = ACTIONS(1184), - [aux_sym_while_statement_token2] = ACTIONS(1184), - [aux_sym_do_statement_token1] = ACTIONS(1184), - [aux_sym_for_statement_token1] = ACTIONS(1184), - [aux_sym_for_statement_token2] = ACTIONS(1184), - [aux_sym_foreach_statement_token1] = ACTIONS(1184), - [aux_sym_foreach_statement_token2] = ACTIONS(1184), - [aux_sym_if_statement_token1] = ACTIONS(1184), - [aux_sym_if_statement_token2] = ACTIONS(1184), - [aux_sym_else_if_clause_token1] = ACTIONS(1184), - [aux_sym_else_clause_token1] = ACTIONS(1184), - [aux_sym_match_expression_token1] = ACTIONS(1184), - [aux_sym_match_default_expression_token1] = ACTIONS(1184), - [aux_sym_switch_statement_token1] = ACTIONS(1184), - [aux_sym_switch_block_token1] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1182), - [anon_sym_AT] = ACTIONS(1182), - [aux_sym_clone_expression_token1] = ACTIONS(1184), - [aux_sym_print_intrinsic_token1] = ACTIONS(1184), - [aux_sym_object_creation_expression_token1] = ACTIONS(1184), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [aux_sym__list_destructing_token1] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_self] = ACTIONS(1184), - [anon_sym_parent] = ACTIONS(1184), - [aux_sym__argument_name_token1] = ACTIONS(1184), - [aux_sym__argument_name_token2] = ACTIONS(1184), - [anon_sym_POUND_LBRACK] = ACTIONS(1182), - [anon_sym_SQUOTE] = ACTIONS(1182), - [aux_sym_encapsed_string_token1] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1182), - [aux_sym_string_token1] = ACTIONS(1182), - [anon_sym_LT_LT_LT] = ACTIONS(1182), - [anon_sym_BQUOTE] = ACTIONS(1182), - [anon_sym_DOLLAR] = ACTIONS(1182), - [aux_sym_yield_expression_token1] = ACTIONS(1184), - [aux_sym_include_expression_token1] = ACTIONS(1184), - [aux_sym_include_once_expression_token1] = ACTIONS(1184), - [aux_sym_require_expression_token1] = ACTIONS(1184), - [aux_sym_require_once_expression_token1] = ACTIONS(1184), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_name] = ACTIONS(1186), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1184), + [aux_sym_function_static_declaration_token1] = ACTIONS(1186), + [aux_sym_global_declaration_token1] = ACTIONS(1186), + [aux_sym_namespace_definition_token1] = ACTIONS(1186), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1186), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1186), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1186), + [anon_sym_BSLASH] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [aux_sym_trait_declaration_token1] = ACTIONS(1186), + [aux_sym_interface_declaration_token1] = ACTIONS(1186), + [aux_sym_enum_declaration_token1] = ACTIONS(1186), + [aux_sym_enum_case_token1] = ACTIONS(1186), + [aux_sym_class_declaration_token1] = ACTIONS(1186), + [aux_sym_final_modifier_token1] = ACTIONS(1186), + [aux_sym_abstract_modifier_token1] = ACTIONS(1186), + [aux_sym_readonly_modifier_token1] = ACTIONS(1186), + [aux_sym_visibility_modifier_token1] = ACTIONS(1186), + [aux_sym_visibility_modifier_token2] = ACTIONS(1186), + [aux_sym_visibility_modifier_token3] = ACTIONS(1186), + [aux_sym__arrow_function_header_token1] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1184), + [aux_sym_cast_type_token1] = ACTIONS(1186), + [aux_sym_echo_statement_token1] = ACTIONS(1186), + [anon_sym_unset] = ACTIONS(1186), + [aux_sym_declare_statement_token1] = ACTIONS(1186), + [aux_sym_declare_statement_token2] = ACTIONS(1186), + [sym_float] = ACTIONS(1186), + [aux_sym_try_statement_token1] = ACTIONS(1186), + [aux_sym_goto_statement_token1] = ACTIONS(1186), + [aux_sym_continue_statement_token1] = ACTIONS(1186), + [aux_sym_break_statement_token1] = ACTIONS(1186), + [sym_integer] = ACTIONS(1186), + [aux_sym_return_statement_token1] = ACTIONS(1186), + [aux_sym_throw_expression_token1] = ACTIONS(1186), + [aux_sym_while_statement_token1] = ACTIONS(1186), + [aux_sym_while_statement_token2] = ACTIONS(1186), + [aux_sym_do_statement_token1] = ACTIONS(1186), + [aux_sym_for_statement_token1] = ACTIONS(1186), + [aux_sym_for_statement_token2] = ACTIONS(1186), + [aux_sym_foreach_statement_token1] = ACTIONS(1186), + [aux_sym_foreach_statement_token2] = ACTIONS(1186), + [aux_sym_if_statement_token1] = ACTIONS(1186), + [aux_sym_if_statement_token2] = ACTIONS(1186), + [aux_sym_else_if_clause_token1] = ACTIONS(1186), + [aux_sym_else_clause_token1] = ACTIONS(1186), + [aux_sym_match_expression_token1] = ACTIONS(1186), + [aux_sym_match_default_expression_token1] = ACTIONS(1186), + [aux_sym_switch_statement_token1] = ACTIONS(1186), + [aux_sym_switch_block_token1] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_TILDE] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_AT] = ACTIONS(1184), + [aux_sym_clone_expression_token1] = ACTIONS(1186), + [aux_sym_print_intrinsic_token1] = ACTIONS(1186), + [aux_sym_object_creation_expression_token1] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1184), + [aux_sym__list_destructing_token1] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_self] = ACTIONS(1186), + [anon_sym_parent] = ACTIONS(1186), + [aux_sym__argument_name_token1] = ACTIONS(1186), + [aux_sym__argument_name_token2] = ACTIONS(1186), + [anon_sym_POUND_LBRACK] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [aux_sym_encapsed_string_token1] = ACTIONS(1184), + [anon_sym_DQUOTE] = ACTIONS(1184), + [aux_sym_string_token1] = ACTIONS(1184), + [anon_sym_LT_LT_LT] = ACTIONS(1184), + [anon_sym_BQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR] = ACTIONS(1184), + [aux_sym_yield_expression_token1] = ACTIONS(1186), + [aux_sym_include_expression_token1] = ACTIONS(1186), + [aux_sym_include_once_expression_token1] = ACTIONS(1186), + [aux_sym_require_expression_token1] = ACTIONS(1186), + [aux_sym_require_once_expression_token1] = ACTIONS(1186), [sym_comment] = ACTIONS(5), }, [463] = { [sym_text_interpolation] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(1186), - [sym_name] = ACTIONS(1188), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1186), - [aux_sym_function_static_declaration_token1] = ACTIONS(1188), - [aux_sym_global_declaration_token1] = ACTIONS(1188), - [aux_sym_namespace_definition_token1] = ACTIONS(1188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1188), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1188), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1188), - [anon_sym_BSLASH] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [aux_sym_trait_declaration_token1] = ACTIONS(1188), - [aux_sym_interface_declaration_token1] = ACTIONS(1188), - [aux_sym_enum_declaration_token1] = ACTIONS(1188), - [aux_sym_enum_case_token1] = ACTIONS(1188), - [aux_sym_class_declaration_token1] = ACTIONS(1188), - [aux_sym_final_modifier_token1] = ACTIONS(1188), - [aux_sym_abstract_modifier_token1] = ACTIONS(1188), - [aux_sym_readonly_modifier_token1] = ACTIONS(1188), - [aux_sym_visibility_modifier_token1] = ACTIONS(1188), - [aux_sym_visibility_modifier_token2] = ACTIONS(1188), - [aux_sym_visibility_modifier_token3] = ACTIONS(1188), - [aux_sym__arrow_function_header_token1] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1186), - [aux_sym_cast_type_token1] = ACTIONS(1188), - [aux_sym_echo_statement_token1] = ACTIONS(1188), - [anon_sym_unset] = ACTIONS(1188), - [aux_sym_declare_statement_token1] = ACTIONS(1188), - [aux_sym_declare_statement_token2] = ACTIONS(1188), - [sym_float] = ACTIONS(1188), - [aux_sym_try_statement_token1] = ACTIONS(1188), - [aux_sym_goto_statement_token1] = ACTIONS(1188), - [aux_sym_continue_statement_token1] = ACTIONS(1188), - [aux_sym_break_statement_token1] = ACTIONS(1188), - [sym_integer] = ACTIONS(1188), - [aux_sym_return_statement_token1] = ACTIONS(1188), - [aux_sym_throw_expression_token1] = ACTIONS(1188), - [aux_sym_while_statement_token1] = ACTIONS(1188), - [aux_sym_while_statement_token2] = ACTIONS(1188), - [aux_sym_do_statement_token1] = ACTIONS(1188), - [aux_sym_for_statement_token1] = ACTIONS(1188), - [aux_sym_for_statement_token2] = ACTIONS(1188), - [aux_sym_foreach_statement_token1] = ACTIONS(1188), - [aux_sym_foreach_statement_token2] = ACTIONS(1188), - [aux_sym_if_statement_token1] = ACTIONS(1188), - [aux_sym_if_statement_token2] = ACTIONS(1188), - [aux_sym_else_if_clause_token1] = ACTIONS(1188), - [aux_sym_else_clause_token1] = ACTIONS(1188), - [aux_sym_match_expression_token1] = ACTIONS(1188), - [aux_sym_match_default_expression_token1] = ACTIONS(1188), - [aux_sym_switch_statement_token1] = ACTIONS(1188), - [aux_sym_switch_block_token1] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_AT] = ACTIONS(1186), - [aux_sym_clone_expression_token1] = ACTIONS(1188), - [aux_sym_print_intrinsic_token1] = ACTIONS(1188), - [aux_sym_object_creation_expression_token1] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [aux_sym__list_destructing_token1] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_self] = ACTIONS(1188), - [anon_sym_parent] = ACTIONS(1188), - [aux_sym__argument_name_token1] = ACTIONS(1188), - [aux_sym__argument_name_token2] = ACTIONS(1188), - [anon_sym_POUND_LBRACK] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(1186), - [aux_sym_encapsed_string_token1] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [aux_sym_string_token1] = ACTIONS(1186), - [anon_sym_LT_LT_LT] = ACTIONS(1186), - [anon_sym_BQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1186), - [aux_sym_yield_expression_token1] = ACTIONS(1188), - [aux_sym_include_expression_token1] = ACTIONS(1188), - [aux_sym_include_once_expression_token1] = ACTIONS(1188), - [aux_sym_require_expression_token1] = ACTIONS(1188), - [aux_sym_require_once_expression_token1] = ACTIONS(1188), + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_name] = ACTIONS(1190), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1188), + [aux_sym_function_static_declaration_token1] = ACTIONS(1190), + [aux_sym_global_declaration_token1] = ACTIONS(1190), + [aux_sym_namespace_definition_token1] = ACTIONS(1190), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1190), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1190), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1190), + [anon_sym_BSLASH] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [aux_sym_trait_declaration_token1] = ACTIONS(1190), + [aux_sym_interface_declaration_token1] = ACTIONS(1190), + [aux_sym_enum_declaration_token1] = ACTIONS(1190), + [aux_sym_enum_case_token1] = ACTIONS(1190), + [aux_sym_class_declaration_token1] = ACTIONS(1190), + [aux_sym_final_modifier_token1] = ACTIONS(1190), + [aux_sym_abstract_modifier_token1] = ACTIONS(1190), + [aux_sym_readonly_modifier_token1] = ACTIONS(1190), + [aux_sym_visibility_modifier_token1] = ACTIONS(1190), + [aux_sym_visibility_modifier_token2] = ACTIONS(1190), + [aux_sym_visibility_modifier_token3] = ACTIONS(1190), + [aux_sym__arrow_function_header_token1] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [aux_sym_cast_type_token1] = ACTIONS(1190), + [aux_sym_echo_statement_token1] = ACTIONS(1190), + [anon_sym_unset] = ACTIONS(1190), + [aux_sym_declare_statement_token1] = ACTIONS(1190), + [aux_sym_declare_statement_token2] = ACTIONS(1190), + [sym_float] = ACTIONS(1190), + [aux_sym_try_statement_token1] = ACTIONS(1190), + [aux_sym_goto_statement_token1] = ACTIONS(1190), + [aux_sym_continue_statement_token1] = ACTIONS(1190), + [aux_sym_break_statement_token1] = ACTIONS(1190), + [sym_integer] = ACTIONS(1190), + [aux_sym_return_statement_token1] = ACTIONS(1190), + [aux_sym_throw_expression_token1] = ACTIONS(1190), + [aux_sym_while_statement_token1] = ACTIONS(1190), + [aux_sym_while_statement_token2] = ACTIONS(1190), + [aux_sym_do_statement_token1] = ACTIONS(1190), + [aux_sym_for_statement_token1] = ACTIONS(1190), + [aux_sym_for_statement_token2] = ACTIONS(1190), + [aux_sym_foreach_statement_token1] = ACTIONS(1190), + [aux_sym_foreach_statement_token2] = ACTIONS(1190), + [aux_sym_if_statement_token1] = ACTIONS(1190), + [aux_sym_if_statement_token2] = ACTIONS(1190), + [aux_sym_else_if_clause_token1] = ACTIONS(1190), + [aux_sym_else_clause_token1] = ACTIONS(1190), + [aux_sym_match_expression_token1] = ACTIONS(1190), + [aux_sym_match_default_expression_token1] = ACTIONS(1190), + [aux_sym_switch_statement_token1] = ACTIONS(1190), + [aux_sym_switch_block_token1] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_AT] = ACTIONS(1188), + [aux_sym_clone_expression_token1] = ACTIONS(1190), + [aux_sym_print_intrinsic_token1] = ACTIONS(1190), + [aux_sym_object_creation_expression_token1] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [aux_sym__list_destructing_token1] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_self] = ACTIONS(1190), + [anon_sym_parent] = ACTIONS(1190), + [aux_sym__argument_name_token1] = ACTIONS(1190), + [aux_sym__argument_name_token2] = ACTIONS(1190), + [anon_sym_POUND_LBRACK] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [aux_sym_encapsed_string_token1] = ACTIONS(1188), + [anon_sym_DQUOTE] = ACTIONS(1188), + [aux_sym_string_token1] = ACTIONS(1188), + [anon_sym_LT_LT_LT] = ACTIONS(1188), + [anon_sym_BQUOTE] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1188), + [aux_sym_yield_expression_token1] = ACTIONS(1190), + [aux_sym_include_expression_token1] = ACTIONS(1190), + [aux_sym_include_once_expression_token1] = ACTIONS(1190), + [aux_sym_require_expression_token1] = ACTIONS(1190), + [aux_sym_require_once_expression_token1] = ACTIONS(1190), [sym_comment] = ACTIONS(5), }, [464] = { [sym_text_interpolation] = STATE(464), - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_name] = ACTIONS(1192), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1190), - [aux_sym_function_static_declaration_token1] = ACTIONS(1192), - [aux_sym_global_declaration_token1] = ACTIONS(1192), - [aux_sym_namespace_definition_token1] = ACTIONS(1192), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1192), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1192), - [anon_sym_BSLASH] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [aux_sym_trait_declaration_token1] = ACTIONS(1192), - [aux_sym_interface_declaration_token1] = ACTIONS(1192), - [aux_sym_enum_declaration_token1] = ACTIONS(1192), - [aux_sym_enum_case_token1] = ACTIONS(1192), - [aux_sym_class_declaration_token1] = ACTIONS(1192), - [aux_sym_final_modifier_token1] = ACTIONS(1192), - [aux_sym_abstract_modifier_token1] = ACTIONS(1192), - [aux_sym_readonly_modifier_token1] = ACTIONS(1192), - [aux_sym_visibility_modifier_token1] = ACTIONS(1192), - [aux_sym_visibility_modifier_token2] = ACTIONS(1192), - [aux_sym_visibility_modifier_token3] = ACTIONS(1192), - [aux_sym__arrow_function_header_token1] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1190), - [aux_sym_cast_type_token1] = ACTIONS(1192), - [aux_sym_echo_statement_token1] = ACTIONS(1192), - [anon_sym_unset] = ACTIONS(1192), - [aux_sym_declare_statement_token1] = ACTIONS(1192), - [aux_sym_declare_statement_token2] = ACTIONS(1192), - [sym_float] = ACTIONS(1192), - [aux_sym_try_statement_token1] = ACTIONS(1192), - [aux_sym_goto_statement_token1] = ACTIONS(1192), - [aux_sym_continue_statement_token1] = ACTIONS(1192), - [aux_sym_break_statement_token1] = ACTIONS(1192), - [sym_integer] = ACTIONS(1192), - [aux_sym_return_statement_token1] = ACTIONS(1192), - [aux_sym_throw_expression_token1] = ACTIONS(1192), - [aux_sym_while_statement_token1] = ACTIONS(1192), - [aux_sym_while_statement_token2] = ACTIONS(1192), - [aux_sym_do_statement_token1] = ACTIONS(1192), - [aux_sym_for_statement_token1] = ACTIONS(1192), - [aux_sym_for_statement_token2] = ACTIONS(1192), - [aux_sym_foreach_statement_token1] = ACTIONS(1192), - [aux_sym_foreach_statement_token2] = ACTIONS(1192), - [aux_sym_if_statement_token1] = ACTIONS(1192), - [aux_sym_if_statement_token2] = ACTIONS(1192), - [aux_sym_else_if_clause_token1] = ACTIONS(1192), - [aux_sym_else_clause_token1] = ACTIONS(1192), - [aux_sym_match_expression_token1] = ACTIONS(1192), - [aux_sym_match_default_expression_token1] = ACTIONS(1192), - [aux_sym_switch_statement_token1] = ACTIONS(1192), - [aux_sym_switch_block_token1] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_AT] = ACTIONS(1190), - [aux_sym_clone_expression_token1] = ACTIONS(1192), - [aux_sym_print_intrinsic_token1] = ACTIONS(1192), - [aux_sym_object_creation_expression_token1] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [aux_sym__list_destructing_token1] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_self] = ACTIONS(1192), - [anon_sym_parent] = ACTIONS(1192), - [aux_sym__argument_name_token1] = ACTIONS(1192), - [aux_sym__argument_name_token2] = ACTIONS(1192), - [anon_sym_POUND_LBRACK] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [aux_sym_encapsed_string_token1] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [aux_sym_string_token1] = ACTIONS(1190), - [anon_sym_LT_LT_LT] = ACTIONS(1190), - [anon_sym_BQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [aux_sym_yield_expression_token1] = ACTIONS(1192), - [aux_sym_include_expression_token1] = ACTIONS(1192), - [aux_sym_include_once_expression_token1] = ACTIONS(1192), - [aux_sym_require_expression_token1] = ACTIONS(1192), - [aux_sym_require_once_expression_token1] = ACTIONS(1192), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_name] = ACTIONS(1194), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1192), + [aux_sym_function_static_declaration_token1] = ACTIONS(1194), + [aux_sym_global_declaration_token1] = ACTIONS(1194), + [aux_sym_namespace_definition_token1] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [aux_sym_trait_declaration_token1] = ACTIONS(1194), + [aux_sym_interface_declaration_token1] = ACTIONS(1194), + [aux_sym_enum_declaration_token1] = ACTIONS(1194), + [aux_sym_enum_case_token1] = ACTIONS(1194), + [aux_sym_class_declaration_token1] = ACTIONS(1194), + [aux_sym_final_modifier_token1] = ACTIONS(1194), + [aux_sym_abstract_modifier_token1] = ACTIONS(1194), + [aux_sym_readonly_modifier_token1] = ACTIONS(1194), + [aux_sym_visibility_modifier_token1] = ACTIONS(1194), + [aux_sym_visibility_modifier_token2] = ACTIONS(1194), + [aux_sym_visibility_modifier_token3] = ACTIONS(1194), + [aux_sym__arrow_function_header_token1] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1192), + [aux_sym_cast_type_token1] = ACTIONS(1194), + [aux_sym_echo_statement_token1] = ACTIONS(1194), + [anon_sym_unset] = ACTIONS(1194), + [aux_sym_declare_statement_token1] = ACTIONS(1194), + [aux_sym_declare_statement_token2] = ACTIONS(1194), + [sym_float] = ACTIONS(1194), + [aux_sym_try_statement_token1] = ACTIONS(1194), + [aux_sym_goto_statement_token1] = ACTIONS(1194), + [aux_sym_continue_statement_token1] = ACTIONS(1194), + [aux_sym_break_statement_token1] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [aux_sym_return_statement_token1] = ACTIONS(1194), + [aux_sym_throw_expression_token1] = ACTIONS(1194), + [aux_sym_while_statement_token1] = ACTIONS(1194), + [aux_sym_while_statement_token2] = ACTIONS(1194), + [aux_sym_do_statement_token1] = ACTIONS(1194), + [aux_sym_for_statement_token1] = ACTIONS(1194), + [aux_sym_for_statement_token2] = ACTIONS(1194), + [aux_sym_foreach_statement_token1] = ACTIONS(1194), + [aux_sym_foreach_statement_token2] = ACTIONS(1194), + [aux_sym_if_statement_token1] = ACTIONS(1194), + [aux_sym_if_statement_token2] = ACTIONS(1194), + [aux_sym_else_if_clause_token1] = ACTIONS(1194), + [aux_sym_else_clause_token1] = ACTIONS(1194), + [aux_sym_match_expression_token1] = ACTIONS(1194), + [aux_sym_match_default_expression_token1] = ACTIONS(1194), + [aux_sym_switch_statement_token1] = ACTIONS(1194), + [aux_sym_switch_block_token1] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_AT] = ACTIONS(1192), + [aux_sym_clone_expression_token1] = ACTIONS(1194), + [aux_sym_print_intrinsic_token1] = ACTIONS(1194), + [aux_sym_object_creation_expression_token1] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [aux_sym__list_destructing_token1] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_self] = ACTIONS(1194), + [anon_sym_parent] = ACTIONS(1194), + [aux_sym__argument_name_token1] = ACTIONS(1194), + [aux_sym__argument_name_token2] = ACTIONS(1194), + [anon_sym_POUND_LBRACK] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [aux_sym_encapsed_string_token1] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [aux_sym_string_token1] = ACTIONS(1192), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [aux_sym_yield_expression_token1] = ACTIONS(1194), + [aux_sym_include_expression_token1] = ACTIONS(1194), + [aux_sym_include_once_expression_token1] = ACTIONS(1194), + [aux_sym_require_expression_token1] = ACTIONS(1194), + [aux_sym_require_once_expression_token1] = ACTIONS(1194), [sym_comment] = ACTIONS(5), }, [465] = { [sym_text_interpolation] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_name] = ACTIONS(1196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1194), - [aux_sym_function_static_declaration_token1] = ACTIONS(1196), - [aux_sym_global_declaration_token1] = ACTIONS(1196), - [aux_sym_namespace_definition_token1] = ACTIONS(1196), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1196), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1196), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1196), - [anon_sym_BSLASH] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [aux_sym_trait_declaration_token1] = ACTIONS(1196), - [aux_sym_interface_declaration_token1] = ACTIONS(1196), - [aux_sym_enum_declaration_token1] = ACTIONS(1196), - [aux_sym_enum_case_token1] = ACTIONS(1196), - [aux_sym_class_declaration_token1] = ACTIONS(1196), - [aux_sym_final_modifier_token1] = ACTIONS(1196), - [aux_sym_abstract_modifier_token1] = ACTIONS(1196), - [aux_sym_readonly_modifier_token1] = ACTIONS(1196), - [aux_sym_visibility_modifier_token1] = ACTIONS(1196), - [aux_sym_visibility_modifier_token2] = ACTIONS(1196), - [aux_sym_visibility_modifier_token3] = ACTIONS(1196), - [aux_sym__arrow_function_header_token1] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1194), - [aux_sym_cast_type_token1] = ACTIONS(1196), - [aux_sym_echo_statement_token1] = ACTIONS(1196), - [anon_sym_unset] = ACTIONS(1196), - [aux_sym_declare_statement_token1] = ACTIONS(1196), - [aux_sym_declare_statement_token2] = ACTIONS(1196), - [sym_float] = ACTIONS(1196), - [aux_sym_try_statement_token1] = ACTIONS(1196), - [aux_sym_goto_statement_token1] = ACTIONS(1196), - [aux_sym_continue_statement_token1] = ACTIONS(1196), - [aux_sym_break_statement_token1] = ACTIONS(1196), - [sym_integer] = ACTIONS(1196), - [aux_sym_return_statement_token1] = ACTIONS(1196), - [aux_sym_throw_expression_token1] = ACTIONS(1196), - [aux_sym_while_statement_token1] = ACTIONS(1196), - [aux_sym_while_statement_token2] = ACTIONS(1196), - [aux_sym_do_statement_token1] = ACTIONS(1196), - [aux_sym_for_statement_token1] = ACTIONS(1196), - [aux_sym_for_statement_token2] = ACTIONS(1196), - [aux_sym_foreach_statement_token1] = ACTIONS(1196), - [aux_sym_foreach_statement_token2] = ACTIONS(1196), - [aux_sym_if_statement_token1] = ACTIONS(1196), - [aux_sym_if_statement_token2] = ACTIONS(1196), - [aux_sym_else_if_clause_token1] = ACTIONS(1196), - [aux_sym_else_clause_token1] = ACTIONS(1196), - [aux_sym_match_expression_token1] = ACTIONS(1196), - [aux_sym_match_default_expression_token1] = ACTIONS(1196), - [aux_sym_switch_statement_token1] = ACTIONS(1196), - [aux_sym_switch_block_token1] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(1194), - [aux_sym_clone_expression_token1] = ACTIONS(1196), - [aux_sym_print_intrinsic_token1] = ACTIONS(1196), - [aux_sym_object_creation_expression_token1] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [aux_sym__list_destructing_token1] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_self] = ACTIONS(1196), - [anon_sym_parent] = ACTIONS(1196), - [aux_sym__argument_name_token1] = ACTIONS(1196), - [aux_sym__argument_name_token2] = ACTIONS(1196), - [anon_sym_POUND_LBRACK] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1194), - [aux_sym_encapsed_string_token1] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [aux_sym_string_token1] = ACTIONS(1194), - [anon_sym_LT_LT_LT] = ACTIONS(1194), - [anon_sym_BQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [aux_sym_yield_expression_token1] = ACTIONS(1196), - [aux_sym_include_expression_token1] = ACTIONS(1196), - [aux_sym_include_once_expression_token1] = ACTIONS(1196), - [aux_sym_require_expression_token1] = ACTIONS(1196), - [aux_sym_require_once_expression_token1] = ACTIONS(1196), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_name] = ACTIONS(1198), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1196), + [aux_sym_function_static_declaration_token1] = ACTIONS(1198), + [aux_sym_global_declaration_token1] = ACTIONS(1198), + [aux_sym_namespace_definition_token1] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1198), + [anon_sym_BSLASH] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [aux_sym_trait_declaration_token1] = ACTIONS(1198), + [aux_sym_interface_declaration_token1] = ACTIONS(1198), + [aux_sym_enum_declaration_token1] = ACTIONS(1198), + [aux_sym_enum_case_token1] = ACTIONS(1198), + [aux_sym_class_declaration_token1] = ACTIONS(1198), + [aux_sym_final_modifier_token1] = ACTIONS(1198), + [aux_sym_abstract_modifier_token1] = ACTIONS(1198), + [aux_sym_readonly_modifier_token1] = ACTIONS(1198), + [aux_sym_visibility_modifier_token1] = ACTIONS(1198), + [aux_sym_visibility_modifier_token2] = ACTIONS(1198), + [aux_sym_visibility_modifier_token3] = ACTIONS(1198), + [aux_sym__arrow_function_header_token1] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1196), + [aux_sym_cast_type_token1] = ACTIONS(1198), + [aux_sym_echo_statement_token1] = ACTIONS(1198), + [anon_sym_unset] = ACTIONS(1198), + [aux_sym_declare_statement_token1] = ACTIONS(1198), + [aux_sym_declare_statement_token2] = ACTIONS(1198), + [sym_float] = ACTIONS(1198), + [aux_sym_try_statement_token1] = ACTIONS(1198), + [aux_sym_goto_statement_token1] = ACTIONS(1198), + [aux_sym_continue_statement_token1] = ACTIONS(1198), + [aux_sym_break_statement_token1] = ACTIONS(1198), + [sym_integer] = ACTIONS(1198), + [aux_sym_return_statement_token1] = ACTIONS(1198), + [aux_sym_throw_expression_token1] = ACTIONS(1198), + [aux_sym_while_statement_token1] = ACTIONS(1198), + [aux_sym_while_statement_token2] = ACTIONS(1198), + [aux_sym_do_statement_token1] = ACTIONS(1198), + [aux_sym_for_statement_token1] = ACTIONS(1198), + [aux_sym_for_statement_token2] = ACTIONS(1198), + [aux_sym_foreach_statement_token1] = ACTIONS(1198), + [aux_sym_foreach_statement_token2] = ACTIONS(1198), + [aux_sym_if_statement_token1] = ACTIONS(1198), + [aux_sym_if_statement_token2] = ACTIONS(1198), + [aux_sym_else_if_clause_token1] = ACTIONS(1198), + [aux_sym_else_clause_token1] = ACTIONS(1198), + [aux_sym_match_expression_token1] = ACTIONS(1198), + [aux_sym_match_default_expression_token1] = ACTIONS(1198), + [aux_sym_switch_statement_token1] = ACTIONS(1198), + [aux_sym_switch_block_token1] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AT] = ACTIONS(1196), + [aux_sym_clone_expression_token1] = ACTIONS(1198), + [aux_sym_print_intrinsic_token1] = ACTIONS(1198), + [aux_sym_object_creation_expression_token1] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [aux_sym__list_destructing_token1] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_self] = ACTIONS(1198), + [anon_sym_parent] = ACTIONS(1198), + [aux_sym__argument_name_token1] = ACTIONS(1198), + [aux_sym__argument_name_token2] = ACTIONS(1198), + [anon_sym_POUND_LBRACK] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [aux_sym_encapsed_string_token1] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1196), + [aux_sym_string_token1] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1196), + [aux_sym_yield_expression_token1] = ACTIONS(1198), + [aux_sym_include_expression_token1] = ACTIONS(1198), + [aux_sym_include_once_expression_token1] = ACTIONS(1198), + [aux_sym_require_expression_token1] = ACTIONS(1198), + [aux_sym_require_once_expression_token1] = ACTIONS(1198), [sym_comment] = ACTIONS(5), }, [466] = { [sym_text_interpolation] = STATE(466), - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_name] = ACTIONS(1192), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1190), - [aux_sym_function_static_declaration_token1] = ACTIONS(1192), - [aux_sym_global_declaration_token1] = ACTIONS(1192), - [aux_sym_namespace_definition_token1] = ACTIONS(1192), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1192), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1192), - [anon_sym_BSLASH] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [aux_sym_trait_declaration_token1] = ACTIONS(1192), - [aux_sym_interface_declaration_token1] = ACTIONS(1192), - [aux_sym_enum_declaration_token1] = ACTIONS(1192), - [aux_sym_enum_case_token1] = ACTIONS(1192), - [aux_sym_class_declaration_token1] = ACTIONS(1192), - [aux_sym_final_modifier_token1] = ACTIONS(1192), - [aux_sym_abstract_modifier_token1] = ACTIONS(1192), - [aux_sym_readonly_modifier_token1] = ACTIONS(1192), - [aux_sym_visibility_modifier_token1] = ACTIONS(1192), - [aux_sym_visibility_modifier_token2] = ACTIONS(1192), - [aux_sym_visibility_modifier_token3] = ACTIONS(1192), - [aux_sym__arrow_function_header_token1] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1190), - [aux_sym_cast_type_token1] = ACTIONS(1192), - [aux_sym_echo_statement_token1] = ACTIONS(1192), - [anon_sym_unset] = ACTIONS(1192), - [aux_sym_declare_statement_token1] = ACTIONS(1192), - [aux_sym_declare_statement_token2] = ACTIONS(1192), - [sym_float] = ACTIONS(1192), - [aux_sym_try_statement_token1] = ACTIONS(1192), - [aux_sym_goto_statement_token1] = ACTIONS(1192), - [aux_sym_continue_statement_token1] = ACTIONS(1192), - [aux_sym_break_statement_token1] = ACTIONS(1192), - [sym_integer] = ACTIONS(1192), - [aux_sym_return_statement_token1] = ACTIONS(1192), - [aux_sym_throw_expression_token1] = ACTIONS(1192), - [aux_sym_while_statement_token1] = ACTIONS(1192), - [aux_sym_while_statement_token2] = ACTIONS(1192), - [aux_sym_do_statement_token1] = ACTIONS(1192), - [aux_sym_for_statement_token1] = ACTIONS(1192), - [aux_sym_for_statement_token2] = ACTIONS(1192), - [aux_sym_foreach_statement_token1] = ACTIONS(1192), - [aux_sym_foreach_statement_token2] = ACTIONS(1192), - [aux_sym_if_statement_token1] = ACTIONS(1192), - [aux_sym_if_statement_token2] = ACTIONS(1192), - [aux_sym_else_if_clause_token1] = ACTIONS(1192), - [aux_sym_else_clause_token1] = ACTIONS(1192), - [aux_sym_match_expression_token1] = ACTIONS(1192), - [aux_sym_match_default_expression_token1] = ACTIONS(1192), - [aux_sym_switch_statement_token1] = ACTIONS(1192), - [aux_sym_switch_block_token1] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_AT] = ACTIONS(1190), - [aux_sym_clone_expression_token1] = ACTIONS(1192), - [aux_sym_print_intrinsic_token1] = ACTIONS(1192), - [aux_sym_object_creation_expression_token1] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [aux_sym__list_destructing_token1] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_self] = ACTIONS(1192), - [anon_sym_parent] = ACTIONS(1192), - [aux_sym__argument_name_token1] = ACTIONS(1192), - [aux_sym__argument_name_token2] = ACTIONS(1192), - [anon_sym_POUND_LBRACK] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [aux_sym_encapsed_string_token1] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [aux_sym_string_token1] = ACTIONS(1190), - [anon_sym_LT_LT_LT] = ACTIONS(1190), - [anon_sym_BQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1190), - [aux_sym_yield_expression_token1] = ACTIONS(1192), - [aux_sym_include_expression_token1] = ACTIONS(1192), - [aux_sym_include_once_expression_token1] = ACTIONS(1192), - [aux_sym_require_expression_token1] = ACTIONS(1192), - [aux_sym_require_once_expression_token1] = ACTIONS(1192), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_name] = ACTIONS(1194), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1192), + [aux_sym_function_static_declaration_token1] = ACTIONS(1194), + [aux_sym_global_declaration_token1] = ACTIONS(1194), + [aux_sym_namespace_definition_token1] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1194), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1194), + [anon_sym_BSLASH] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [aux_sym_trait_declaration_token1] = ACTIONS(1194), + [aux_sym_interface_declaration_token1] = ACTIONS(1194), + [aux_sym_enum_declaration_token1] = ACTIONS(1194), + [aux_sym_enum_case_token1] = ACTIONS(1194), + [aux_sym_class_declaration_token1] = ACTIONS(1194), + [aux_sym_final_modifier_token1] = ACTIONS(1194), + [aux_sym_abstract_modifier_token1] = ACTIONS(1194), + [aux_sym_readonly_modifier_token1] = ACTIONS(1194), + [aux_sym_visibility_modifier_token1] = ACTIONS(1194), + [aux_sym_visibility_modifier_token2] = ACTIONS(1194), + [aux_sym_visibility_modifier_token3] = ACTIONS(1194), + [aux_sym__arrow_function_header_token1] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1192), + [aux_sym_cast_type_token1] = ACTIONS(1194), + [aux_sym_echo_statement_token1] = ACTIONS(1194), + [anon_sym_unset] = ACTIONS(1194), + [aux_sym_declare_statement_token1] = ACTIONS(1194), + [aux_sym_declare_statement_token2] = ACTIONS(1194), + [sym_float] = ACTIONS(1194), + [aux_sym_try_statement_token1] = ACTIONS(1194), + [aux_sym_goto_statement_token1] = ACTIONS(1194), + [aux_sym_continue_statement_token1] = ACTIONS(1194), + [aux_sym_break_statement_token1] = ACTIONS(1194), + [sym_integer] = ACTIONS(1194), + [aux_sym_return_statement_token1] = ACTIONS(1194), + [aux_sym_throw_expression_token1] = ACTIONS(1194), + [aux_sym_while_statement_token1] = ACTIONS(1194), + [aux_sym_while_statement_token2] = ACTIONS(1194), + [aux_sym_do_statement_token1] = ACTIONS(1194), + [aux_sym_for_statement_token1] = ACTIONS(1194), + [aux_sym_for_statement_token2] = ACTIONS(1194), + [aux_sym_foreach_statement_token1] = ACTIONS(1194), + [aux_sym_foreach_statement_token2] = ACTIONS(1194), + [aux_sym_if_statement_token1] = ACTIONS(1194), + [aux_sym_if_statement_token2] = ACTIONS(1194), + [aux_sym_else_if_clause_token1] = ACTIONS(1194), + [aux_sym_else_clause_token1] = ACTIONS(1194), + [aux_sym_match_expression_token1] = ACTIONS(1194), + [aux_sym_match_default_expression_token1] = ACTIONS(1194), + [aux_sym_switch_statement_token1] = ACTIONS(1194), + [aux_sym_switch_block_token1] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_AT] = ACTIONS(1192), + [aux_sym_clone_expression_token1] = ACTIONS(1194), + [aux_sym_print_intrinsic_token1] = ACTIONS(1194), + [aux_sym_object_creation_expression_token1] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [aux_sym__list_destructing_token1] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_self] = ACTIONS(1194), + [anon_sym_parent] = ACTIONS(1194), + [aux_sym__argument_name_token1] = ACTIONS(1194), + [aux_sym__argument_name_token2] = ACTIONS(1194), + [anon_sym_POUND_LBRACK] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [aux_sym_encapsed_string_token1] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [aux_sym_string_token1] = ACTIONS(1192), + [anon_sym_LT_LT_LT] = ACTIONS(1192), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [aux_sym_yield_expression_token1] = ACTIONS(1194), + [aux_sym_include_expression_token1] = ACTIONS(1194), + [aux_sym_include_once_expression_token1] = ACTIONS(1194), + [aux_sym_require_expression_token1] = ACTIONS(1194), + [aux_sym_require_once_expression_token1] = ACTIONS(1194), [sym_comment] = ACTIONS(5), }, [467] = { [sym_text_interpolation] = STATE(467), - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_name] = ACTIONS(1200), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1198), - [aux_sym_function_static_declaration_token1] = ACTIONS(1200), - [aux_sym_global_declaration_token1] = ACTIONS(1200), - [aux_sym_namespace_definition_token1] = ACTIONS(1200), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1200), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1200), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1200), - [anon_sym_BSLASH] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [aux_sym_trait_declaration_token1] = ACTIONS(1200), - [aux_sym_interface_declaration_token1] = ACTIONS(1200), - [aux_sym_enum_declaration_token1] = ACTIONS(1200), - [aux_sym_enum_case_token1] = ACTIONS(1200), - [aux_sym_class_declaration_token1] = ACTIONS(1200), - [aux_sym_final_modifier_token1] = ACTIONS(1200), - [aux_sym_abstract_modifier_token1] = ACTIONS(1200), - [aux_sym_readonly_modifier_token1] = ACTIONS(1200), - [aux_sym_visibility_modifier_token1] = ACTIONS(1200), - [aux_sym_visibility_modifier_token2] = ACTIONS(1200), - [aux_sym_visibility_modifier_token3] = ACTIONS(1200), - [aux_sym__arrow_function_header_token1] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1198), - [aux_sym_cast_type_token1] = ACTIONS(1200), - [aux_sym_echo_statement_token1] = ACTIONS(1200), - [anon_sym_unset] = ACTIONS(1200), - [aux_sym_declare_statement_token1] = ACTIONS(1200), - [aux_sym_declare_statement_token2] = ACTIONS(1200), - [sym_float] = ACTIONS(1200), - [aux_sym_try_statement_token1] = ACTIONS(1200), - [aux_sym_goto_statement_token1] = ACTIONS(1200), - [aux_sym_continue_statement_token1] = ACTIONS(1200), - [aux_sym_break_statement_token1] = ACTIONS(1200), - [sym_integer] = ACTIONS(1200), - [aux_sym_return_statement_token1] = ACTIONS(1200), - [aux_sym_throw_expression_token1] = ACTIONS(1200), - [aux_sym_while_statement_token1] = ACTIONS(1200), - [aux_sym_while_statement_token2] = ACTIONS(1200), - [aux_sym_do_statement_token1] = ACTIONS(1200), - [aux_sym_for_statement_token1] = ACTIONS(1200), - [aux_sym_for_statement_token2] = ACTIONS(1200), - [aux_sym_foreach_statement_token1] = ACTIONS(1200), - [aux_sym_foreach_statement_token2] = ACTIONS(1200), - [aux_sym_if_statement_token1] = ACTIONS(1200), - [aux_sym_if_statement_token2] = ACTIONS(1200), - [aux_sym_else_if_clause_token1] = ACTIONS(1200), - [aux_sym_else_clause_token1] = ACTIONS(1200), - [aux_sym_match_expression_token1] = ACTIONS(1200), - [aux_sym_match_default_expression_token1] = ACTIONS(1200), - [aux_sym_switch_statement_token1] = ACTIONS(1200), - [aux_sym_switch_block_token1] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(1198), - [aux_sym_clone_expression_token1] = ACTIONS(1200), - [aux_sym_print_intrinsic_token1] = ACTIONS(1200), - [aux_sym_object_creation_expression_token1] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [aux_sym__list_destructing_token1] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_self] = ACTIONS(1200), - [anon_sym_parent] = ACTIONS(1200), - [aux_sym__argument_name_token1] = ACTIONS(1200), - [aux_sym__argument_name_token2] = ACTIONS(1200), - [anon_sym_POUND_LBRACK] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [aux_sym_encapsed_string_token1] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [aux_sym_string_token1] = ACTIONS(1198), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1198), - [aux_sym_yield_expression_token1] = ACTIONS(1200), - [aux_sym_include_expression_token1] = ACTIONS(1200), - [aux_sym_include_once_expression_token1] = ACTIONS(1200), - [aux_sym_require_expression_token1] = ACTIONS(1200), - [aux_sym_require_once_expression_token1] = ACTIONS(1200), + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_name] = ACTIONS(1202), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1200), + [aux_sym_function_static_declaration_token1] = ACTIONS(1202), + [aux_sym_global_declaration_token1] = ACTIONS(1202), + [aux_sym_namespace_definition_token1] = ACTIONS(1202), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1202), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1202), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1202), + [anon_sym_BSLASH] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [aux_sym_trait_declaration_token1] = ACTIONS(1202), + [aux_sym_interface_declaration_token1] = ACTIONS(1202), + [aux_sym_enum_declaration_token1] = ACTIONS(1202), + [aux_sym_enum_case_token1] = ACTIONS(1202), + [aux_sym_class_declaration_token1] = ACTIONS(1202), + [aux_sym_final_modifier_token1] = ACTIONS(1202), + [aux_sym_abstract_modifier_token1] = ACTIONS(1202), + [aux_sym_readonly_modifier_token1] = ACTIONS(1202), + [aux_sym_visibility_modifier_token1] = ACTIONS(1202), + [aux_sym_visibility_modifier_token2] = ACTIONS(1202), + [aux_sym_visibility_modifier_token3] = ACTIONS(1202), + [aux_sym__arrow_function_header_token1] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1200), + [aux_sym_cast_type_token1] = ACTIONS(1202), + [aux_sym_echo_statement_token1] = ACTIONS(1202), + [anon_sym_unset] = ACTIONS(1202), + [aux_sym_declare_statement_token1] = ACTIONS(1202), + [aux_sym_declare_statement_token2] = ACTIONS(1202), + [sym_float] = ACTIONS(1202), + [aux_sym_try_statement_token1] = ACTIONS(1202), + [aux_sym_goto_statement_token1] = ACTIONS(1202), + [aux_sym_continue_statement_token1] = ACTIONS(1202), + [aux_sym_break_statement_token1] = ACTIONS(1202), + [sym_integer] = ACTIONS(1202), + [aux_sym_return_statement_token1] = ACTIONS(1202), + [aux_sym_throw_expression_token1] = ACTIONS(1202), + [aux_sym_while_statement_token1] = ACTIONS(1202), + [aux_sym_while_statement_token2] = ACTIONS(1202), + [aux_sym_do_statement_token1] = ACTIONS(1202), + [aux_sym_for_statement_token1] = ACTIONS(1202), + [aux_sym_for_statement_token2] = ACTIONS(1202), + [aux_sym_foreach_statement_token1] = ACTIONS(1202), + [aux_sym_foreach_statement_token2] = ACTIONS(1202), + [aux_sym_if_statement_token1] = ACTIONS(1202), + [aux_sym_if_statement_token2] = ACTIONS(1202), + [aux_sym_else_if_clause_token1] = ACTIONS(1202), + [aux_sym_else_clause_token1] = ACTIONS(1202), + [aux_sym_match_expression_token1] = ACTIONS(1202), + [aux_sym_match_default_expression_token1] = ACTIONS(1202), + [aux_sym_switch_statement_token1] = ACTIONS(1202), + [aux_sym_switch_block_token1] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_AT] = ACTIONS(1200), + [aux_sym_clone_expression_token1] = ACTIONS(1202), + [aux_sym_print_intrinsic_token1] = ACTIONS(1202), + [aux_sym_object_creation_expression_token1] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1200), + [aux_sym__list_destructing_token1] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_self] = ACTIONS(1202), + [anon_sym_parent] = ACTIONS(1202), + [aux_sym__argument_name_token1] = ACTIONS(1202), + [aux_sym__argument_name_token2] = ACTIONS(1202), + [anon_sym_POUND_LBRACK] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [aux_sym_encapsed_string_token1] = ACTIONS(1200), + [anon_sym_DQUOTE] = ACTIONS(1200), + [aux_sym_string_token1] = ACTIONS(1200), + [anon_sym_LT_LT_LT] = ACTIONS(1200), + [anon_sym_BQUOTE] = ACTIONS(1200), + [anon_sym_DOLLAR] = ACTIONS(1200), + [aux_sym_yield_expression_token1] = ACTIONS(1202), + [aux_sym_include_expression_token1] = ACTIONS(1202), + [aux_sym_include_once_expression_token1] = ACTIONS(1202), + [aux_sym_require_expression_token1] = ACTIONS(1202), + [aux_sym_require_once_expression_token1] = ACTIONS(1202), [sym_comment] = ACTIONS(5), }, [468] = { [sym_text_interpolation] = STATE(468), - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_name] = ACTIONS(1204), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1202), - [aux_sym_function_static_declaration_token1] = ACTIONS(1204), - [aux_sym_global_declaration_token1] = ACTIONS(1204), - [aux_sym_namespace_definition_token1] = ACTIONS(1204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1204), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1204), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1204), - [anon_sym_BSLASH] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_RBRACE] = ACTIONS(1202), - [aux_sym_trait_declaration_token1] = ACTIONS(1204), - [aux_sym_interface_declaration_token1] = ACTIONS(1204), - [aux_sym_enum_declaration_token1] = ACTIONS(1204), - [aux_sym_enum_case_token1] = ACTIONS(1204), - [aux_sym_class_declaration_token1] = ACTIONS(1204), - [aux_sym_final_modifier_token1] = ACTIONS(1204), - [aux_sym_abstract_modifier_token1] = ACTIONS(1204), - [aux_sym_readonly_modifier_token1] = ACTIONS(1204), - [aux_sym_visibility_modifier_token1] = ACTIONS(1204), - [aux_sym_visibility_modifier_token2] = ACTIONS(1204), - [aux_sym_visibility_modifier_token3] = ACTIONS(1204), - [aux_sym__arrow_function_header_token1] = ACTIONS(1204), - [anon_sym_LPAREN] = ACTIONS(1202), - [aux_sym_cast_type_token1] = ACTIONS(1204), - [aux_sym_echo_statement_token1] = ACTIONS(1204), - [anon_sym_unset] = ACTIONS(1204), - [aux_sym_declare_statement_token1] = ACTIONS(1204), - [aux_sym_declare_statement_token2] = ACTIONS(1204), - [sym_float] = ACTIONS(1204), - [aux_sym_try_statement_token1] = ACTIONS(1204), - [aux_sym_goto_statement_token1] = ACTIONS(1204), - [aux_sym_continue_statement_token1] = ACTIONS(1204), - [aux_sym_break_statement_token1] = ACTIONS(1204), - [sym_integer] = ACTIONS(1204), - [aux_sym_return_statement_token1] = ACTIONS(1204), - [aux_sym_throw_expression_token1] = ACTIONS(1204), - [aux_sym_while_statement_token1] = ACTIONS(1204), - [aux_sym_while_statement_token2] = ACTIONS(1204), - [aux_sym_do_statement_token1] = ACTIONS(1204), - [aux_sym_for_statement_token1] = ACTIONS(1204), - [aux_sym_for_statement_token2] = ACTIONS(1204), - [aux_sym_foreach_statement_token1] = ACTIONS(1204), - [aux_sym_foreach_statement_token2] = ACTIONS(1204), - [aux_sym_if_statement_token1] = ACTIONS(1204), - [aux_sym_if_statement_token2] = ACTIONS(1204), - [aux_sym_else_if_clause_token1] = ACTIONS(1204), - [aux_sym_else_clause_token1] = ACTIONS(1204), - [aux_sym_match_expression_token1] = ACTIONS(1204), - [aux_sym_match_default_expression_token1] = ACTIONS(1204), - [aux_sym_switch_statement_token1] = ACTIONS(1204), - [aux_sym_switch_block_token1] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_AT] = ACTIONS(1202), - [aux_sym_clone_expression_token1] = ACTIONS(1204), - [aux_sym_print_intrinsic_token1] = ACTIONS(1204), - [aux_sym_object_creation_expression_token1] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [aux_sym__list_destructing_token1] = ACTIONS(1204), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_self] = ACTIONS(1204), - [anon_sym_parent] = ACTIONS(1204), - [aux_sym__argument_name_token1] = ACTIONS(1204), - [aux_sym__argument_name_token2] = ACTIONS(1204), - [anon_sym_POUND_LBRACK] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [aux_sym_encapsed_string_token1] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [aux_sym_string_token1] = ACTIONS(1202), - [anon_sym_LT_LT_LT] = ACTIONS(1202), - [anon_sym_BQUOTE] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(1202), - [aux_sym_yield_expression_token1] = ACTIONS(1204), - [aux_sym_include_expression_token1] = ACTIONS(1204), - [aux_sym_include_once_expression_token1] = ACTIONS(1204), - [aux_sym_require_expression_token1] = ACTIONS(1204), - [aux_sym_require_once_expression_token1] = ACTIONS(1204), + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_name] = ACTIONS(1206), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1204), + [aux_sym_function_static_declaration_token1] = ACTIONS(1206), + [aux_sym_global_declaration_token1] = ACTIONS(1206), + [aux_sym_namespace_definition_token1] = ACTIONS(1206), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1206), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1206), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1206), + [anon_sym_BSLASH] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [aux_sym_trait_declaration_token1] = ACTIONS(1206), + [aux_sym_interface_declaration_token1] = ACTIONS(1206), + [aux_sym_enum_declaration_token1] = ACTIONS(1206), + [aux_sym_enum_case_token1] = ACTIONS(1206), + [aux_sym_class_declaration_token1] = ACTIONS(1206), + [aux_sym_final_modifier_token1] = ACTIONS(1206), + [aux_sym_abstract_modifier_token1] = ACTIONS(1206), + [aux_sym_readonly_modifier_token1] = ACTIONS(1206), + [aux_sym_visibility_modifier_token1] = ACTIONS(1206), + [aux_sym_visibility_modifier_token2] = ACTIONS(1206), + [aux_sym_visibility_modifier_token3] = ACTIONS(1206), + [aux_sym__arrow_function_header_token1] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1204), + [aux_sym_cast_type_token1] = ACTIONS(1206), + [aux_sym_echo_statement_token1] = ACTIONS(1206), + [anon_sym_unset] = ACTIONS(1206), + [aux_sym_declare_statement_token1] = ACTIONS(1206), + [aux_sym_declare_statement_token2] = ACTIONS(1206), + [sym_float] = ACTIONS(1206), + [aux_sym_try_statement_token1] = ACTIONS(1206), + [aux_sym_goto_statement_token1] = ACTIONS(1206), + [aux_sym_continue_statement_token1] = ACTIONS(1206), + [aux_sym_break_statement_token1] = ACTIONS(1206), + [sym_integer] = ACTIONS(1206), + [aux_sym_return_statement_token1] = ACTIONS(1206), + [aux_sym_throw_expression_token1] = ACTIONS(1206), + [aux_sym_while_statement_token1] = ACTIONS(1206), + [aux_sym_while_statement_token2] = ACTIONS(1206), + [aux_sym_do_statement_token1] = ACTIONS(1206), + [aux_sym_for_statement_token1] = ACTIONS(1206), + [aux_sym_for_statement_token2] = ACTIONS(1206), + [aux_sym_foreach_statement_token1] = ACTIONS(1206), + [aux_sym_foreach_statement_token2] = ACTIONS(1206), + [aux_sym_if_statement_token1] = ACTIONS(1206), + [aux_sym_if_statement_token2] = ACTIONS(1206), + [aux_sym_else_if_clause_token1] = ACTIONS(1206), + [aux_sym_else_clause_token1] = ACTIONS(1206), + [aux_sym_match_expression_token1] = ACTIONS(1206), + [aux_sym_match_default_expression_token1] = ACTIONS(1206), + [aux_sym_switch_statement_token1] = ACTIONS(1206), + [aux_sym_switch_block_token1] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1204), + [aux_sym_clone_expression_token1] = ACTIONS(1206), + [aux_sym_print_intrinsic_token1] = ACTIONS(1206), + [aux_sym_object_creation_expression_token1] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [aux_sym__list_destructing_token1] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_self] = ACTIONS(1206), + [anon_sym_parent] = ACTIONS(1206), + [aux_sym__argument_name_token1] = ACTIONS(1206), + [aux_sym__argument_name_token2] = ACTIONS(1206), + [anon_sym_POUND_LBRACK] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [aux_sym_encapsed_string_token1] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1204), + [aux_sym_string_token1] = ACTIONS(1204), + [anon_sym_LT_LT_LT] = ACTIONS(1204), + [anon_sym_BQUOTE] = ACTIONS(1204), + [anon_sym_DOLLAR] = ACTIONS(1204), + [aux_sym_yield_expression_token1] = ACTIONS(1206), + [aux_sym_include_expression_token1] = ACTIONS(1206), + [aux_sym_include_once_expression_token1] = ACTIONS(1206), + [aux_sym_require_expression_token1] = ACTIONS(1206), + [aux_sym_require_once_expression_token1] = ACTIONS(1206), [sym_comment] = ACTIONS(5), }, [469] = { [sym_text_interpolation] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_name] = ACTIONS(1208), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1206), - [aux_sym_function_static_declaration_token1] = ACTIONS(1208), - [aux_sym_global_declaration_token1] = ACTIONS(1208), - [aux_sym_namespace_definition_token1] = ACTIONS(1208), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1208), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1208), - [anon_sym_BSLASH] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [aux_sym_trait_declaration_token1] = ACTIONS(1208), - [aux_sym_interface_declaration_token1] = ACTIONS(1208), - [aux_sym_enum_declaration_token1] = ACTIONS(1208), - [aux_sym_enum_case_token1] = ACTIONS(1208), - [aux_sym_class_declaration_token1] = ACTIONS(1208), - [aux_sym_final_modifier_token1] = ACTIONS(1208), - [aux_sym_abstract_modifier_token1] = ACTIONS(1208), - [aux_sym_readonly_modifier_token1] = ACTIONS(1208), - [aux_sym_visibility_modifier_token1] = ACTIONS(1208), - [aux_sym_visibility_modifier_token2] = ACTIONS(1208), - [aux_sym_visibility_modifier_token3] = ACTIONS(1208), - [aux_sym__arrow_function_header_token1] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1206), - [aux_sym_cast_type_token1] = ACTIONS(1208), - [aux_sym_echo_statement_token1] = ACTIONS(1208), - [anon_sym_unset] = ACTIONS(1208), - [aux_sym_declare_statement_token1] = ACTIONS(1208), - [aux_sym_declare_statement_token2] = ACTIONS(1208), - [sym_float] = ACTIONS(1208), - [aux_sym_try_statement_token1] = ACTIONS(1208), - [aux_sym_goto_statement_token1] = ACTIONS(1208), - [aux_sym_continue_statement_token1] = ACTIONS(1208), - [aux_sym_break_statement_token1] = ACTIONS(1208), - [sym_integer] = ACTIONS(1208), - [aux_sym_return_statement_token1] = ACTIONS(1208), - [aux_sym_throw_expression_token1] = ACTIONS(1208), - [aux_sym_while_statement_token1] = ACTIONS(1208), - [aux_sym_while_statement_token2] = ACTIONS(1208), - [aux_sym_do_statement_token1] = ACTIONS(1208), - [aux_sym_for_statement_token1] = ACTIONS(1208), - [aux_sym_for_statement_token2] = ACTIONS(1208), - [aux_sym_foreach_statement_token1] = ACTIONS(1208), - [aux_sym_foreach_statement_token2] = ACTIONS(1208), - [aux_sym_if_statement_token1] = ACTIONS(1208), - [aux_sym_if_statement_token2] = ACTIONS(1208), - [aux_sym_else_if_clause_token1] = ACTIONS(1208), - [aux_sym_else_clause_token1] = ACTIONS(1208), - [aux_sym_match_expression_token1] = ACTIONS(1208), - [aux_sym_match_default_expression_token1] = ACTIONS(1208), - [aux_sym_switch_statement_token1] = ACTIONS(1208), - [aux_sym_switch_block_token1] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1206), - [aux_sym_clone_expression_token1] = ACTIONS(1208), - [aux_sym_print_intrinsic_token1] = ACTIONS(1208), - [aux_sym_object_creation_expression_token1] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [aux_sym__list_destructing_token1] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_self] = ACTIONS(1208), - [anon_sym_parent] = ACTIONS(1208), - [aux_sym__argument_name_token1] = ACTIONS(1208), - [aux_sym__argument_name_token2] = ACTIONS(1208), - [anon_sym_POUND_LBRACK] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [aux_sym_encapsed_string_token1] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [aux_sym_string_token1] = ACTIONS(1206), - [anon_sym_LT_LT_LT] = ACTIONS(1206), - [anon_sym_BQUOTE] = ACTIONS(1206), - [anon_sym_DOLLAR] = ACTIONS(1206), - [aux_sym_yield_expression_token1] = ACTIONS(1208), - [aux_sym_include_expression_token1] = ACTIONS(1208), - [aux_sym_include_once_expression_token1] = ACTIONS(1208), - [aux_sym_require_expression_token1] = ACTIONS(1208), - [aux_sym_require_once_expression_token1] = ACTIONS(1208), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_name] = ACTIONS(1210), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1208), + [aux_sym_function_static_declaration_token1] = ACTIONS(1210), + [aux_sym_global_declaration_token1] = ACTIONS(1210), + [aux_sym_namespace_definition_token1] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1210), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1210), + [anon_sym_BSLASH] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [aux_sym_trait_declaration_token1] = ACTIONS(1210), + [aux_sym_interface_declaration_token1] = ACTIONS(1210), + [aux_sym_enum_declaration_token1] = ACTIONS(1210), + [aux_sym_enum_case_token1] = ACTIONS(1210), + [aux_sym_class_declaration_token1] = ACTIONS(1210), + [aux_sym_final_modifier_token1] = ACTIONS(1210), + [aux_sym_abstract_modifier_token1] = ACTIONS(1210), + [aux_sym_readonly_modifier_token1] = ACTIONS(1210), + [aux_sym_visibility_modifier_token1] = ACTIONS(1210), + [aux_sym_visibility_modifier_token2] = ACTIONS(1210), + [aux_sym_visibility_modifier_token3] = ACTIONS(1210), + [aux_sym__arrow_function_header_token1] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1208), + [aux_sym_cast_type_token1] = ACTIONS(1210), + [aux_sym_echo_statement_token1] = ACTIONS(1210), + [anon_sym_unset] = ACTIONS(1210), + [aux_sym_declare_statement_token1] = ACTIONS(1210), + [aux_sym_declare_statement_token2] = ACTIONS(1210), + [sym_float] = ACTIONS(1210), + [aux_sym_try_statement_token1] = ACTIONS(1210), + [aux_sym_goto_statement_token1] = ACTIONS(1210), + [aux_sym_continue_statement_token1] = ACTIONS(1210), + [aux_sym_break_statement_token1] = ACTIONS(1210), + [sym_integer] = ACTIONS(1210), + [aux_sym_return_statement_token1] = ACTIONS(1210), + [aux_sym_throw_expression_token1] = ACTIONS(1210), + [aux_sym_while_statement_token1] = ACTIONS(1210), + [aux_sym_while_statement_token2] = ACTIONS(1210), + [aux_sym_do_statement_token1] = ACTIONS(1210), + [aux_sym_for_statement_token1] = ACTIONS(1210), + [aux_sym_for_statement_token2] = ACTIONS(1210), + [aux_sym_foreach_statement_token1] = ACTIONS(1210), + [aux_sym_foreach_statement_token2] = ACTIONS(1210), + [aux_sym_if_statement_token1] = ACTIONS(1210), + [aux_sym_if_statement_token2] = ACTIONS(1210), + [aux_sym_else_if_clause_token1] = ACTIONS(1210), + [aux_sym_else_clause_token1] = ACTIONS(1210), + [aux_sym_match_expression_token1] = ACTIONS(1210), + [aux_sym_match_default_expression_token1] = ACTIONS(1210), + [aux_sym_switch_statement_token1] = ACTIONS(1210), + [aux_sym_switch_block_token1] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1208), + [aux_sym_clone_expression_token1] = ACTIONS(1210), + [aux_sym_print_intrinsic_token1] = ACTIONS(1210), + [aux_sym_object_creation_expression_token1] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [aux_sym__list_destructing_token1] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_self] = ACTIONS(1210), + [anon_sym_parent] = ACTIONS(1210), + [aux_sym__argument_name_token1] = ACTIONS(1210), + [aux_sym__argument_name_token2] = ACTIONS(1210), + [anon_sym_POUND_LBRACK] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [aux_sym_encapsed_string_token1] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1208), + [aux_sym_string_token1] = ACTIONS(1208), + [anon_sym_LT_LT_LT] = ACTIONS(1208), + [anon_sym_BQUOTE] = ACTIONS(1208), + [anon_sym_DOLLAR] = ACTIONS(1208), + [aux_sym_yield_expression_token1] = ACTIONS(1210), + [aux_sym_include_expression_token1] = ACTIONS(1210), + [aux_sym_include_once_expression_token1] = ACTIONS(1210), + [aux_sym_require_expression_token1] = ACTIONS(1210), + [aux_sym_require_once_expression_token1] = ACTIONS(1210), [sym_comment] = ACTIONS(5), }, [470] = { [sym_text_interpolation] = STATE(470), - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_name] = ACTIONS(1212), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1210), - [aux_sym_function_static_declaration_token1] = ACTIONS(1212), - [aux_sym_global_declaration_token1] = ACTIONS(1212), - [aux_sym_namespace_definition_token1] = ACTIONS(1212), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1212), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1212), - [anon_sym_BSLASH] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), - [aux_sym_trait_declaration_token1] = ACTIONS(1212), - [aux_sym_interface_declaration_token1] = ACTIONS(1212), - [aux_sym_enum_declaration_token1] = ACTIONS(1212), - [aux_sym_enum_case_token1] = ACTIONS(1212), - [aux_sym_class_declaration_token1] = ACTIONS(1212), - [aux_sym_final_modifier_token1] = ACTIONS(1212), - [aux_sym_abstract_modifier_token1] = ACTIONS(1212), - [aux_sym_readonly_modifier_token1] = ACTIONS(1212), - [aux_sym_visibility_modifier_token1] = ACTIONS(1212), - [aux_sym_visibility_modifier_token2] = ACTIONS(1212), - [aux_sym_visibility_modifier_token3] = ACTIONS(1212), - [aux_sym__arrow_function_header_token1] = ACTIONS(1212), - [anon_sym_LPAREN] = ACTIONS(1210), - [aux_sym_cast_type_token1] = ACTIONS(1212), - [aux_sym_echo_statement_token1] = ACTIONS(1212), - [anon_sym_unset] = ACTIONS(1212), - [aux_sym_declare_statement_token1] = ACTIONS(1212), - [aux_sym_declare_statement_token2] = ACTIONS(1212), - [sym_float] = ACTIONS(1212), - [aux_sym_try_statement_token1] = ACTIONS(1212), - [aux_sym_goto_statement_token1] = ACTIONS(1212), - [aux_sym_continue_statement_token1] = ACTIONS(1212), - [aux_sym_break_statement_token1] = ACTIONS(1212), - [sym_integer] = ACTIONS(1212), - [aux_sym_return_statement_token1] = ACTIONS(1212), - [aux_sym_throw_expression_token1] = ACTIONS(1212), - [aux_sym_while_statement_token1] = ACTIONS(1212), - [aux_sym_while_statement_token2] = ACTIONS(1212), - [aux_sym_do_statement_token1] = ACTIONS(1212), - [aux_sym_for_statement_token1] = ACTIONS(1212), - [aux_sym_for_statement_token2] = ACTIONS(1212), - [aux_sym_foreach_statement_token1] = ACTIONS(1212), - [aux_sym_foreach_statement_token2] = ACTIONS(1212), - [aux_sym_if_statement_token1] = ACTIONS(1212), - [aux_sym_if_statement_token2] = ACTIONS(1212), - [aux_sym_else_if_clause_token1] = ACTIONS(1212), - [aux_sym_else_clause_token1] = ACTIONS(1212), - [aux_sym_match_expression_token1] = ACTIONS(1212), - [aux_sym_match_default_expression_token1] = ACTIONS(1212), - [aux_sym_switch_statement_token1] = ACTIONS(1212), - [aux_sym_switch_block_token1] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_AT] = ACTIONS(1210), - [aux_sym_clone_expression_token1] = ACTIONS(1212), - [aux_sym_print_intrinsic_token1] = ACTIONS(1212), - [aux_sym_object_creation_expression_token1] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [aux_sym__list_destructing_token1] = ACTIONS(1212), - [anon_sym_LBRACK] = ACTIONS(1210), - [anon_sym_self] = ACTIONS(1212), - [anon_sym_parent] = ACTIONS(1212), - [aux_sym__argument_name_token1] = ACTIONS(1212), - [aux_sym__argument_name_token2] = ACTIONS(1212), - [anon_sym_POUND_LBRACK] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [aux_sym_encapsed_string_token1] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [aux_sym_string_token1] = ACTIONS(1210), - [anon_sym_LT_LT_LT] = ACTIONS(1210), - [anon_sym_BQUOTE] = ACTIONS(1210), - [anon_sym_DOLLAR] = ACTIONS(1210), - [aux_sym_yield_expression_token1] = ACTIONS(1212), - [aux_sym_include_expression_token1] = ACTIONS(1212), - [aux_sym_include_once_expression_token1] = ACTIONS(1212), - [aux_sym_require_expression_token1] = ACTIONS(1212), - [aux_sym_require_once_expression_token1] = ACTIONS(1212), + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_name] = ACTIONS(1214), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1212), + [aux_sym_function_static_declaration_token1] = ACTIONS(1214), + [aux_sym_global_declaration_token1] = ACTIONS(1214), + [aux_sym_namespace_definition_token1] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [aux_sym_trait_declaration_token1] = ACTIONS(1214), + [aux_sym_interface_declaration_token1] = ACTIONS(1214), + [aux_sym_enum_declaration_token1] = ACTIONS(1214), + [aux_sym_enum_case_token1] = ACTIONS(1214), + [aux_sym_class_declaration_token1] = ACTIONS(1214), + [aux_sym_final_modifier_token1] = ACTIONS(1214), + [aux_sym_abstract_modifier_token1] = ACTIONS(1214), + [aux_sym_readonly_modifier_token1] = ACTIONS(1214), + [aux_sym_visibility_modifier_token1] = ACTIONS(1214), + [aux_sym_visibility_modifier_token2] = ACTIONS(1214), + [aux_sym_visibility_modifier_token3] = ACTIONS(1214), + [aux_sym__arrow_function_header_token1] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1212), + [aux_sym_cast_type_token1] = ACTIONS(1214), + [aux_sym_echo_statement_token1] = ACTIONS(1214), + [anon_sym_unset] = ACTIONS(1214), + [aux_sym_declare_statement_token1] = ACTIONS(1214), + [aux_sym_declare_statement_token2] = ACTIONS(1214), + [sym_float] = ACTIONS(1214), + [aux_sym_try_statement_token1] = ACTIONS(1214), + [aux_sym_goto_statement_token1] = ACTIONS(1214), + [aux_sym_continue_statement_token1] = ACTIONS(1214), + [aux_sym_break_statement_token1] = ACTIONS(1214), + [sym_integer] = ACTIONS(1214), + [aux_sym_return_statement_token1] = ACTIONS(1214), + [aux_sym_throw_expression_token1] = ACTIONS(1214), + [aux_sym_while_statement_token1] = ACTIONS(1214), + [aux_sym_while_statement_token2] = ACTIONS(1214), + [aux_sym_do_statement_token1] = ACTIONS(1214), + [aux_sym_for_statement_token1] = ACTIONS(1214), + [aux_sym_for_statement_token2] = ACTIONS(1214), + [aux_sym_foreach_statement_token1] = ACTIONS(1214), + [aux_sym_foreach_statement_token2] = ACTIONS(1214), + [aux_sym_if_statement_token1] = ACTIONS(1214), + [aux_sym_if_statement_token2] = ACTIONS(1214), + [aux_sym_else_if_clause_token1] = ACTIONS(1214), + [aux_sym_else_clause_token1] = ACTIONS(1214), + [aux_sym_match_expression_token1] = ACTIONS(1214), + [aux_sym_match_default_expression_token1] = ACTIONS(1214), + [aux_sym_switch_statement_token1] = ACTIONS(1214), + [aux_sym_switch_block_token1] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1212), + [aux_sym_clone_expression_token1] = ACTIONS(1214), + [aux_sym_print_intrinsic_token1] = ACTIONS(1214), + [aux_sym_object_creation_expression_token1] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [aux_sym__list_destructing_token1] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_self] = ACTIONS(1214), + [anon_sym_parent] = ACTIONS(1214), + [aux_sym__argument_name_token1] = ACTIONS(1214), + [aux_sym__argument_name_token2] = ACTIONS(1214), + [anon_sym_POUND_LBRACK] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [aux_sym_encapsed_string_token1] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [aux_sym_string_token1] = ACTIONS(1212), + [anon_sym_LT_LT_LT] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_DOLLAR] = ACTIONS(1212), + [aux_sym_yield_expression_token1] = ACTIONS(1214), + [aux_sym_include_expression_token1] = ACTIONS(1214), + [aux_sym_include_once_expression_token1] = ACTIONS(1214), + [aux_sym_require_expression_token1] = ACTIONS(1214), + [aux_sym_require_once_expression_token1] = ACTIONS(1214), [sym_comment] = ACTIONS(5), }, [471] = { [sym_text_interpolation] = STATE(471), - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_name] = ACTIONS(1212), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1210), - [aux_sym_function_static_declaration_token1] = ACTIONS(1212), - [aux_sym_global_declaration_token1] = ACTIONS(1212), - [aux_sym_namespace_definition_token1] = ACTIONS(1212), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1212), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1212), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1212), - [anon_sym_BSLASH] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), - [aux_sym_trait_declaration_token1] = ACTIONS(1212), - [aux_sym_interface_declaration_token1] = ACTIONS(1212), - [aux_sym_enum_declaration_token1] = ACTIONS(1212), - [aux_sym_enum_case_token1] = ACTIONS(1212), - [aux_sym_class_declaration_token1] = ACTIONS(1212), - [aux_sym_final_modifier_token1] = ACTIONS(1212), - [aux_sym_abstract_modifier_token1] = ACTIONS(1212), - [aux_sym_readonly_modifier_token1] = ACTIONS(1212), - [aux_sym_visibility_modifier_token1] = ACTIONS(1212), - [aux_sym_visibility_modifier_token2] = ACTIONS(1212), - [aux_sym_visibility_modifier_token3] = ACTIONS(1212), - [aux_sym__arrow_function_header_token1] = ACTIONS(1212), - [anon_sym_LPAREN] = ACTIONS(1210), - [aux_sym_cast_type_token1] = ACTIONS(1212), - [aux_sym_echo_statement_token1] = ACTIONS(1212), - [anon_sym_unset] = ACTIONS(1212), - [aux_sym_declare_statement_token1] = ACTIONS(1212), - [aux_sym_declare_statement_token2] = ACTIONS(1212), - [sym_float] = ACTIONS(1212), - [aux_sym_try_statement_token1] = ACTIONS(1212), - [aux_sym_goto_statement_token1] = ACTIONS(1212), - [aux_sym_continue_statement_token1] = ACTIONS(1212), - [aux_sym_break_statement_token1] = ACTIONS(1212), - [sym_integer] = ACTIONS(1212), - [aux_sym_return_statement_token1] = ACTIONS(1212), - [aux_sym_throw_expression_token1] = ACTIONS(1212), - [aux_sym_while_statement_token1] = ACTIONS(1212), - [aux_sym_while_statement_token2] = ACTIONS(1212), - [aux_sym_do_statement_token1] = ACTIONS(1212), - [aux_sym_for_statement_token1] = ACTIONS(1212), - [aux_sym_for_statement_token2] = ACTIONS(1212), - [aux_sym_foreach_statement_token1] = ACTIONS(1212), - [aux_sym_foreach_statement_token2] = ACTIONS(1212), - [aux_sym_if_statement_token1] = ACTIONS(1212), - [aux_sym_if_statement_token2] = ACTIONS(1212), - [aux_sym_else_if_clause_token1] = ACTIONS(1212), - [aux_sym_else_clause_token1] = ACTIONS(1212), - [aux_sym_match_expression_token1] = ACTIONS(1212), - [aux_sym_match_default_expression_token1] = ACTIONS(1212), - [aux_sym_switch_statement_token1] = ACTIONS(1212), - [aux_sym_switch_block_token1] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_AT] = ACTIONS(1210), - [aux_sym_clone_expression_token1] = ACTIONS(1212), - [aux_sym_print_intrinsic_token1] = ACTIONS(1212), - [aux_sym_object_creation_expression_token1] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [aux_sym__list_destructing_token1] = ACTIONS(1212), - [anon_sym_LBRACK] = ACTIONS(1210), - [anon_sym_self] = ACTIONS(1212), - [anon_sym_parent] = ACTIONS(1212), - [aux_sym__argument_name_token1] = ACTIONS(1212), - [aux_sym__argument_name_token2] = ACTIONS(1212), - [anon_sym_POUND_LBRACK] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [aux_sym_encapsed_string_token1] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [aux_sym_string_token1] = ACTIONS(1210), - [anon_sym_LT_LT_LT] = ACTIONS(1210), - [anon_sym_BQUOTE] = ACTIONS(1210), - [anon_sym_DOLLAR] = ACTIONS(1210), - [aux_sym_yield_expression_token1] = ACTIONS(1212), - [aux_sym_include_expression_token1] = ACTIONS(1212), - [aux_sym_include_once_expression_token1] = ACTIONS(1212), - [aux_sym_require_expression_token1] = ACTIONS(1212), - [aux_sym_require_once_expression_token1] = ACTIONS(1212), + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_name] = ACTIONS(1214), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1212), + [aux_sym_function_static_declaration_token1] = ACTIONS(1214), + [aux_sym_global_declaration_token1] = ACTIONS(1214), + [aux_sym_namespace_definition_token1] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1214), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1214), + [anon_sym_BSLASH] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [aux_sym_trait_declaration_token1] = ACTIONS(1214), + [aux_sym_interface_declaration_token1] = ACTIONS(1214), + [aux_sym_enum_declaration_token1] = ACTIONS(1214), + [aux_sym_enum_case_token1] = ACTIONS(1214), + [aux_sym_class_declaration_token1] = ACTIONS(1214), + [aux_sym_final_modifier_token1] = ACTIONS(1214), + [aux_sym_abstract_modifier_token1] = ACTIONS(1214), + [aux_sym_readonly_modifier_token1] = ACTIONS(1214), + [aux_sym_visibility_modifier_token1] = ACTIONS(1214), + [aux_sym_visibility_modifier_token2] = ACTIONS(1214), + [aux_sym_visibility_modifier_token3] = ACTIONS(1214), + [aux_sym__arrow_function_header_token1] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1212), + [aux_sym_cast_type_token1] = ACTIONS(1214), + [aux_sym_echo_statement_token1] = ACTIONS(1214), + [anon_sym_unset] = ACTIONS(1214), + [aux_sym_declare_statement_token1] = ACTIONS(1214), + [aux_sym_declare_statement_token2] = ACTIONS(1214), + [sym_float] = ACTIONS(1214), + [aux_sym_try_statement_token1] = ACTIONS(1214), + [aux_sym_goto_statement_token1] = ACTIONS(1214), + [aux_sym_continue_statement_token1] = ACTIONS(1214), + [aux_sym_break_statement_token1] = ACTIONS(1214), + [sym_integer] = ACTIONS(1214), + [aux_sym_return_statement_token1] = ACTIONS(1214), + [aux_sym_throw_expression_token1] = ACTIONS(1214), + [aux_sym_while_statement_token1] = ACTIONS(1214), + [aux_sym_while_statement_token2] = ACTIONS(1214), + [aux_sym_do_statement_token1] = ACTIONS(1214), + [aux_sym_for_statement_token1] = ACTIONS(1214), + [aux_sym_for_statement_token2] = ACTIONS(1214), + [aux_sym_foreach_statement_token1] = ACTIONS(1214), + [aux_sym_foreach_statement_token2] = ACTIONS(1214), + [aux_sym_if_statement_token1] = ACTIONS(1214), + [aux_sym_if_statement_token2] = ACTIONS(1214), + [aux_sym_else_if_clause_token1] = ACTIONS(1214), + [aux_sym_else_clause_token1] = ACTIONS(1214), + [aux_sym_match_expression_token1] = ACTIONS(1214), + [aux_sym_match_default_expression_token1] = ACTIONS(1214), + [aux_sym_switch_statement_token1] = ACTIONS(1214), + [aux_sym_switch_block_token1] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1212), + [aux_sym_clone_expression_token1] = ACTIONS(1214), + [aux_sym_print_intrinsic_token1] = ACTIONS(1214), + [aux_sym_object_creation_expression_token1] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [aux_sym__list_destructing_token1] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_self] = ACTIONS(1214), + [anon_sym_parent] = ACTIONS(1214), + [aux_sym__argument_name_token1] = ACTIONS(1214), + [aux_sym__argument_name_token2] = ACTIONS(1214), + [anon_sym_POUND_LBRACK] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [aux_sym_encapsed_string_token1] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [aux_sym_string_token1] = ACTIONS(1212), + [anon_sym_LT_LT_LT] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_DOLLAR] = ACTIONS(1212), + [aux_sym_yield_expression_token1] = ACTIONS(1214), + [aux_sym_include_expression_token1] = ACTIONS(1214), + [aux_sym_include_once_expression_token1] = ACTIONS(1214), + [aux_sym_require_expression_token1] = ACTIONS(1214), + [aux_sym_require_once_expression_token1] = ACTIONS(1214), [sym_comment] = ACTIONS(5), }, [472] = { [sym_text_interpolation] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_name] = ACTIONS(1216), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1214), - [aux_sym_function_static_declaration_token1] = ACTIONS(1216), - [aux_sym_global_declaration_token1] = ACTIONS(1216), - [aux_sym_namespace_definition_token1] = ACTIONS(1216), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1216), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1216), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1216), - [anon_sym_BSLASH] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [aux_sym_trait_declaration_token1] = ACTIONS(1216), - [aux_sym_interface_declaration_token1] = ACTIONS(1216), - [aux_sym_enum_declaration_token1] = ACTIONS(1216), - [aux_sym_enum_case_token1] = ACTIONS(1216), - [aux_sym_class_declaration_token1] = ACTIONS(1216), - [aux_sym_final_modifier_token1] = ACTIONS(1216), - [aux_sym_abstract_modifier_token1] = ACTIONS(1216), - [aux_sym_readonly_modifier_token1] = ACTIONS(1216), - [aux_sym_visibility_modifier_token1] = ACTIONS(1216), - [aux_sym_visibility_modifier_token2] = ACTIONS(1216), - [aux_sym_visibility_modifier_token3] = ACTIONS(1216), - [aux_sym__arrow_function_header_token1] = ACTIONS(1216), - [anon_sym_LPAREN] = ACTIONS(1214), - [aux_sym_cast_type_token1] = ACTIONS(1216), - [aux_sym_echo_statement_token1] = ACTIONS(1216), - [anon_sym_unset] = ACTIONS(1216), - [aux_sym_declare_statement_token1] = ACTIONS(1216), - [aux_sym_declare_statement_token2] = ACTIONS(1216), - [sym_float] = ACTIONS(1216), - [aux_sym_try_statement_token1] = ACTIONS(1216), - [aux_sym_goto_statement_token1] = ACTIONS(1216), - [aux_sym_continue_statement_token1] = ACTIONS(1216), - [aux_sym_break_statement_token1] = ACTIONS(1216), - [sym_integer] = ACTIONS(1216), - [aux_sym_return_statement_token1] = ACTIONS(1216), - [aux_sym_throw_expression_token1] = ACTIONS(1216), - [aux_sym_while_statement_token1] = ACTIONS(1216), - [aux_sym_while_statement_token2] = ACTIONS(1216), - [aux_sym_do_statement_token1] = ACTIONS(1216), - [aux_sym_for_statement_token1] = ACTIONS(1216), - [aux_sym_for_statement_token2] = ACTIONS(1216), - [aux_sym_foreach_statement_token1] = ACTIONS(1216), - [aux_sym_foreach_statement_token2] = ACTIONS(1216), - [aux_sym_if_statement_token1] = ACTIONS(1216), - [aux_sym_if_statement_token2] = ACTIONS(1216), - [aux_sym_else_if_clause_token1] = ACTIONS(1216), - [aux_sym_else_clause_token1] = ACTIONS(1216), - [aux_sym_match_expression_token1] = ACTIONS(1216), - [aux_sym_match_default_expression_token1] = ACTIONS(1216), - [aux_sym_switch_statement_token1] = ACTIONS(1216), - [aux_sym_switch_block_token1] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_AT] = ACTIONS(1214), - [aux_sym_clone_expression_token1] = ACTIONS(1216), - [aux_sym_print_intrinsic_token1] = ACTIONS(1216), - [aux_sym_object_creation_expression_token1] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [aux_sym__list_destructing_token1] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_self] = ACTIONS(1216), - [anon_sym_parent] = ACTIONS(1216), - [aux_sym__argument_name_token1] = ACTIONS(1216), - [aux_sym__argument_name_token2] = ACTIONS(1216), - [anon_sym_POUND_LBRACK] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [aux_sym_encapsed_string_token1] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [aux_sym_string_token1] = ACTIONS(1214), - [anon_sym_LT_LT_LT] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(1214), - [aux_sym_yield_expression_token1] = ACTIONS(1216), - [aux_sym_include_expression_token1] = ACTIONS(1216), - [aux_sym_include_once_expression_token1] = ACTIONS(1216), - [aux_sym_require_expression_token1] = ACTIONS(1216), - [aux_sym_require_once_expression_token1] = ACTIONS(1216), + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_name] = ACTIONS(1218), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1216), + [aux_sym_function_static_declaration_token1] = ACTIONS(1218), + [aux_sym_global_declaration_token1] = ACTIONS(1218), + [aux_sym_namespace_definition_token1] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1218), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1218), + [anon_sym_BSLASH] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [aux_sym_trait_declaration_token1] = ACTIONS(1218), + [aux_sym_interface_declaration_token1] = ACTIONS(1218), + [aux_sym_enum_declaration_token1] = ACTIONS(1218), + [aux_sym_enum_case_token1] = ACTIONS(1218), + [aux_sym_class_declaration_token1] = ACTIONS(1218), + [aux_sym_final_modifier_token1] = ACTIONS(1218), + [aux_sym_abstract_modifier_token1] = ACTIONS(1218), + [aux_sym_readonly_modifier_token1] = ACTIONS(1218), + [aux_sym_visibility_modifier_token1] = ACTIONS(1218), + [aux_sym_visibility_modifier_token2] = ACTIONS(1218), + [aux_sym_visibility_modifier_token3] = ACTIONS(1218), + [aux_sym__arrow_function_header_token1] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1216), + [aux_sym_cast_type_token1] = ACTIONS(1218), + [aux_sym_echo_statement_token1] = ACTIONS(1218), + [anon_sym_unset] = ACTIONS(1218), + [aux_sym_declare_statement_token1] = ACTIONS(1218), + [aux_sym_declare_statement_token2] = ACTIONS(1218), + [sym_float] = ACTIONS(1218), + [aux_sym_try_statement_token1] = ACTIONS(1218), + [aux_sym_goto_statement_token1] = ACTIONS(1218), + [aux_sym_continue_statement_token1] = ACTIONS(1218), + [aux_sym_break_statement_token1] = ACTIONS(1218), + [sym_integer] = ACTIONS(1218), + [aux_sym_return_statement_token1] = ACTIONS(1218), + [aux_sym_throw_expression_token1] = ACTIONS(1218), + [aux_sym_while_statement_token1] = ACTIONS(1218), + [aux_sym_while_statement_token2] = ACTIONS(1218), + [aux_sym_do_statement_token1] = ACTIONS(1218), + [aux_sym_for_statement_token1] = ACTIONS(1218), + [aux_sym_for_statement_token2] = ACTIONS(1218), + [aux_sym_foreach_statement_token1] = ACTIONS(1218), + [aux_sym_foreach_statement_token2] = ACTIONS(1218), + [aux_sym_if_statement_token1] = ACTIONS(1218), + [aux_sym_if_statement_token2] = ACTIONS(1218), + [aux_sym_else_if_clause_token1] = ACTIONS(1218), + [aux_sym_else_clause_token1] = ACTIONS(1218), + [aux_sym_match_expression_token1] = ACTIONS(1218), + [aux_sym_match_default_expression_token1] = ACTIONS(1218), + [aux_sym_switch_statement_token1] = ACTIONS(1218), + [aux_sym_switch_block_token1] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_AT] = ACTIONS(1216), + [aux_sym_clone_expression_token1] = ACTIONS(1218), + [aux_sym_print_intrinsic_token1] = ACTIONS(1218), + [aux_sym_object_creation_expression_token1] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [aux_sym__list_destructing_token1] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_self] = ACTIONS(1218), + [anon_sym_parent] = ACTIONS(1218), + [aux_sym__argument_name_token1] = ACTIONS(1218), + [aux_sym__argument_name_token2] = ACTIONS(1218), + [anon_sym_POUND_LBRACK] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [aux_sym_encapsed_string_token1] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1216), + [aux_sym_string_token1] = ACTIONS(1216), + [anon_sym_LT_LT_LT] = ACTIONS(1216), + [anon_sym_BQUOTE] = ACTIONS(1216), + [anon_sym_DOLLAR] = ACTIONS(1216), + [aux_sym_yield_expression_token1] = ACTIONS(1218), + [aux_sym_include_expression_token1] = ACTIONS(1218), + [aux_sym_include_once_expression_token1] = ACTIONS(1218), + [aux_sym_require_expression_token1] = ACTIONS(1218), + [aux_sym_require_once_expression_token1] = ACTIONS(1218), [sym_comment] = ACTIONS(5), }, [473] = { [sym_text_interpolation] = STATE(473), - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_name] = ACTIONS(1220), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1218), - [aux_sym_function_static_declaration_token1] = ACTIONS(1220), - [aux_sym_global_declaration_token1] = ACTIONS(1220), - [aux_sym_namespace_definition_token1] = ACTIONS(1220), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1220), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1220), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1220), - [anon_sym_BSLASH] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1218), - [aux_sym_trait_declaration_token1] = ACTIONS(1220), - [aux_sym_interface_declaration_token1] = ACTIONS(1220), - [aux_sym_enum_declaration_token1] = ACTIONS(1220), - [aux_sym_enum_case_token1] = ACTIONS(1220), - [aux_sym_class_declaration_token1] = ACTIONS(1220), - [aux_sym_final_modifier_token1] = ACTIONS(1220), - [aux_sym_abstract_modifier_token1] = ACTIONS(1220), - [aux_sym_readonly_modifier_token1] = ACTIONS(1220), - [aux_sym_visibility_modifier_token1] = ACTIONS(1220), - [aux_sym_visibility_modifier_token2] = ACTIONS(1220), - [aux_sym_visibility_modifier_token3] = ACTIONS(1220), - [aux_sym__arrow_function_header_token1] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1218), - [aux_sym_cast_type_token1] = ACTIONS(1220), - [aux_sym_echo_statement_token1] = ACTIONS(1220), - [anon_sym_unset] = ACTIONS(1220), - [aux_sym_declare_statement_token1] = ACTIONS(1220), - [aux_sym_declare_statement_token2] = ACTIONS(1220), - [sym_float] = ACTIONS(1220), - [aux_sym_try_statement_token1] = ACTIONS(1220), - [aux_sym_goto_statement_token1] = ACTIONS(1220), - [aux_sym_continue_statement_token1] = ACTIONS(1220), - [aux_sym_break_statement_token1] = ACTIONS(1220), - [sym_integer] = ACTIONS(1220), - [aux_sym_return_statement_token1] = ACTIONS(1220), - [aux_sym_throw_expression_token1] = ACTIONS(1220), - [aux_sym_while_statement_token1] = ACTIONS(1220), - [aux_sym_while_statement_token2] = ACTIONS(1220), - [aux_sym_do_statement_token1] = ACTIONS(1220), - [aux_sym_for_statement_token1] = ACTIONS(1220), - [aux_sym_for_statement_token2] = ACTIONS(1220), - [aux_sym_foreach_statement_token1] = ACTIONS(1220), - [aux_sym_foreach_statement_token2] = ACTIONS(1220), - [aux_sym_if_statement_token1] = ACTIONS(1220), - [aux_sym_if_statement_token2] = ACTIONS(1220), - [aux_sym_else_if_clause_token1] = ACTIONS(1220), - [aux_sym_else_clause_token1] = ACTIONS(1220), - [aux_sym_match_expression_token1] = ACTIONS(1220), - [aux_sym_match_default_expression_token1] = ACTIONS(1220), - [aux_sym_switch_statement_token1] = ACTIONS(1220), - [aux_sym_switch_block_token1] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_AT] = ACTIONS(1218), - [aux_sym_clone_expression_token1] = ACTIONS(1220), - [aux_sym_print_intrinsic_token1] = ACTIONS(1220), - [aux_sym_object_creation_expression_token1] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [aux_sym__list_destructing_token1] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_self] = ACTIONS(1220), - [anon_sym_parent] = ACTIONS(1220), - [aux_sym__argument_name_token1] = ACTIONS(1220), - [aux_sym__argument_name_token2] = ACTIONS(1220), - [anon_sym_POUND_LBRACK] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [aux_sym_encapsed_string_token1] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [aux_sym_string_token1] = ACTIONS(1218), - [anon_sym_LT_LT_LT] = ACTIONS(1218), - [anon_sym_BQUOTE] = ACTIONS(1218), - [anon_sym_DOLLAR] = ACTIONS(1218), - [aux_sym_yield_expression_token1] = ACTIONS(1220), - [aux_sym_include_expression_token1] = ACTIONS(1220), - [aux_sym_include_once_expression_token1] = ACTIONS(1220), - [aux_sym_require_expression_token1] = ACTIONS(1220), - [aux_sym_require_once_expression_token1] = ACTIONS(1220), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_name] = ACTIONS(1222), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1220), + [aux_sym_function_static_declaration_token1] = ACTIONS(1222), + [aux_sym_global_declaration_token1] = ACTIONS(1222), + [aux_sym_namespace_definition_token1] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1222), + [anon_sym_BSLASH] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [aux_sym_trait_declaration_token1] = ACTIONS(1222), + [aux_sym_interface_declaration_token1] = ACTIONS(1222), + [aux_sym_enum_declaration_token1] = ACTIONS(1222), + [aux_sym_enum_case_token1] = ACTIONS(1222), + [aux_sym_class_declaration_token1] = ACTIONS(1222), + [aux_sym_final_modifier_token1] = ACTIONS(1222), + [aux_sym_abstract_modifier_token1] = ACTIONS(1222), + [aux_sym_readonly_modifier_token1] = ACTIONS(1222), + [aux_sym_visibility_modifier_token1] = ACTIONS(1222), + [aux_sym_visibility_modifier_token2] = ACTIONS(1222), + [aux_sym_visibility_modifier_token3] = ACTIONS(1222), + [aux_sym__arrow_function_header_token1] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1220), + [aux_sym_cast_type_token1] = ACTIONS(1222), + [aux_sym_echo_statement_token1] = ACTIONS(1222), + [anon_sym_unset] = ACTIONS(1222), + [aux_sym_declare_statement_token1] = ACTIONS(1222), + [aux_sym_declare_statement_token2] = ACTIONS(1222), + [sym_float] = ACTIONS(1222), + [aux_sym_try_statement_token1] = ACTIONS(1222), + [aux_sym_goto_statement_token1] = ACTIONS(1222), + [aux_sym_continue_statement_token1] = ACTIONS(1222), + [aux_sym_break_statement_token1] = ACTIONS(1222), + [sym_integer] = ACTIONS(1222), + [aux_sym_return_statement_token1] = ACTIONS(1222), + [aux_sym_throw_expression_token1] = ACTIONS(1222), + [aux_sym_while_statement_token1] = ACTIONS(1222), + [aux_sym_while_statement_token2] = ACTIONS(1222), + [aux_sym_do_statement_token1] = ACTIONS(1222), + [aux_sym_for_statement_token1] = ACTIONS(1222), + [aux_sym_for_statement_token2] = ACTIONS(1222), + [aux_sym_foreach_statement_token1] = ACTIONS(1222), + [aux_sym_foreach_statement_token2] = ACTIONS(1222), + [aux_sym_if_statement_token1] = ACTIONS(1222), + [aux_sym_if_statement_token2] = ACTIONS(1222), + [aux_sym_else_if_clause_token1] = ACTIONS(1222), + [aux_sym_else_clause_token1] = ACTIONS(1222), + [aux_sym_match_expression_token1] = ACTIONS(1222), + [aux_sym_match_default_expression_token1] = ACTIONS(1222), + [aux_sym_switch_statement_token1] = ACTIONS(1222), + [aux_sym_switch_block_token1] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(1220), + [aux_sym_clone_expression_token1] = ACTIONS(1222), + [aux_sym_print_intrinsic_token1] = ACTIONS(1222), + [aux_sym_object_creation_expression_token1] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [aux_sym__list_destructing_token1] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_self] = ACTIONS(1222), + [anon_sym_parent] = ACTIONS(1222), + [aux_sym__argument_name_token1] = ACTIONS(1222), + [aux_sym__argument_name_token2] = ACTIONS(1222), + [anon_sym_POUND_LBRACK] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [aux_sym_encapsed_string_token1] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1220), + [aux_sym_string_token1] = ACTIONS(1220), + [anon_sym_LT_LT_LT] = ACTIONS(1220), + [anon_sym_BQUOTE] = ACTIONS(1220), + [anon_sym_DOLLAR] = ACTIONS(1220), + [aux_sym_yield_expression_token1] = ACTIONS(1222), + [aux_sym_include_expression_token1] = ACTIONS(1222), + [aux_sym_include_once_expression_token1] = ACTIONS(1222), + [aux_sym_require_expression_token1] = ACTIONS(1222), + [aux_sym_require_once_expression_token1] = ACTIONS(1222), [sym_comment] = ACTIONS(5), }, [474] = { [sym_text_interpolation] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_name] = ACTIONS(1224), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1222), - [aux_sym_function_static_declaration_token1] = ACTIONS(1224), - [aux_sym_global_declaration_token1] = ACTIONS(1224), - [aux_sym_namespace_definition_token1] = ACTIONS(1224), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1224), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1224), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1224), - [anon_sym_BSLASH] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [aux_sym_trait_declaration_token1] = ACTIONS(1224), - [aux_sym_interface_declaration_token1] = ACTIONS(1224), - [aux_sym_enum_declaration_token1] = ACTIONS(1224), - [aux_sym_enum_case_token1] = ACTIONS(1224), - [aux_sym_class_declaration_token1] = ACTIONS(1224), - [aux_sym_final_modifier_token1] = ACTIONS(1224), - [aux_sym_abstract_modifier_token1] = ACTIONS(1224), - [aux_sym_readonly_modifier_token1] = ACTIONS(1224), - [aux_sym_visibility_modifier_token1] = ACTIONS(1224), - [aux_sym_visibility_modifier_token2] = ACTIONS(1224), - [aux_sym_visibility_modifier_token3] = ACTIONS(1224), - [aux_sym__arrow_function_header_token1] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1222), - [aux_sym_cast_type_token1] = ACTIONS(1224), - [aux_sym_echo_statement_token1] = ACTIONS(1224), - [anon_sym_unset] = ACTIONS(1224), - [aux_sym_declare_statement_token1] = ACTIONS(1224), - [aux_sym_declare_statement_token2] = ACTIONS(1224), - [sym_float] = ACTIONS(1224), - [aux_sym_try_statement_token1] = ACTIONS(1224), - [aux_sym_goto_statement_token1] = ACTIONS(1224), - [aux_sym_continue_statement_token1] = ACTIONS(1224), - [aux_sym_break_statement_token1] = ACTIONS(1224), - [sym_integer] = ACTIONS(1224), - [aux_sym_return_statement_token1] = ACTIONS(1224), - [aux_sym_throw_expression_token1] = ACTIONS(1224), - [aux_sym_while_statement_token1] = ACTIONS(1224), - [aux_sym_while_statement_token2] = ACTIONS(1224), - [aux_sym_do_statement_token1] = ACTIONS(1224), - [aux_sym_for_statement_token1] = ACTIONS(1224), - [aux_sym_for_statement_token2] = ACTIONS(1224), - [aux_sym_foreach_statement_token1] = ACTIONS(1224), - [aux_sym_foreach_statement_token2] = ACTIONS(1224), - [aux_sym_if_statement_token1] = ACTIONS(1224), - [aux_sym_if_statement_token2] = ACTIONS(1224), - [aux_sym_else_if_clause_token1] = ACTIONS(1224), - [aux_sym_else_clause_token1] = ACTIONS(1224), - [aux_sym_match_expression_token1] = ACTIONS(1224), - [aux_sym_match_default_expression_token1] = ACTIONS(1224), - [aux_sym_switch_statement_token1] = ACTIONS(1224), - [aux_sym_switch_block_token1] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_AT] = ACTIONS(1222), - [aux_sym_clone_expression_token1] = ACTIONS(1224), - [aux_sym_print_intrinsic_token1] = ACTIONS(1224), - [aux_sym_object_creation_expression_token1] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [aux_sym__list_destructing_token1] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_self] = ACTIONS(1224), - [anon_sym_parent] = ACTIONS(1224), - [aux_sym__argument_name_token1] = ACTIONS(1224), - [aux_sym__argument_name_token2] = ACTIONS(1224), - [anon_sym_POUND_LBRACK] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [aux_sym_encapsed_string_token1] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [aux_sym_string_token1] = ACTIONS(1222), - [anon_sym_LT_LT_LT] = ACTIONS(1222), - [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1222), - [aux_sym_yield_expression_token1] = ACTIONS(1224), - [aux_sym_include_expression_token1] = ACTIONS(1224), - [aux_sym_include_once_expression_token1] = ACTIONS(1224), - [aux_sym_require_expression_token1] = ACTIONS(1224), - [aux_sym_require_once_expression_token1] = ACTIONS(1224), + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_name] = ACTIONS(1226), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1224), + [aux_sym_function_static_declaration_token1] = ACTIONS(1226), + [aux_sym_global_declaration_token1] = ACTIONS(1226), + [aux_sym_namespace_definition_token1] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1226), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1226), + [anon_sym_BSLASH] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [aux_sym_trait_declaration_token1] = ACTIONS(1226), + [aux_sym_interface_declaration_token1] = ACTIONS(1226), + [aux_sym_enum_declaration_token1] = ACTIONS(1226), + [aux_sym_enum_case_token1] = ACTIONS(1226), + [aux_sym_class_declaration_token1] = ACTIONS(1226), + [aux_sym_final_modifier_token1] = ACTIONS(1226), + [aux_sym_abstract_modifier_token1] = ACTIONS(1226), + [aux_sym_readonly_modifier_token1] = ACTIONS(1226), + [aux_sym_visibility_modifier_token1] = ACTIONS(1226), + [aux_sym_visibility_modifier_token2] = ACTIONS(1226), + [aux_sym_visibility_modifier_token3] = ACTIONS(1226), + [aux_sym__arrow_function_header_token1] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1224), + [aux_sym_cast_type_token1] = ACTIONS(1226), + [aux_sym_echo_statement_token1] = ACTIONS(1226), + [anon_sym_unset] = ACTIONS(1226), + [aux_sym_declare_statement_token1] = ACTIONS(1226), + [aux_sym_declare_statement_token2] = ACTIONS(1226), + [sym_float] = ACTIONS(1226), + [aux_sym_try_statement_token1] = ACTIONS(1226), + [aux_sym_goto_statement_token1] = ACTIONS(1226), + [aux_sym_continue_statement_token1] = ACTIONS(1226), + [aux_sym_break_statement_token1] = ACTIONS(1226), + [sym_integer] = ACTIONS(1226), + [aux_sym_return_statement_token1] = ACTIONS(1226), + [aux_sym_throw_expression_token1] = ACTIONS(1226), + [aux_sym_while_statement_token1] = ACTIONS(1226), + [aux_sym_while_statement_token2] = ACTIONS(1226), + [aux_sym_do_statement_token1] = ACTIONS(1226), + [aux_sym_for_statement_token1] = ACTIONS(1226), + [aux_sym_for_statement_token2] = ACTIONS(1226), + [aux_sym_foreach_statement_token1] = ACTIONS(1226), + [aux_sym_foreach_statement_token2] = ACTIONS(1226), + [aux_sym_if_statement_token1] = ACTIONS(1226), + [aux_sym_if_statement_token2] = ACTIONS(1226), + [aux_sym_else_if_clause_token1] = ACTIONS(1226), + [aux_sym_else_clause_token1] = ACTIONS(1226), + [aux_sym_match_expression_token1] = ACTIONS(1226), + [aux_sym_match_default_expression_token1] = ACTIONS(1226), + [aux_sym_switch_statement_token1] = ACTIONS(1226), + [aux_sym_switch_block_token1] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1224), + [aux_sym_clone_expression_token1] = ACTIONS(1226), + [aux_sym_print_intrinsic_token1] = ACTIONS(1226), + [aux_sym_object_creation_expression_token1] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [aux_sym__list_destructing_token1] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_self] = ACTIONS(1226), + [anon_sym_parent] = ACTIONS(1226), + [aux_sym__argument_name_token1] = ACTIONS(1226), + [aux_sym__argument_name_token2] = ACTIONS(1226), + [anon_sym_POUND_LBRACK] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [aux_sym_encapsed_string_token1] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1224), + [aux_sym_string_token1] = ACTIONS(1224), + [anon_sym_LT_LT_LT] = ACTIONS(1224), + [anon_sym_BQUOTE] = ACTIONS(1224), + [anon_sym_DOLLAR] = ACTIONS(1224), + [aux_sym_yield_expression_token1] = ACTIONS(1226), + [aux_sym_include_expression_token1] = ACTIONS(1226), + [aux_sym_include_once_expression_token1] = ACTIONS(1226), + [aux_sym_require_expression_token1] = ACTIONS(1226), + [aux_sym_require_once_expression_token1] = ACTIONS(1226), [sym_comment] = ACTIONS(5), }, [475] = { [sym_text_interpolation] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1226), - [sym_name] = ACTIONS(1228), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1226), - [aux_sym_function_static_declaration_token1] = ACTIONS(1228), - [aux_sym_global_declaration_token1] = ACTIONS(1228), - [aux_sym_namespace_definition_token1] = ACTIONS(1228), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1228), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1228), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1228), - [anon_sym_BSLASH] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [aux_sym_trait_declaration_token1] = ACTIONS(1228), - [aux_sym_interface_declaration_token1] = ACTIONS(1228), - [aux_sym_enum_declaration_token1] = ACTIONS(1228), - [aux_sym_enum_case_token1] = ACTIONS(1228), - [aux_sym_class_declaration_token1] = ACTIONS(1228), - [aux_sym_final_modifier_token1] = ACTIONS(1228), - [aux_sym_abstract_modifier_token1] = ACTIONS(1228), - [aux_sym_readonly_modifier_token1] = ACTIONS(1228), - [aux_sym_visibility_modifier_token1] = ACTIONS(1228), - [aux_sym_visibility_modifier_token2] = ACTIONS(1228), - [aux_sym_visibility_modifier_token3] = ACTIONS(1228), - [aux_sym__arrow_function_header_token1] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1226), - [aux_sym_cast_type_token1] = ACTIONS(1228), - [aux_sym_echo_statement_token1] = ACTIONS(1228), - [anon_sym_unset] = ACTIONS(1228), - [aux_sym_declare_statement_token1] = ACTIONS(1228), - [aux_sym_declare_statement_token2] = ACTIONS(1228), - [sym_float] = ACTIONS(1228), - [aux_sym_try_statement_token1] = ACTIONS(1228), - [aux_sym_goto_statement_token1] = ACTIONS(1228), - [aux_sym_continue_statement_token1] = ACTIONS(1228), - [aux_sym_break_statement_token1] = ACTIONS(1228), - [sym_integer] = ACTIONS(1228), - [aux_sym_return_statement_token1] = ACTIONS(1228), - [aux_sym_throw_expression_token1] = ACTIONS(1228), - [aux_sym_while_statement_token1] = ACTIONS(1228), - [aux_sym_while_statement_token2] = ACTIONS(1228), - [aux_sym_do_statement_token1] = ACTIONS(1228), - [aux_sym_for_statement_token1] = ACTIONS(1228), - [aux_sym_for_statement_token2] = ACTIONS(1228), - [aux_sym_foreach_statement_token1] = ACTIONS(1228), - [aux_sym_foreach_statement_token2] = ACTIONS(1228), - [aux_sym_if_statement_token1] = ACTIONS(1228), - [aux_sym_if_statement_token2] = ACTIONS(1228), - [aux_sym_else_if_clause_token1] = ACTIONS(1228), - [aux_sym_else_clause_token1] = ACTIONS(1228), - [aux_sym_match_expression_token1] = ACTIONS(1228), - [aux_sym_match_default_expression_token1] = ACTIONS(1228), - [aux_sym_switch_statement_token1] = ACTIONS(1228), - [aux_sym_switch_block_token1] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_AT] = ACTIONS(1226), - [aux_sym_clone_expression_token1] = ACTIONS(1228), - [aux_sym_print_intrinsic_token1] = ACTIONS(1228), - [aux_sym_object_creation_expression_token1] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [aux_sym__list_destructing_token1] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_self] = ACTIONS(1228), - [anon_sym_parent] = ACTIONS(1228), - [aux_sym__argument_name_token1] = ACTIONS(1228), - [aux_sym__argument_name_token2] = ACTIONS(1228), - [anon_sym_POUND_LBRACK] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [aux_sym_encapsed_string_token1] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [aux_sym_string_token1] = ACTIONS(1226), - [anon_sym_LT_LT_LT] = ACTIONS(1226), - [anon_sym_BQUOTE] = ACTIONS(1226), - [anon_sym_DOLLAR] = ACTIONS(1226), - [aux_sym_yield_expression_token1] = ACTIONS(1228), - [aux_sym_include_expression_token1] = ACTIONS(1228), - [aux_sym_include_once_expression_token1] = ACTIONS(1228), - [aux_sym_require_expression_token1] = ACTIONS(1228), - [aux_sym_require_once_expression_token1] = ACTIONS(1228), + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_name] = ACTIONS(1230), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1228), + [aux_sym_function_static_declaration_token1] = ACTIONS(1230), + [aux_sym_global_declaration_token1] = ACTIONS(1230), + [aux_sym_namespace_definition_token1] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1230), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1230), + [anon_sym_BSLASH] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [aux_sym_trait_declaration_token1] = ACTIONS(1230), + [aux_sym_interface_declaration_token1] = ACTIONS(1230), + [aux_sym_enum_declaration_token1] = ACTIONS(1230), + [aux_sym_enum_case_token1] = ACTIONS(1230), + [aux_sym_class_declaration_token1] = ACTIONS(1230), + [aux_sym_final_modifier_token1] = ACTIONS(1230), + [aux_sym_abstract_modifier_token1] = ACTIONS(1230), + [aux_sym_readonly_modifier_token1] = ACTIONS(1230), + [aux_sym_visibility_modifier_token1] = ACTIONS(1230), + [aux_sym_visibility_modifier_token2] = ACTIONS(1230), + [aux_sym_visibility_modifier_token3] = ACTIONS(1230), + [aux_sym__arrow_function_header_token1] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1228), + [aux_sym_cast_type_token1] = ACTIONS(1230), + [aux_sym_echo_statement_token1] = ACTIONS(1230), + [anon_sym_unset] = ACTIONS(1230), + [aux_sym_declare_statement_token1] = ACTIONS(1230), + [aux_sym_declare_statement_token2] = ACTIONS(1230), + [sym_float] = ACTIONS(1230), + [aux_sym_try_statement_token1] = ACTIONS(1230), + [aux_sym_goto_statement_token1] = ACTIONS(1230), + [aux_sym_continue_statement_token1] = ACTIONS(1230), + [aux_sym_break_statement_token1] = ACTIONS(1230), + [sym_integer] = ACTIONS(1230), + [aux_sym_return_statement_token1] = ACTIONS(1230), + [aux_sym_throw_expression_token1] = ACTIONS(1230), + [aux_sym_while_statement_token1] = ACTIONS(1230), + [aux_sym_while_statement_token2] = ACTIONS(1230), + [aux_sym_do_statement_token1] = ACTIONS(1230), + [aux_sym_for_statement_token1] = ACTIONS(1230), + [aux_sym_for_statement_token2] = ACTIONS(1230), + [aux_sym_foreach_statement_token1] = ACTIONS(1230), + [aux_sym_foreach_statement_token2] = ACTIONS(1230), + [aux_sym_if_statement_token1] = ACTIONS(1230), + [aux_sym_if_statement_token2] = ACTIONS(1230), + [aux_sym_else_if_clause_token1] = ACTIONS(1230), + [aux_sym_else_clause_token1] = ACTIONS(1230), + [aux_sym_match_expression_token1] = ACTIONS(1230), + [aux_sym_match_default_expression_token1] = ACTIONS(1230), + [aux_sym_switch_statement_token1] = ACTIONS(1230), + [aux_sym_switch_block_token1] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_AT] = ACTIONS(1228), + [aux_sym_clone_expression_token1] = ACTIONS(1230), + [aux_sym_print_intrinsic_token1] = ACTIONS(1230), + [aux_sym_object_creation_expression_token1] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [aux_sym__list_destructing_token1] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_self] = ACTIONS(1230), + [anon_sym_parent] = ACTIONS(1230), + [aux_sym__argument_name_token1] = ACTIONS(1230), + [aux_sym__argument_name_token2] = ACTIONS(1230), + [anon_sym_POUND_LBRACK] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [aux_sym_encapsed_string_token1] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [aux_sym_string_token1] = ACTIONS(1228), + [anon_sym_LT_LT_LT] = ACTIONS(1228), + [anon_sym_BQUOTE] = ACTIONS(1228), + [anon_sym_DOLLAR] = ACTIONS(1228), + [aux_sym_yield_expression_token1] = ACTIONS(1230), + [aux_sym_include_expression_token1] = ACTIONS(1230), + [aux_sym_include_once_expression_token1] = ACTIONS(1230), + [aux_sym_require_expression_token1] = ACTIONS(1230), + [aux_sym_require_once_expression_token1] = ACTIONS(1230), [sym_comment] = ACTIONS(5), }, [476] = { [sym_text_interpolation] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(1230), - [sym_name] = ACTIONS(1232), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1230), - [aux_sym_function_static_declaration_token1] = ACTIONS(1232), - [aux_sym_global_declaration_token1] = ACTIONS(1232), - [aux_sym_namespace_definition_token1] = ACTIONS(1232), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1232), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1232), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1232), - [anon_sym_BSLASH] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [aux_sym_trait_declaration_token1] = ACTIONS(1232), - [aux_sym_interface_declaration_token1] = ACTIONS(1232), - [aux_sym_enum_declaration_token1] = ACTIONS(1232), - [aux_sym_enum_case_token1] = ACTIONS(1232), - [aux_sym_class_declaration_token1] = ACTIONS(1232), - [aux_sym_final_modifier_token1] = ACTIONS(1232), - [aux_sym_abstract_modifier_token1] = ACTIONS(1232), - [aux_sym_readonly_modifier_token1] = ACTIONS(1232), - [aux_sym_visibility_modifier_token1] = ACTIONS(1232), - [aux_sym_visibility_modifier_token2] = ACTIONS(1232), - [aux_sym_visibility_modifier_token3] = ACTIONS(1232), - [aux_sym__arrow_function_header_token1] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1230), - [aux_sym_cast_type_token1] = ACTIONS(1232), - [aux_sym_echo_statement_token1] = ACTIONS(1232), - [anon_sym_unset] = ACTIONS(1232), - [aux_sym_declare_statement_token1] = ACTIONS(1232), - [aux_sym_declare_statement_token2] = ACTIONS(1232), - [sym_float] = ACTIONS(1232), - [aux_sym_try_statement_token1] = ACTIONS(1232), - [aux_sym_goto_statement_token1] = ACTIONS(1232), - [aux_sym_continue_statement_token1] = ACTIONS(1232), - [aux_sym_break_statement_token1] = ACTIONS(1232), - [sym_integer] = ACTIONS(1232), - [aux_sym_return_statement_token1] = ACTIONS(1232), - [aux_sym_throw_expression_token1] = ACTIONS(1232), - [aux_sym_while_statement_token1] = ACTIONS(1232), - [aux_sym_while_statement_token2] = ACTIONS(1232), - [aux_sym_do_statement_token1] = ACTIONS(1232), - [aux_sym_for_statement_token1] = ACTIONS(1232), - [aux_sym_for_statement_token2] = ACTIONS(1232), - [aux_sym_foreach_statement_token1] = ACTIONS(1232), - [aux_sym_foreach_statement_token2] = ACTIONS(1232), - [aux_sym_if_statement_token1] = ACTIONS(1232), - [aux_sym_if_statement_token2] = ACTIONS(1232), - [aux_sym_else_if_clause_token1] = ACTIONS(1232), - [aux_sym_else_clause_token1] = ACTIONS(1232), - [aux_sym_match_expression_token1] = ACTIONS(1232), - [aux_sym_match_default_expression_token1] = ACTIONS(1232), - [aux_sym_switch_statement_token1] = ACTIONS(1232), - [aux_sym_switch_block_token1] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_AT] = ACTIONS(1230), - [aux_sym_clone_expression_token1] = ACTIONS(1232), - [aux_sym_print_intrinsic_token1] = ACTIONS(1232), - [aux_sym_object_creation_expression_token1] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [aux_sym__list_destructing_token1] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_self] = ACTIONS(1232), - [anon_sym_parent] = ACTIONS(1232), - [aux_sym__argument_name_token1] = ACTIONS(1232), - [aux_sym__argument_name_token2] = ACTIONS(1232), - [anon_sym_POUND_LBRACK] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [aux_sym_encapsed_string_token1] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [aux_sym_string_token1] = ACTIONS(1230), - [anon_sym_LT_LT_LT] = ACTIONS(1230), - [anon_sym_BQUOTE] = ACTIONS(1230), - [anon_sym_DOLLAR] = ACTIONS(1230), - [aux_sym_yield_expression_token1] = ACTIONS(1232), - [aux_sym_include_expression_token1] = ACTIONS(1232), - [aux_sym_include_once_expression_token1] = ACTIONS(1232), - [aux_sym_require_expression_token1] = ACTIONS(1232), - [aux_sym_require_once_expression_token1] = ACTIONS(1232), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_name] = ACTIONS(1234), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1232), + [aux_sym_function_static_declaration_token1] = ACTIONS(1234), + [aux_sym_global_declaration_token1] = ACTIONS(1234), + [aux_sym_namespace_definition_token1] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1234), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1234), + [anon_sym_BSLASH] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [aux_sym_trait_declaration_token1] = ACTIONS(1234), + [aux_sym_interface_declaration_token1] = ACTIONS(1234), + [aux_sym_enum_declaration_token1] = ACTIONS(1234), + [aux_sym_enum_case_token1] = ACTIONS(1234), + [aux_sym_class_declaration_token1] = ACTIONS(1234), + [aux_sym_final_modifier_token1] = ACTIONS(1234), + [aux_sym_abstract_modifier_token1] = ACTIONS(1234), + [aux_sym_readonly_modifier_token1] = ACTIONS(1234), + [aux_sym_visibility_modifier_token1] = ACTIONS(1234), + [aux_sym_visibility_modifier_token2] = ACTIONS(1234), + [aux_sym_visibility_modifier_token3] = ACTIONS(1234), + [aux_sym__arrow_function_header_token1] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1232), + [aux_sym_cast_type_token1] = ACTIONS(1234), + [aux_sym_echo_statement_token1] = ACTIONS(1234), + [anon_sym_unset] = ACTIONS(1234), + [aux_sym_declare_statement_token1] = ACTIONS(1234), + [aux_sym_declare_statement_token2] = ACTIONS(1234), + [sym_float] = ACTIONS(1234), + [aux_sym_try_statement_token1] = ACTIONS(1234), + [aux_sym_goto_statement_token1] = ACTIONS(1234), + [aux_sym_continue_statement_token1] = ACTIONS(1234), + [aux_sym_break_statement_token1] = ACTIONS(1234), + [sym_integer] = ACTIONS(1234), + [aux_sym_return_statement_token1] = ACTIONS(1234), + [aux_sym_throw_expression_token1] = ACTIONS(1234), + [aux_sym_while_statement_token1] = ACTIONS(1234), + [aux_sym_while_statement_token2] = ACTIONS(1234), + [aux_sym_do_statement_token1] = ACTIONS(1234), + [aux_sym_for_statement_token1] = ACTIONS(1234), + [aux_sym_for_statement_token2] = ACTIONS(1234), + [aux_sym_foreach_statement_token1] = ACTIONS(1234), + [aux_sym_foreach_statement_token2] = ACTIONS(1234), + [aux_sym_if_statement_token1] = ACTIONS(1234), + [aux_sym_if_statement_token2] = ACTIONS(1234), + [aux_sym_else_if_clause_token1] = ACTIONS(1234), + [aux_sym_else_clause_token1] = ACTIONS(1234), + [aux_sym_match_expression_token1] = ACTIONS(1234), + [aux_sym_match_default_expression_token1] = ACTIONS(1234), + [aux_sym_switch_statement_token1] = ACTIONS(1234), + [aux_sym_switch_block_token1] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_AT] = ACTIONS(1232), + [aux_sym_clone_expression_token1] = ACTIONS(1234), + [aux_sym_print_intrinsic_token1] = ACTIONS(1234), + [aux_sym_object_creation_expression_token1] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1232), + [aux_sym__list_destructing_token1] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_self] = ACTIONS(1234), + [anon_sym_parent] = ACTIONS(1234), + [aux_sym__argument_name_token1] = ACTIONS(1234), + [aux_sym__argument_name_token2] = ACTIONS(1234), + [anon_sym_POUND_LBRACK] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [aux_sym_encapsed_string_token1] = ACTIONS(1232), + [anon_sym_DQUOTE] = ACTIONS(1232), + [aux_sym_string_token1] = ACTIONS(1232), + [anon_sym_LT_LT_LT] = ACTIONS(1232), + [anon_sym_BQUOTE] = ACTIONS(1232), + [anon_sym_DOLLAR] = ACTIONS(1232), + [aux_sym_yield_expression_token1] = ACTIONS(1234), + [aux_sym_include_expression_token1] = ACTIONS(1234), + [aux_sym_include_once_expression_token1] = ACTIONS(1234), + [aux_sym_require_expression_token1] = ACTIONS(1234), + [aux_sym_require_once_expression_token1] = ACTIONS(1234), [sym_comment] = ACTIONS(5), }, [477] = { [sym_text_interpolation] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1234), - [sym_name] = ACTIONS(1236), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1234), - [aux_sym_function_static_declaration_token1] = ACTIONS(1236), - [aux_sym_global_declaration_token1] = ACTIONS(1236), - [aux_sym_namespace_definition_token1] = ACTIONS(1236), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1236), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1236), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1236), - [anon_sym_BSLASH] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [aux_sym_trait_declaration_token1] = ACTIONS(1236), - [aux_sym_interface_declaration_token1] = ACTIONS(1236), - [aux_sym_enum_declaration_token1] = ACTIONS(1236), - [aux_sym_enum_case_token1] = ACTIONS(1236), - [aux_sym_class_declaration_token1] = ACTIONS(1236), - [aux_sym_final_modifier_token1] = ACTIONS(1236), - [aux_sym_abstract_modifier_token1] = ACTIONS(1236), - [aux_sym_readonly_modifier_token1] = ACTIONS(1236), - [aux_sym_visibility_modifier_token1] = ACTIONS(1236), - [aux_sym_visibility_modifier_token2] = ACTIONS(1236), - [aux_sym_visibility_modifier_token3] = ACTIONS(1236), - [aux_sym__arrow_function_header_token1] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1234), - [aux_sym_cast_type_token1] = ACTIONS(1236), - [aux_sym_echo_statement_token1] = ACTIONS(1236), - [anon_sym_unset] = ACTIONS(1236), - [aux_sym_declare_statement_token1] = ACTIONS(1236), - [aux_sym_declare_statement_token2] = ACTIONS(1236), - [sym_float] = ACTIONS(1236), - [aux_sym_try_statement_token1] = ACTIONS(1236), - [aux_sym_goto_statement_token1] = ACTIONS(1236), - [aux_sym_continue_statement_token1] = ACTIONS(1236), - [aux_sym_break_statement_token1] = ACTIONS(1236), - [sym_integer] = ACTIONS(1236), - [aux_sym_return_statement_token1] = ACTIONS(1236), - [aux_sym_throw_expression_token1] = ACTIONS(1236), - [aux_sym_while_statement_token1] = ACTIONS(1236), - [aux_sym_while_statement_token2] = ACTIONS(1236), - [aux_sym_do_statement_token1] = ACTIONS(1236), - [aux_sym_for_statement_token1] = ACTIONS(1236), - [aux_sym_for_statement_token2] = ACTIONS(1236), - [aux_sym_foreach_statement_token1] = ACTIONS(1236), - [aux_sym_foreach_statement_token2] = ACTIONS(1236), - [aux_sym_if_statement_token1] = ACTIONS(1236), - [aux_sym_if_statement_token2] = ACTIONS(1236), - [aux_sym_else_if_clause_token1] = ACTIONS(1236), - [aux_sym_else_clause_token1] = ACTIONS(1236), - [aux_sym_match_expression_token1] = ACTIONS(1236), - [aux_sym_match_default_expression_token1] = ACTIONS(1236), - [aux_sym_switch_statement_token1] = ACTIONS(1236), - [aux_sym_switch_block_token1] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_AT] = ACTIONS(1234), - [aux_sym_clone_expression_token1] = ACTIONS(1236), - [aux_sym_print_intrinsic_token1] = ACTIONS(1236), - [aux_sym_object_creation_expression_token1] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [aux_sym__list_destructing_token1] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_self] = ACTIONS(1236), - [anon_sym_parent] = ACTIONS(1236), - [aux_sym__argument_name_token1] = ACTIONS(1236), - [aux_sym__argument_name_token2] = ACTIONS(1236), - [anon_sym_POUND_LBRACK] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [aux_sym_encapsed_string_token1] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [aux_sym_string_token1] = ACTIONS(1234), - [anon_sym_LT_LT_LT] = ACTIONS(1234), - [anon_sym_BQUOTE] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(1234), - [aux_sym_yield_expression_token1] = ACTIONS(1236), - [aux_sym_include_expression_token1] = ACTIONS(1236), - [aux_sym_include_once_expression_token1] = ACTIONS(1236), - [aux_sym_require_expression_token1] = ACTIONS(1236), - [aux_sym_require_once_expression_token1] = ACTIONS(1236), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_name] = ACTIONS(1238), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1236), + [aux_sym_function_static_declaration_token1] = ACTIONS(1238), + [aux_sym_global_declaration_token1] = ACTIONS(1238), + [aux_sym_namespace_definition_token1] = ACTIONS(1238), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1238), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1238), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1238), + [anon_sym_BSLASH] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [aux_sym_trait_declaration_token1] = ACTIONS(1238), + [aux_sym_interface_declaration_token1] = ACTIONS(1238), + [aux_sym_enum_declaration_token1] = ACTIONS(1238), + [aux_sym_enum_case_token1] = ACTIONS(1238), + [aux_sym_class_declaration_token1] = ACTIONS(1238), + [aux_sym_final_modifier_token1] = ACTIONS(1238), + [aux_sym_abstract_modifier_token1] = ACTIONS(1238), + [aux_sym_readonly_modifier_token1] = ACTIONS(1238), + [aux_sym_visibility_modifier_token1] = ACTIONS(1238), + [aux_sym_visibility_modifier_token2] = ACTIONS(1238), + [aux_sym_visibility_modifier_token3] = ACTIONS(1238), + [aux_sym__arrow_function_header_token1] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1236), + [aux_sym_cast_type_token1] = ACTIONS(1238), + [aux_sym_echo_statement_token1] = ACTIONS(1238), + [anon_sym_unset] = ACTIONS(1238), + [aux_sym_declare_statement_token1] = ACTIONS(1238), + [aux_sym_declare_statement_token2] = ACTIONS(1238), + [sym_float] = ACTIONS(1238), + [aux_sym_try_statement_token1] = ACTIONS(1238), + [aux_sym_goto_statement_token1] = ACTIONS(1238), + [aux_sym_continue_statement_token1] = ACTIONS(1238), + [aux_sym_break_statement_token1] = ACTIONS(1238), + [sym_integer] = ACTIONS(1238), + [aux_sym_return_statement_token1] = ACTIONS(1238), + [aux_sym_throw_expression_token1] = ACTIONS(1238), + [aux_sym_while_statement_token1] = ACTIONS(1238), + [aux_sym_while_statement_token2] = ACTIONS(1238), + [aux_sym_do_statement_token1] = ACTIONS(1238), + [aux_sym_for_statement_token1] = ACTIONS(1238), + [aux_sym_for_statement_token2] = ACTIONS(1238), + [aux_sym_foreach_statement_token1] = ACTIONS(1238), + [aux_sym_foreach_statement_token2] = ACTIONS(1238), + [aux_sym_if_statement_token1] = ACTIONS(1238), + [aux_sym_if_statement_token2] = ACTIONS(1238), + [aux_sym_else_if_clause_token1] = ACTIONS(1238), + [aux_sym_else_clause_token1] = ACTIONS(1238), + [aux_sym_match_expression_token1] = ACTIONS(1238), + [aux_sym_match_default_expression_token1] = ACTIONS(1238), + [aux_sym_switch_statement_token1] = ACTIONS(1238), + [aux_sym_switch_block_token1] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_AT] = ACTIONS(1236), + [aux_sym_clone_expression_token1] = ACTIONS(1238), + [aux_sym_print_intrinsic_token1] = ACTIONS(1238), + [aux_sym_object_creation_expression_token1] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [aux_sym__list_destructing_token1] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_self] = ACTIONS(1238), + [anon_sym_parent] = ACTIONS(1238), + [aux_sym__argument_name_token1] = ACTIONS(1238), + [aux_sym__argument_name_token2] = ACTIONS(1238), + [anon_sym_POUND_LBRACK] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [aux_sym_encapsed_string_token1] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [aux_sym_string_token1] = ACTIONS(1236), + [anon_sym_LT_LT_LT] = ACTIONS(1236), + [anon_sym_BQUOTE] = ACTIONS(1236), + [anon_sym_DOLLAR] = ACTIONS(1236), + [aux_sym_yield_expression_token1] = ACTIONS(1238), + [aux_sym_include_expression_token1] = ACTIONS(1238), + [aux_sym_include_once_expression_token1] = ACTIONS(1238), + [aux_sym_require_expression_token1] = ACTIONS(1238), + [aux_sym_require_once_expression_token1] = ACTIONS(1238), [sym_comment] = ACTIONS(5), }, [478] = { [sym_text_interpolation] = STATE(478), - [ts_builtin_sym_end] = ACTIONS(1238), - [sym_name] = ACTIONS(1240), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1238), - [aux_sym_function_static_declaration_token1] = ACTIONS(1240), - [aux_sym_global_declaration_token1] = ACTIONS(1240), - [aux_sym_namespace_definition_token1] = ACTIONS(1240), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1240), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1240), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1240), - [anon_sym_BSLASH] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [aux_sym_trait_declaration_token1] = ACTIONS(1240), - [aux_sym_interface_declaration_token1] = ACTIONS(1240), - [aux_sym_enum_declaration_token1] = ACTIONS(1240), - [aux_sym_enum_case_token1] = ACTIONS(1240), - [aux_sym_class_declaration_token1] = ACTIONS(1240), - [aux_sym_final_modifier_token1] = ACTIONS(1240), - [aux_sym_abstract_modifier_token1] = ACTIONS(1240), - [aux_sym_readonly_modifier_token1] = ACTIONS(1240), - [aux_sym_visibility_modifier_token1] = ACTIONS(1240), - [aux_sym_visibility_modifier_token2] = ACTIONS(1240), - [aux_sym_visibility_modifier_token3] = ACTIONS(1240), - [aux_sym__arrow_function_header_token1] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1238), - [aux_sym_cast_type_token1] = ACTIONS(1240), - [aux_sym_echo_statement_token1] = ACTIONS(1240), - [anon_sym_unset] = ACTIONS(1240), - [aux_sym_declare_statement_token1] = ACTIONS(1240), - [aux_sym_declare_statement_token2] = ACTIONS(1240), - [sym_float] = ACTIONS(1240), - [aux_sym_try_statement_token1] = ACTIONS(1240), - [aux_sym_goto_statement_token1] = ACTIONS(1240), - [aux_sym_continue_statement_token1] = ACTIONS(1240), - [aux_sym_break_statement_token1] = ACTIONS(1240), - [sym_integer] = ACTIONS(1240), - [aux_sym_return_statement_token1] = ACTIONS(1240), - [aux_sym_throw_expression_token1] = ACTIONS(1240), - [aux_sym_while_statement_token1] = ACTIONS(1240), - [aux_sym_while_statement_token2] = ACTIONS(1240), - [aux_sym_do_statement_token1] = ACTIONS(1240), - [aux_sym_for_statement_token1] = ACTIONS(1240), - [aux_sym_for_statement_token2] = ACTIONS(1240), - [aux_sym_foreach_statement_token1] = ACTIONS(1240), - [aux_sym_foreach_statement_token2] = ACTIONS(1240), - [aux_sym_if_statement_token1] = ACTIONS(1240), - [aux_sym_if_statement_token2] = ACTIONS(1240), - [aux_sym_else_if_clause_token1] = ACTIONS(1240), - [aux_sym_else_clause_token1] = ACTIONS(1240), - [aux_sym_match_expression_token1] = ACTIONS(1240), - [aux_sym_match_default_expression_token1] = ACTIONS(1240), - [aux_sym_switch_statement_token1] = ACTIONS(1240), - [aux_sym_switch_block_token1] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_AT] = ACTIONS(1238), - [aux_sym_clone_expression_token1] = ACTIONS(1240), - [aux_sym_print_intrinsic_token1] = ACTIONS(1240), - [aux_sym_object_creation_expression_token1] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [aux_sym__list_destructing_token1] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1238), - [anon_sym_self] = ACTIONS(1240), - [anon_sym_parent] = ACTIONS(1240), - [aux_sym__argument_name_token1] = ACTIONS(1240), - [aux_sym__argument_name_token2] = ACTIONS(1240), - [anon_sym_POUND_LBRACK] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [aux_sym_encapsed_string_token1] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [aux_sym_string_token1] = ACTIONS(1238), - [anon_sym_LT_LT_LT] = ACTIONS(1238), - [anon_sym_BQUOTE] = ACTIONS(1238), - [anon_sym_DOLLAR] = ACTIONS(1238), - [aux_sym_yield_expression_token1] = ACTIONS(1240), - [aux_sym_include_expression_token1] = ACTIONS(1240), - [aux_sym_include_once_expression_token1] = ACTIONS(1240), - [aux_sym_require_expression_token1] = ACTIONS(1240), - [aux_sym_require_once_expression_token1] = ACTIONS(1240), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_name] = ACTIONS(1242), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1240), + [aux_sym_function_static_declaration_token1] = ACTIONS(1242), + [aux_sym_global_declaration_token1] = ACTIONS(1242), + [aux_sym_namespace_definition_token1] = ACTIONS(1242), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1242), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1242), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1242), + [anon_sym_BSLASH] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [aux_sym_trait_declaration_token1] = ACTIONS(1242), + [aux_sym_interface_declaration_token1] = ACTIONS(1242), + [aux_sym_enum_declaration_token1] = ACTIONS(1242), + [aux_sym_enum_case_token1] = ACTIONS(1242), + [aux_sym_class_declaration_token1] = ACTIONS(1242), + [aux_sym_final_modifier_token1] = ACTIONS(1242), + [aux_sym_abstract_modifier_token1] = ACTIONS(1242), + [aux_sym_readonly_modifier_token1] = ACTIONS(1242), + [aux_sym_visibility_modifier_token1] = ACTIONS(1242), + [aux_sym_visibility_modifier_token2] = ACTIONS(1242), + [aux_sym_visibility_modifier_token3] = ACTIONS(1242), + [aux_sym__arrow_function_header_token1] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1240), + [aux_sym_cast_type_token1] = ACTIONS(1242), + [aux_sym_echo_statement_token1] = ACTIONS(1242), + [anon_sym_unset] = ACTIONS(1242), + [aux_sym_declare_statement_token1] = ACTIONS(1242), + [aux_sym_declare_statement_token2] = ACTIONS(1242), + [sym_float] = ACTIONS(1242), + [aux_sym_try_statement_token1] = ACTIONS(1242), + [aux_sym_goto_statement_token1] = ACTIONS(1242), + [aux_sym_continue_statement_token1] = ACTIONS(1242), + [aux_sym_break_statement_token1] = ACTIONS(1242), + [sym_integer] = ACTIONS(1242), + [aux_sym_return_statement_token1] = ACTIONS(1242), + [aux_sym_throw_expression_token1] = ACTIONS(1242), + [aux_sym_while_statement_token1] = ACTIONS(1242), + [aux_sym_while_statement_token2] = ACTIONS(1242), + [aux_sym_do_statement_token1] = ACTIONS(1242), + [aux_sym_for_statement_token1] = ACTIONS(1242), + [aux_sym_for_statement_token2] = ACTIONS(1242), + [aux_sym_foreach_statement_token1] = ACTIONS(1242), + [aux_sym_foreach_statement_token2] = ACTIONS(1242), + [aux_sym_if_statement_token1] = ACTIONS(1242), + [aux_sym_if_statement_token2] = ACTIONS(1242), + [aux_sym_else_if_clause_token1] = ACTIONS(1242), + [aux_sym_else_clause_token1] = ACTIONS(1242), + [aux_sym_match_expression_token1] = ACTIONS(1242), + [aux_sym_match_default_expression_token1] = ACTIONS(1242), + [aux_sym_switch_statement_token1] = ACTIONS(1242), + [aux_sym_switch_block_token1] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_AT] = ACTIONS(1240), + [aux_sym_clone_expression_token1] = ACTIONS(1242), + [aux_sym_print_intrinsic_token1] = ACTIONS(1242), + [aux_sym_object_creation_expression_token1] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [aux_sym__list_destructing_token1] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_self] = ACTIONS(1242), + [anon_sym_parent] = ACTIONS(1242), + [aux_sym__argument_name_token1] = ACTIONS(1242), + [aux_sym__argument_name_token2] = ACTIONS(1242), + [anon_sym_POUND_LBRACK] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [aux_sym_encapsed_string_token1] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1240), + [aux_sym_string_token1] = ACTIONS(1240), + [anon_sym_LT_LT_LT] = ACTIONS(1240), + [anon_sym_BQUOTE] = ACTIONS(1240), + [anon_sym_DOLLAR] = ACTIONS(1240), + [aux_sym_yield_expression_token1] = ACTIONS(1242), + [aux_sym_include_expression_token1] = ACTIONS(1242), + [aux_sym_include_once_expression_token1] = ACTIONS(1242), + [aux_sym_require_expression_token1] = ACTIONS(1242), + [aux_sym_require_once_expression_token1] = ACTIONS(1242), [sym_comment] = ACTIONS(5), }, [479] = { [sym_text_interpolation] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_name] = ACTIONS(1244), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1242), - [aux_sym_function_static_declaration_token1] = ACTIONS(1244), - [aux_sym_global_declaration_token1] = ACTIONS(1244), - [aux_sym_namespace_definition_token1] = ACTIONS(1244), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1244), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1244), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1244), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [aux_sym_trait_declaration_token1] = ACTIONS(1244), - [aux_sym_interface_declaration_token1] = ACTIONS(1244), - [aux_sym_enum_declaration_token1] = ACTIONS(1244), - [aux_sym_enum_case_token1] = ACTIONS(1244), - [aux_sym_class_declaration_token1] = ACTIONS(1244), - [aux_sym_final_modifier_token1] = ACTIONS(1244), - [aux_sym_abstract_modifier_token1] = ACTIONS(1244), - [aux_sym_readonly_modifier_token1] = ACTIONS(1244), - [aux_sym_visibility_modifier_token1] = ACTIONS(1244), - [aux_sym_visibility_modifier_token2] = ACTIONS(1244), - [aux_sym_visibility_modifier_token3] = ACTIONS(1244), - [aux_sym__arrow_function_header_token1] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1242), - [aux_sym_cast_type_token1] = ACTIONS(1244), - [aux_sym_echo_statement_token1] = ACTIONS(1244), - [anon_sym_unset] = ACTIONS(1244), - [aux_sym_declare_statement_token1] = ACTIONS(1244), - [aux_sym_declare_statement_token2] = ACTIONS(1244), - [sym_float] = ACTIONS(1244), - [aux_sym_try_statement_token1] = ACTIONS(1244), - [aux_sym_goto_statement_token1] = ACTIONS(1244), - [aux_sym_continue_statement_token1] = ACTIONS(1244), - [aux_sym_break_statement_token1] = ACTIONS(1244), - [sym_integer] = ACTIONS(1244), - [aux_sym_return_statement_token1] = ACTIONS(1244), - [aux_sym_throw_expression_token1] = ACTIONS(1244), - [aux_sym_while_statement_token1] = ACTIONS(1244), - [aux_sym_while_statement_token2] = ACTIONS(1244), - [aux_sym_do_statement_token1] = ACTIONS(1244), - [aux_sym_for_statement_token1] = ACTIONS(1244), - [aux_sym_for_statement_token2] = ACTIONS(1244), - [aux_sym_foreach_statement_token1] = ACTIONS(1244), - [aux_sym_foreach_statement_token2] = ACTIONS(1244), - [aux_sym_if_statement_token1] = ACTIONS(1244), - [aux_sym_if_statement_token2] = ACTIONS(1244), - [aux_sym_else_if_clause_token1] = ACTIONS(1244), - [aux_sym_else_clause_token1] = ACTIONS(1244), - [aux_sym_match_expression_token1] = ACTIONS(1244), - [aux_sym_match_default_expression_token1] = ACTIONS(1244), - [aux_sym_switch_statement_token1] = ACTIONS(1244), - [aux_sym_switch_block_token1] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [aux_sym_clone_expression_token1] = ACTIONS(1244), - [aux_sym_print_intrinsic_token1] = ACTIONS(1244), - [aux_sym_object_creation_expression_token1] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [aux_sym__list_destructing_token1] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1242), - [anon_sym_self] = ACTIONS(1244), - [anon_sym_parent] = ACTIONS(1244), - [aux_sym__argument_name_token1] = ACTIONS(1244), - [aux_sym__argument_name_token2] = ACTIONS(1244), - [anon_sym_POUND_LBRACK] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [aux_sym_encapsed_string_token1] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [aux_sym_string_token1] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1242), - [aux_sym_yield_expression_token1] = ACTIONS(1244), - [aux_sym_include_expression_token1] = ACTIONS(1244), - [aux_sym_include_once_expression_token1] = ACTIONS(1244), - [aux_sym_require_expression_token1] = ACTIONS(1244), - [aux_sym_require_once_expression_token1] = ACTIONS(1244), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_name] = ACTIONS(1246), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1244), + [aux_sym_function_static_declaration_token1] = ACTIONS(1246), + [aux_sym_global_declaration_token1] = ACTIONS(1246), + [aux_sym_namespace_definition_token1] = ACTIONS(1246), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1246), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1246), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1246), + [anon_sym_BSLASH] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [aux_sym_trait_declaration_token1] = ACTIONS(1246), + [aux_sym_interface_declaration_token1] = ACTIONS(1246), + [aux_sym_enum_declaration_token1] = ACTIONS(1246), + [aux_sym_enum_case_token1] = ACTIONS(1246), + [aux_sym_class_declaration_token1] = ACTIONS(1246), + [aux_sym_final_modifier_token1] = ACTIONS(1246), + [aux_sym_abstract_modifier_token1] = ACTIONS(1246), + [aux_sym_readonly_modifier_token1] = ACTIONS(1246), + [aux_sym_visibility_modifier_token1] = ACTIONS(1246), + [aux_sym_visibility_modifier_token2] = ACTIONS(1246), + [aux_sym_visibility_modifier_token3] = ACTIONS(1246), + [aux_sym__arrow_function_header_token1] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1244), + [aux_sym_cast_type_token1] = ACTIONS(1246), + [aux_sym_echo_statement_token1] = ACTIONS(1246), + [anon_sym_unset] = ACTIONS(1246), + [aux_sym_declare_statement_token1] = ACTIONS(1246), + [aux_sym_declare_statement_token2] = ACTIONS(1246), + [sym_float] = ACTIONS(1246), + [aux_sym_try_statement_token1] = ACTIONS(1246), + [aux_sym_goto_statement_token1] = ACTIONS(1246), + [aux_sym_continue_statement_token1] = ACTIONS(1246), + [aux_sym_break_statement_token1] = ACTIONS(1246), + [sym_integer] = ACTIONS(1246), + [aux_sym_return_statement_token1] = ACTIONS(1246), + [aux_sym_throw_expression_token1] = ACTIONS(1246), + [aux_sym_while_statement_token1] = ACTIONS(1246), + [aux_sym_while_statement_token2] = ACTIONS(1246), + [aux_sym_do_statement_token1] = ACTIONS(1246), + [aux_sym_for_statement_token1] = ACTIONS(1246), + [aux_sym_for_statement_token2] = ACTIONS(1246), + [aux_sym_foreach_statement_token1] = ACTIONS(1246), + [aux_sym_foreach_statement_token2] = ACTIONS(1246), + [aux_sym_if_statement_token1] = ACTIONS(1246), + [aux_sym_if_statement_token2] = ACTIONS(1246), + [aux_sym_else_if_clause_token1] = ACTIONS(1246), + [aux_sym_else_clause_token1] = ACTIONS(1246), + [aux_sym_match_expression_token1] = ACTIONS(1246), + [aux_sym_match_default_expression_token1] = ACTIONS(1246), + [aux_sym_switch_statement_token1] = ACTIONS(1246), + [aux_sym_switch_block_token1] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_AT] = ACTIONS(1244), + [aux_sym_clone_expression_token1] = ACTIONS(1246), + [aux_sym_print_intrinsic_token1] = ACTIONS(1246), + [aux_sym_object_creation_expression_token1] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1244), + [aux_sym__list_destructing_token1] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_self] = ACTIONS(1246), + [anon_sym_parent] = ACTIONS(1246), + [aux_sym__argument_name_token1] = ACTIONS(1246), + [aux_sym__argument_name_token2] = ACTIONS(1246), + [anon_sym_POUND_LBRACK] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [aux_sym_encapsed_string_token1] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [aux_sym_string_token1] = ACTIONS(1244), + [anon_sym_LT_LT_LT] = ACTIONS(1244), + [anon_sym_BQUOTE] = ACTIONS(1244), + [anon_sym_DOLLAR] = ACTIONS(1244), + [aux_sym_yield_expression_token1] = ACTIONS(1246), + [aux_sym_include_expression_token1] = ACTIONS(1246), + [aux_sym_include_once_expression_token1] = ACTIONS(1246), + [aux_sym_require_expression_token1] = ACTIONS(1246), + [aux_sym_require_once_expression_token1] = ACTIONS(1246), [sym_comment] = ACTIONS(5), }, [480] = { [sym_text_interpolation] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1246), - [sym_name] = ACTIONS(1248), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1246), - [aux_sym_function_static_declaration_token1] = ACTIONS(1248), - [aux_sym_global_declaration_token1] = ACTIONS(1248), - [aux_sym_namespace_definition_token1] = ACTIONS(1248), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1248), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1248), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1248), - [anon_sym_BSLASH] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_RBRACE] = ACTIONS(1246), - [aux_sym_trait_declaration_token1] = ACTIONS(1248), - [aux_sym_interface_declaration_token1] = ACTIONS(1248), - [aux_sym_enum_declaration_token1] = ACTIONS(1248), - [aux_sym_enum_case_token1] = ACTIONS(1248), - [aux_sym_class_declaration_token1] = ACTIONS(1248), - [aux_sym_final_modifier_token1] = ACTIONS(1248), - [aux_sym_abstract_modifier_token1] = ACTIONS(1248), - [aux_sym_readonly_modifier_token1] = ACTIONS(1248), - [aux_sym_visibility_modifier_token1] = ACTIONS(1248), - [aux_sym_visibility_modifier_token2] = ACTIONS(1248), - [aux_sym_visibility_modifier_token3] = ACTIONS(1248), - [aux_sym__arrow_function_header_token1] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1246), - [aux_sym_cast_type_token1] = ACTIONS(1248), - [aux_sym_echo_statement_token1] = ACTIONS(1248), - [anon_sym_unset] = ACTIONS(1248), - [aux_sym_declare_statement_token1] = ACTIONS(1248), - [aux_sym_declare_statement_token2] = ACTIONS(1248), - [sym_float] = ACTIONS(1248), - [aux_sym_try_statement_token1] = ACTIONS(1248), - [aux_sym_goto_statement_token1] = ACTIONS(1248), - [aux_sym_continue_statement_token1] = ACTIONS(1248), - [aux_sym_break_statement_token1] = ACTIONS(1248), - [sym_integer] = ACTIONS(1248), - [aux_sym_return_statement_token1] = ACTIONS(1248), - [aux_sym_throw_expression_token1] = ACTIONS(1248), - [aux_sym_while_statement_token1] = ACTIONS(1248), - [aux_sym_while_statement_token2] = ACTIONS(1248), - [aux_sym_do_statement_token1] = ACTIONS(1248), - [aux_sym_for_statement_token1] = ACTIONS(1248), - [aux_sym_for_statement_token2] = ACTIONS(1248), - [aux_sym_foreach_statement_token1] = ACTIONS(1248), - [aux_sym_foreach_statement_token2] = ACTIONS(1248), - [aux_sym_if_statement_token1] = ACTIONS(1248), - [aux_sym_if_statement_token2] = ACTIONS(1248), - [aux_sym_else_if_clause_token1] = ACTIONS(1248), - [aux_sym_else_clause_token1] = ACTIONS(1248), - [aux_sym_match_expression_token1] = ACTIONS(1248), - [aux_sym_match_default_expression_token1] = ACTIONS(1248), - [aux_sym_switch_statement_token1] = ACTIONS(1248), - [aux_sym_switch_block_token1] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(1246), - [aux_sym_clone_expression_token1] = ACTIONS(1248), - [aux_sym_print_intrinsic_token1] = ACTIONS(1248), - [aux_sym_object_creation_expression_token1] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [aux_sym__list_destructing_token1] = ACTIONS(1248), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_self] = ACTIONS(1248), - [anon_sym_parent] = ACTIONS(1248), - [aux_sym__argument_name_token1] = ACTIONS(1248), - [aux_sym__argument_name_token2] = ACTIONS(1248), - [anon_sym_POUND_LBRACK] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [aux_sym_encapsed_string_token1] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [aux_sym_string_token1] = ACTIONS(1246), - [anon_sym_LT_LT_LT] = ACTIONS(1246), - [anon_sym_BQUOTE] = ACTIONS(1246), - [anon_sym_DOLLAR] = ACTIONS(1246), - [aux_sym_yield_expression_token1] = ACTIONS(1248), - [aux_sym_include_expression_token1] = ACTIONS(1248), - [aux_sym_include_once_expression_token1] = ACTIONS(1248), - [aux_sym_require_expression_token1] = ACTIONS(1248), - [aux_sym_require_once_expression_token1] = ACTIONS(1248), + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_name] = ACTIONS(1250), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1248), + [aux_sym_function_static_declaration_token1] = ACTIONS(1250), + [aux_sym_global_declaration_token1] = ACTIONS(1250), + [aux_sym_namespace_definition_token1] = ACTIONS(1250), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1250), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1250), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1250), + [anon_sym_BSLASH] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [aux_sym_trait_declaration_token1] = ACTIONS(1250), + [aux_sym_interface_declaration_token1] = ACTIONS(1250), + [aux_sym_enum_declaration_token1] = ACTIONS(1250), + [aux_sym_enum_case_token1] = ACTIONS(1250), + [aux_sym_class_declaration_token1] = ACTIONS(1250), + [aux_sym_final_modifier_token1] = ACTIONS(1250), + [aux_sym_abstract_modifier_token1] = ACTIONS(1250), + [aux_sym_readonly_modifier_token1] = ACTIONS(1250), + [aux_sym_visibility_modifier_token1] = ACTIONS(1250), + [aux_sym_visibility_modifier_token2] = ACTIONS(1250), + [aux_sym_visibility_modifier_token3] = ACTIONS(1250), + [aux_sym__arrow_function_header_token1] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1248), + [aux_sym_cast_type_token1] = ACTIONS(1250), + [aux_sym_echo_statement_token1] = ACTIONS(1250), + [anon_sym_unset] = ACTIONS(1250), + [aux_sym_declare_statement_token1] = ACTIONS(1250), + [aux_sym_declare_statement_token2] = ACTIONS(1250), + [sym_float] = ACTIONS(1250), + [aux_sym_try_statement_token1] = ACTIONS(1250), + [aux_sym_goto_statement_token1] = ACTIONS(1250), + [aux_sym_continue_statement_token1] = ACTIONS(1250), + [aux_sym_break_statement_token1] = ACTIONS(1250), + [sym_integer] = ACTIONS(1250), + [aux_sym_return_statement_token1] = ACTIONS(1250), + [aux_sym_throw_expression_token1] = ACTIONS(1250), + [aux_sym_while_statement_token1] = ACTIONS(1250), + [aux_sym_while_statement_token2] = ACTIONS(1250), + [aux_sym_do_statement_token1] = ACTIONS(1250), + [aux_sym_for_statement_token1] = ACTIONS(1250), + [aux_sym_for_statement_token2] = ACTIONS(1250), + [aux_sym_foreach_statement_token1] = ACTIONS(1250), + [aux_sym_foreach_statement_token2] = ACTIONS(1250), + [aux_sym_if_statement_token1] = ACTIONS(1250), + [aux_sym_if_statement_token2] = ACTIONS(1250), + [aux_sym_else_if_clause_token1] = ACTIONS(1250), + [aux_sym_else_clause_token1] = ACTIONS(1250), + [aux_sym_match_expression_token1] = ACTIONS(1250), + [aux_sym_match_default_expression_token1] = ACTIONS(1250), + [aux_sym_switch_statement_token1] = ACTIONS(1250), + [aux_sym_switch_block_token1] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(1248), + [aux_sym_clone_expression_token1] = ACTIONS(1250), + [aux_sym_print_intrinsic_token1] = ACTIONS(1250), + [aux_sym_object_creation_expression_token1] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [aux_sym__list_destructing_token1] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_self] = ACTIONS(1250), + [anon_sym_parent] = ACTIONS(1250), + [aux_sym__argument_name_token1] = ACTIONS(1250), + [aux_sym__argument_name_token2] = ACTIONS(1250), + [anon_sym_POUND_LBRACK] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [aux_sym_encapsed_string_token1] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [aux_sym_string_token1] = ACTIONS(1248), + [anon_sym_LT_LT_LT] = ACTIONS(1248), + [anon_sym_BQUOTE] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1248), + [aux_sym_yield_expression_token1] = ACTIONS(1250), + [aux_sym_include_expression_token1] = ACTIONS(1250), + [aux_sym_include_once_expression_token1] = ACTIONS(1250), + [aux_sym_require_expression_token1] = ACTIONS(1250), + [aux_sym_require_once_expression_token1] = ACTIONS(1250), [sym_comment] = ACTIONS(5), }, [481] = { [sym_text_interpolation] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(1250), - [sym_name] = ACTIONS(1252), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1250), - [aux_sym_function_static_declaration_token1] = ACTIONS(1252), - [aux_sym_global_declaration_token1] = ACTIONS(1252), - [aux_sym_namespace_definition_token1] = ACTIONS(1252), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1252), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1252), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [aux_sym_trait_declaration_token1] = ACTIONS(1252), - [aux_sym_interface_declaration_token1] = ACTIONS(1252), - [aux_sym_enum_declaration_token1] = ACTIONS(1252), - [aux_sym_enum_case_token1] = ACTIONS(1252), - [aux_sym_class_declaration_token1] = ACTIONS(1252), - [aux_sym_final_modifier_token1] = ACTIONS(1252), - [aux_sym_abstract_modifier_token1] = ACTIONS(1252), - [aux_sym_readonly_modifier_token1] = ACTIONS(1252), - [aux_sym_visibility_modifier_token1] = ACTIONS(1252), - [aux_sym_visibility_modifier_token2] = ACTIONS(1252), - [aux_sym_visibility_modifier_token3] = ACTIONS(1252), - [aux_sym__arrow_function_header_token1] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1250), - [aux_sym_cast_type_token1] = ACTIONS(1252), - [aux_sym_echo_statement_token1] = ACTIONS(1252), - [anon_sym_unset] = ACTIONS(1252), - [aux_sym_declare_statement_token1] = ACTIONS(1252), - [aux_sym_declare_statement_token2] = ACTIONS(1252), - [sym_float] = ACTIONS(1252), - [aux_sym_try_statement_token1] = ACTIONS(1252), - [aux_sym_goto_statement_token1] = ACTIONS(1252), - [aux_sym_continue_statement_token1] = ACTIONS(1252), - [aux_sym_break_statement_token1] = ACTIONS(1252), - [sym_integer] = ACTIONS(1252), - [aux_sym_return_statement_token1] = ACTIONS(1252), - [aux_sym_throw_expression_token1] = ACTIONS(1252), - [aux_sym_while_statement_token1] = ACTIONS(1252), - [aux_sym_while_statement_token2] = ACTIONS(1252), - [aux_sym_do_statement_token1] = ACTIONS(1252), - [aux_sym_for_statement_token1] = ACTIONS(1252), - [aux_sym_for_statement_token2] = ACTIONS(1252), - [aux_sym_foreach_statement_token1] = ACTIONS(1252), - [aux_sym_foreach_statement_token2] = ACTIONS(1252), - [aux_sym_if_statement_token1] = ACTIONS(1252), - [aux_sym_if_statement_token2] = ACTIONS(1252), - [aux_sym_else_if_clause_token1] = ACTIONS(1252), - [aux_sym_else_clause_token1] = ACTIONS(1252), - [aux_sym_match_expression_token1] = ACTIONS(1252), - [aux_sym_match_default_expression_token1] = ACTIONS(1252), - [aux_sym_switch_statement_token1] = ACTIONS(1252), - [aux_sym_switch_block_token1] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_AT] = ACTIONS(1250), - [aux_sym_clone_expression_token1] = ACTIONS(1252), - [aux_sym_print_intrinsic_token1] = ACTIONS(1252), - [aux_sym_object_creation_expression_token1] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [aux_sym__list_destructing_token1] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1250), - [anon_sym_self] = ACTIONS(1252), - [anon_sym_parent] = ACTIONS(1252), - [aux_sym__argument_name_token1] = ACTIONS(1252), - [aux_sym__argument_name_token2] = ACTIONS(1252), - [anon_sym_POUND_LBRACK] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [aux_sym_encapsed_string_token1] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [aux_sym_string_token1] = ACTIONS(1250), - [anon_sym_LT_LT_LT] = ACTIONS(1250), - [anon_sym_BQUOTE] = ACTIONS(1250), - [anon_sym_DOLLAR] = ACTIONS(1250), - [aux_sym_yield_expression_token1] = ACTIONS(1252), - [aux_sym_include_expression_token1] = ACTIONS(1252), - [aux_sym_include_once_expression_token1] = ACTIONS(1252), - [aux_sym_require_expression_token1] = ACTIONS(1252), - [aux_sym_require_once_expression_token1] = ACTIONS(1252), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_name] = ACTIONS(1254), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1252), + [aux_sym_function_static_declaration_token1] = ACTIONS(1254), + [aux_sym_global_declaration_token1] = ACTIONS(1254), + [aux_sym_namespace_definition_token1] = ACTIONS(1254), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1254), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1254), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1254), + [anon_sym_BSLASH] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [aux_sym_trait_declaration_token1] = ACTIONS(1254), + [aux_sym_interface_declaration_token1] = ACTIONS(1254), + [aux_sym_enum_declaration_token1] = ACTIONS(1254), + [aux_sym_enum_case_token1] = ACTIONS(1254), + [aux_sym_class_declaration_token1] = ACTIONS(1254), + [aux_sym_final_modifier_token1] = ACTIONS(1254), + [aux_sym_abstract_modifier_token1] = ACTIONS(1254), + [aux_sym_readonly_modifier_token1] = ACTIONS(1254), + [aux_sym_visibility_modifier_token1] = ACTIONS(1254), + [aux_sym_visibility_modifier_token2] = ACTIONS(1254), + [aux_sym_visibility_modifier_token3] = ACTIONS(1254), + [aux_sym__arrow_function_header_token1] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1252), + [aux_sym_cast_type_token1] = ACTIONS(1254), + [aux_sym_echo_statement_token1] = ACTIONS(1254), + [anon_sym_unset] = ACTIONS(1254), + [aux_sym_declare_statement_token1] = ACTIONS(1254), + [aux_sym_declare_statement_token2] = ACTIONS(1254), + [sym_float] = ACTIONS(1254), + [aux_sym_try_statement_token1] = ACTIONS(1254), + [aux_sym_goto_statement_token1] = ACTIONS(1254), + [aux_sym_continue_statement_token1] = ACTIONS(1254), + [aux_sym_break_statement_token1] = ACTIONS(1254), + [sym_integer] = ACTIONS(1254), + [aux_sym_return_statement_token1] = ACTIONS(1254), + [aux_sym_throw_expression_token1] = ACTIONS(1254), + [aux_sym_while_statement_token1] = ACTIONS(1254), + [aux_sym_while_statement_token2] = ACTIONS(1254), + [aux_sym_do_statement_token1] = ACTIONS(1254), + [aux_sym_for_statement_token1] = ACTIONS(1254), + [aux_sym_for_statement_token2] = ACTIONS(1254), + [aux_sym_foreach_statement_token1] = ACTIONS(1254), + [aux_sym_foreach_statement_token2] = ACTIONS(1254), + [aux_sym_if_statement_token1] = ACTIONS(1254), + [aux_sym_if_statement_token2] = ACTIONS(1254), + [aux_sym_else_if_clause_token1] = ACTIONS(1254), + [aux_sym_else_clause_token1] = ACTIONS(1254), + [aux_sym_match_expression_token1] = ACTIONS(1254), + [aux_sym_match_default_expression_token1] = ACTIONS(1254), + [aux_sym_switch_statement_token1] = ACTIONS(1254), + [aux_sym_switch_block_token1] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_AT] = ACTIONS(1252), + [aux_sym_clone_expression_token1] = ACTIONS(1254), + [aux_sym_print_intrinsic_token1] = ACTIONS(1254), + [aux_sym_object_creation_expression_token1] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [aux_sym__list_destructing_token1] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_self] = ACTIONS(1254), + [anon_sym_parent] = ACTIONS(1254), + [aux_sym__argument_name_token1] = ACTIONS(1254), + [aux_sym__argument_name_token2] = ACTIONS(1254), + [anon_sym_POUND_LBRACK] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [aux_sym_encapsed_string_token1] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [aux_sym_string_token1] = ACTIONS(1252), + [anon_sym_LT_LT_LT] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1252), + [aux_sym_yield_expression_token1] = ACTIONS(1254), + [aux_sym_include_expression_token1] = ACTIONS(1254), + [aux_sym_include_once_expression_token1] = ACTIONS(1254), + [aux_sym_require_expression_token1] = ACTIONS(1254), + [aux_sym_require_once_expression_token1] = ACTIONS(1254), [sym_comment] = ACTIONS(5), }, [482] = { [sym_text_interpolation] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(1254), - [sym_name] = ACTIONS(1256), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1254), - [aux_sym_function_static_declaration_token1] = ACTIONS(1256), - [aux_sym_global_declaration_token1] = ACTIONS(1256), - [aux_sym_namespace_definition_token1] = ACTIONS(1256), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1256), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1256), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1256), - [anon_sym_BSLASH] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [aux_sym_trait_declaration_token1] = ACTIONS(1256), - [aux_sym_interface_declaration_token1] = ACTIONS(1256), - [aux_sym_enum_declaration_token1] = ACTIONS(1256), - [aux_sym_enum_case_token1] = ACTIONS(1256), - [aux_sym_class_declaration_token1] = ACTIONS(1256), - [aux_sym_final_modifier_token1] = ACTIONS(1256), - [aux_sym_abstract_modifier_token1] = ACTIONS(1256), - [aux_sym_readonly_modifier_token1] = ACTIONS(1256), - [aux_sym_visibility_modifier_token1] = ACTIONS(1256), - [aux_sym_visibility_modifier_token2] = ACTIONS(1256), - [aux_sym_visibility_modifier_token3] = ACTIONS(1256), - [aux_sym__arrow_function_header_token1] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1254), - [aux_sym_cast_type_token1] = ACTIONS(1256), - [aux_sym_echo_statement_token1] = ACTIONS(1256), - [anon_sym_unset] = ACTIONS(1256), - [aux_sym_declare_statement_token1] = ACTIONS(1256), - [aux_sym_declare_statement_token2] = ACTIONS(1256), - [sym_float] = ACTIONS(1256), - [aux_sym_try_statement_token1] = ACTIONS(1256), - [aux_sym_goto_statement_token1] = ACTIONS(1256), - [aux_sym_continue_statement_token1] = ACTIONS(1256), - [aux_sym_break_statement_token1] = ACTIONS(1256), - [sym_integer] = ACTIONS(1256), - [aux_sym_return_statement_token1] = ACTIONS(1256), - [aux_sym_throw_expression_token1] = ACTIONS(1256), - [aux_sym_while_statement_token1] = ACTIONS(1256), - [aux_sym_while_statement_token2] = ACTIONS(1256), - [aux_sym_do_statement_token1] = ACTIONS(1256), - [aux_sym_for_statement_token1] = ACTIONS(1256), - [aux_sym_for_statement_token2] = ACTIONS(1256), - [aux_sym_foreach_statement_token1] = ACTIONS(1256), - [aux_sym_foreach_statement_token2] = ACTIONS(1256), - [aux_sym_if_statement_token1] = ACTIONS(1256), - [aux_sym_if_statement_token2] = ACTIONS(1256), - [aux_sym_else_if_clause_token1] = ACTIONS(1256), - [aux_sym_else_clause_token1] = ACTIONS(1256), - [aux_sym_match_expression_token1] = ACTIONS(1256), - [aux_sym_match_default_expression_token1] = ACTIONS(1256), - [aux_sym_switch_statement_token1] = ACTIONS(1256), - [aux_sym_switch_block_token1] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(1254), - [aux_sym_clone_expression_token1] = ACTIONS(1256), - [aux_sym_print_intrinsic_token1] = ACTIONS(1256), - [aux_sym_object_creation_expression_token1] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [aux_sym__list_destructing_token1] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_self] = ACTIONS(1256), - [anon_sym_parent] = ACTIONS(1256), - [aux_sym__argument_name_token1] = ACTIONS(1256), - [aux_sym__argument_name_token2] = ACTIONS(1256), - [anon_sym_POUND_LBRACK] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [aux_sym_encapsed_string_token1] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [aux_sym_string_token1] = ACTIONS(1254), - [anon_sym_LT_LT_LT] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1254), - [anon_sym_DOLLAR] = ACTIONS(1254), - [aux_sym_yield_expression_token1] = ACTIONS(1256), - [aux_sym_include_expression_token1] = ACTIONS(1256), - [aux_sym_include_once_expression_token1] = ACTIONS(1256), - [aux_sym_require_expression_token1] = ACTIONS(1256), - [aux_sym_require_once_expression_token1] = ACTIONS(1256), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_name] = ACTIONS(1258), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1256), + [aux_sym_function_static_declaration_token1] = ACTIONS(1258), + [aux_sym_global_declaration_token1] = ACTIONS(1258), + [aux_sym_namespace_definition_token1] = ACTIONS(1258), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1258), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1258), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1258), + [anon_sym_BSLASH] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [aux_sym_trait_declaration_token1] = ACTIONS(1258), + [aux_sym_interface_declaration_token1] = ACTIONS(1258), + [aux_sym_enum_declaration_token1] = ACTIONS(1258), + [aux_sym_enum_case_token1] = ACTIONS(1258), + [aux_sym_class_declaration_token1] = ACTIONS(1258), + [aux_sym_final_modifier_token1] = ACTIONS(1258), + [aux_sym_abstract_modifier_token1] = ACTIONS(1258), + [aux_sym_readonly_modifier_token1] = ACTIONS(1258), + [aux_sym_visibility_modifier_token1] = ACTIONS(1258), + [aux_sym_visibility_modifier_token2] = ACTIONS(1258), + [aux_sym_visibility_modifier_token3] = ACTIONS(1258), + [aux_sym__arrow_function_header_token1] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1256), + [aux_sym_cast_type_token1] = ACTIONS(1258), + [aux_sym_echo_statement_token1] = ACTIONS(1258), + [anon_sym_unset] = ACTIONS(1258), + [aux_sym_declare_statement_token1] = ACTIONS(1258), + [aux_sym_declare_statement_token2] = ACTIONS(1258), + [sym_float] = ACTIONS(1258), + [aux_sym_try_statement_token1] = ACTIONS(1258), + [aux_sym_goto_statement_token1] = ACTIONS(1258), + [aux_sym_continue_statement_token1] = ACTIONS(1258), + [aux_sym_break_statement_token1] = ACTIONS(1258), + [sym_integer] = ACTIONS(1258), + [aux_sym_return_statement_token1] = ACTIONS(1258), + [aux_sym_throw_expression_token1] = ACTIONS(1258), + [aux_sym_while_statement_token1] = ACTIONS(1258), + [aux_sym_while_statement_token2] = ACTIONS(1258), + [aux_sym_do_statement_token1] = ACTIONS(1258), + [aux_sym_for_statement_token1] = ACTIONS(1258), + [aux_sym_for_statement_token2] = ACTIONS(1258), + [aux_sym_foreach_statement_token1] = ACTIONS(1258), + [aux_sym_foreach_statement_token2] = ACTIONS(1258), + [aux_sym_if_statement_token1] = ACTIONS(1258), + [aux_sym_if_statement_token2] = ACTIONS(1258), + [aux_sym_else_if_clause_token1] = ACTIONS(1258), + [aux_sym_else_clause_token1] = ACTIONS(1258), + [aux_sym_match_expression_token1] = ACTIONS(1258), + [aux_sym_match_default_expression_token1] = ACTIONS(1258), + [aux_sym_switch_statement_token1] = ACTIONS(1258), + [aux_sym_switch_block_token1] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_AT] = ACTIONS(1256), + [aux_sym_clone_expression_token1] = ACTIONS(1258), + [aux_sym_print_intrinsic_token1] = ACTIONS(1258), + [aux_sym_object_creation_expression_token1] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [aux_sym__list_destructing_token1] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_self] = ACTIONS(1258), + [anon_sym_parent] = ACTIONS(1258), + [aux_sym__argument_name_token1] = ACTIONS(1258), + [aux_sym__argument_name_token2] = ACTIONS(1258), + [anon_sym_POUND_LBRACK] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [aux_sym_encapsed_string_token1] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1256), + [aux_sym_string_token1] = ACTIONS(1256), + [anon_sym_LT_LT_LT] = ACTIONS(1256), + [anon_sym_BQUOTE] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1256), + [aux_sym_yield_expression_token1] = ACTIONS(1258), + [aux_sym_include_expression_token1] = ACTIONS(1258), + [aux_sym_include_once_expression_token1] = ACTIONS(1258), + [aux_sym_require_expression_token1] = ACTIONS(1258), + [aux_sym_require_once_expression_token1] = ACTIONS(1258), [sym_comment] = ACTIONS(5), }, [483] = { [sym_text_interpolation] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_name] = ACTIONS(1260), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1258), - [aux_sym_function_static_declaration_token1] = ACTIONS(1260), - [aux_sym_global_declaration_token1] = ACTIONS(1260), - [aux_sym_namespace_definition_token1] = ACTIONS(1260), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1260), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1260), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1260), - [anon_sym_BSLASH] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [aux_sym_trait_declaration_token1] = ACTIONS(1260), - [aux_sym_interface_declaration_token1] = ACTIONS(1260), - [aux_sym_enum_declaration_token1] = ACTIONS(1260), - [aux_sym_enum_case_token1] = ACTIONS(1260), - [aux_sym_class_declaration_token1] = ACTIONS(1260), - [aux_sym_final_modifier_token1] = ACTIONS(1260), - [aux_sym_abstract_modifier_token1] = ACTIONS(1260), - [aux_sym_readonly_modifier_token1] = ACTIONS(1260), - [aux_sym_visibility_modifier_token1] = ACTIONS(1260), - [aux_sym_visibility_modifier_token2] = ACTIONS(1260), - [aux_sym_visibility_modifier_token3] = ACTIONS(1260), - [aux_sym__arrow_function_header_token1] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1258), - [aux_sym_cast_type_token1] = ACTIONS(1260), - [aux_sym_echo_statement_token1] = ACTIONS(1260), - [anon_sym_unset] = ACTIONS(1260), - [aux_sym_declare_statement_token1] = ACTIONS(1260), - [aux_sym_declare_statement_token2] = ACTIONS(1260), - [sym_float] = ACTIONS(1260), - [aux_sym_try_statement_token1] = ACTIONS(1260), - [aux_sym_goto_statement_token1] = ACTIONS(1260), - [aux_sym_continue_statement_token1] = ACTIONS(1260), - [aux_sym_break_statement_token1] = ACTIONS(1260), - [sym_integer] = ACTIONS(1260), - [aux_sym_return_statement_token1] = ACTIONS(1260), - [aux_sym_throw_expression_token1] = ACTIONS(1260), - [aux_sym_while_statement_token1] = ACTIONS(1260), - [aux_sym_while_statement_token2] = ACTIONS(1260), - [aux_sym_do_statement_token1] = ACTIONS(1260), - [aux_sym_for_statement_token1] = ACTIONS(1260), - [aux_sym_for_statement_token2] = ACTIONS(1260), - [aux_sym_foreach_statement_token1] = ACTIONS(1260), - [aux_sym_foreach_statement_token2] = ACTIONS(1260), - [aux_sym_if_statement_token1] = ACTIONS(1260), - [aux_sym_if_statement_token2] = ACTIONS(1260), - [aux_sym_else_if_clause_token1] = ACTIONS(1260), - [aux_sym_else_clause_token1] = ACTIONS(1260), - [aux_sym_match_expression_token1] = ACTIONS(1260), - [aux_sym_match_default_expression_token1] = ACTIONS(1260), - [aux_sym_switch_statement_token1] = ACTIONS(1260), - [aux_sym_switch_block_token1] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_AT] = ACTIONS(1258), - [aux_sym_clone_expression_token1] = ACTIONS(1260), - [aux_sym_print_intrinsic_token1] = ACTIONS(1260), - [aux_sym_object_creation_expression_token1] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [aux_sym__list_destructing_token1] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_self] = ACTIONS(1260), - [anon_sym_parent] = ACTIONS(1260), - [aux_sym__argument_name_token1] = ACTIONS(1260), - [aux_sym__argument_name_token2] = ACTIONS(1260), - [anon_sym_POUND_LBRACK] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [aux_sym_encapsed_string_token1] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [aux_sym_string_token1] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1258), - [aux_sym_yield_expression_token1] = ACTIONS(1260), - [aux_sym_include_expression_token1] = ACTIONS(1260), - [aux_sym_include_once_expression_token1] = ACTIONS(1260), - [aux_sym_require_expression_token1] = ACTIONS(1260), - [aux_sym_require_once_expression_token1] = ACTIONS(1260), + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_name] = ACTIONS(1262), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1260), + [aux_sym_function_static_declaration_token1] = ACTIONS(1262), + [aux_sym_global_declaration_token1] = ACTIONS(1262), + [aux_sym_namespace_definition_token1] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1262), + [anon_sym_BSLASH] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [aux_sym_trait_declaration_token1] = ACTIONS(1262), + [aux_sym_interface_declaration_token1] = ACTIONS(1262), + [aux_sym_enum_declaration_token1] = ACTIONS(1262), + [aux_sym_enum_case_token1] = ACTIONS(1262), + [aux_sym_class_declaration_token1] = ACTIONS(1262), + [aux_sym_final_modifier_token1] = ACTIONS(1262), + [aux_sym_abstract_modifier_token1] = ACTIONS(1262), + [aux_sym_readonly_modifier_token1] = ACTIONS(1262), + [aux_sym_visibility_modifier_token1] = ACTIONS(1262), + [aux_sym_visibility_modifier_token2] = ACTIONS(1262), + [aux_sym_visibility_modifier_token3] = ACTIONS(1262), + [aux_sym__arrow_function_header_token1] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1260), + [aux_sym_cast_type_token1] = ACTIONS(1262), + [aux_sym_echo_statement_token1] = ACTIONS(1262), + [anon_sym_unset] = ACTIONS(1262), + [aux_sym_declare_statement_token1] = ACTIONS(1262), + [aux_sym_declare_statement_token2] = ACTIONS(1262), + [sym_float] = ACTIONS(1262), + [aux_sym_try_statement_token1] = ACTIONS(1262), + [aux_sym_goto_statement_token1] = ACTIONS(1262), + [aux_sym_continue_statement_token1] = ACTIONS(1262), + [aux_sym_break_statement_token1] = ACTIONS(1262), + [sym_integer] = ACTIONS(1262), + [aux_sym_return_statement_token1] = ACTIONS(1262), + [aux_sym_throw_expression_token1] = ACTIONS(1262), + [aux_sym_while_statement_token1] = ACTIONS(1262), + [aux_sym_while_statement_token2] = ACTIONS(1262), + [aux_sym_do_statement_token1] = ACTIONS(1262), + [aux_sym_for_statement_token1] = ACTIONS(1262), + [aux_sym_for_statement_token2] = ACTIONS(1262), + [aux_sym_foreach_statement_token1] = ACTIONS(1262), + [aux_sym_foreach_statement_token2] = ACTIONS(1262), + [aux_sym_if_statement_token1] = ACTIONS(1262), + [aux_sym_if_statement_token2] = ACTIONS(1262), + [aux_sym_else_if_clause_token1] = ACTIONS(1262), + [aux_sym_else_clause_token1] = ACTIONS(1262), + [aux_sym_match_expression_token1] = ACTIONS(1262), + [aux_sym_match_default_expression_token1] = ACTIONS(1262), + [aux_sym_switch_statement_token1] = ACTIONS(1262), + [aux_sym_switch_block_token1] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_AT] = ACTIONS(1260), + [aux_sym_clone_expression_token1] = ACTIONS(1262), + [aux_sym_print_intrinsic_token1] = ACTIONS(1262), + [aux_sym_object_creation_expression_token1] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [aux_sym__list_destructing_token1] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_self] = ACTIONS(1262), + [anon_sym_parent] = ACTIONS(1262), + [aux_sym__argument_name_token1] = ACTIONS(1262), + [aux_sym__argument_name_token2] = ACTIONS(1262), + [anon_sym_POUND_LBRACK] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [aux_sym_encapsed_string_token1] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [aux_sym_string_token1] = ACTIONS(1260), + [anon_sym_LT_LT_LT] = ACTIONS(1260), + [anon_sym_BQUOTE] = ACTIONS(1260), + [anon_sym_DOLLAR] = ACTIONS(1260), + [aux_sym_yield_expression_token1] = ACTIONS(1262), + [aux_sym_include_expression_token1] = ACTIONS(1262), + [aux_sym_include_once_expression_token1] = ACTIONS(1262), + [aux_sym_require_expression_token1] = ACTIONS(1262), + [aux_sym_require_once_expression_token1] = ACTIONS(1262), [sym_comment] = ACTIONS(5), }, [484] = { [sym_text_interpolation] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_name] = ACTIONS(1260), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1258), - [aux_sym_function_static_declaration_token1] = ACTIONS(1260), - [aux_sym_global_declaration_token1] = ACTIONS(1260), - [aux_sym_namespace_definition_token1] = ACTIONS(1260), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1260), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1260), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1260), - [anon_sym_BSLASH] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [aux_sym_trait_declaration_token1] = ACTIONS(1260), - [aux_sym_interface_declaration_token1] = ACTIONS(1260), - [aux_sym_enum_declaration_token1] = ACTIONS(1260), - [aux_sym_enum_case_token1] = ACTIONS(1260), - [aux_sym_class_declaration_token1] = ACTIONS(1260), - [aux_sym_final_modifier_token1] = ACTIONS(1260), - [aux_sym_abstract_modifier_token1] = ACTIONS(1260), - [aux_sym_readonly_modifier_token1] = ACTIONS(1260), - [aux_sym_visibility_modifier_token1] = ACTIONS(1260), - [aux_sym_visibility_modifier_token2] = ACTIONS(1260), - [aux_sym_visibility_modifier_token3] = ACTIONS(1260), - [aux_sym__arrow_function_header_token1] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1258), - [aux_sym_cast_type_token1] = ACTIONS(1260), - [aux_sym_echo_statement_token1] = ACTIONS(1260), - [anon_sym_unset] = ACTIONS(1260), - [aux_sym_declare_statement_token1] = ACTIONS(1260), - [aux_sym_declare_statement_token2] = ACTIONS(1260), - [sym_float] = ACTIONS(1260), - [aux_sym_try_statement_token1] = ACTIONS(1260), - [aux_sym_goto_statement_token1] = ACTIONS(1260), - [aux_sym_continue_statement_token1] = ACTIONS(1260), - [aux_sym_break_statement_token1] = ACTIONS(1260), - [sym_integer] = ACTIONS(1260), - [aux_sym_return_statement_token1] = ACTIONS(1260), - [aux_sym_throw_expression_token1] = ACTIONS(1260), - [aux_sym_while_statement_token1] = ACTIONS(1260), - [aux_sym_while_statement_token2] = ACTIONS(1260), - [aux_sym_do_statement_token1] = ACTIONS(1260), - [aux_sym_for_statement_token1] = ACTIONS(1260), - [aux_sym_for_statement_token2] = ACTIONS(1260), - [aux_sym_foreach_statement_token1] = ACTIONS(1260), - [aux_sym_foreach_statement_token2] = ACTIONS(1260), - [aux_sym_if_statement_token1] = ACTIONS(1260), - [aux_sym_if_statement_token2] = ACTIONS(1260), - [aux_sym_else_if_clause_token1] = ACTIONS(1260), - [aux_sym_else_clause_token1] = ACTIONS(1260), - [aux_sym_match_expression_token1] = ACTIONS(1260), - [aux_sym_match_default_expression_token1] = ACTIONS(1260), - [aux_sym_switch_statement_token1] = ACTIONS(1260), - [aux_sym_switch_block_token1] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_AT] = ACTIONS(1258), - [aux_sym_clone_expression_token1] = ACTIONS(1260), - [aux_sym_print_intrinsic_token1] = ACTIONS(1260), - [aux_sym_object_creation_expression_token1] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [aux_sym__list_destructing_token1] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_self] = ACTIONS(1260), - [anon_sym_parent] = ACTIONS(1260), - [aux_sym__argument_name_token1] = ACTIONS(1260), - [aux_sym__argument_name_token2] = ACTIONS(1260), - [anon_sym_POUND_LBRACK] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [aux_sym_encapsed_string_token1] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [aux_sym_string_token1] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1258), - [aux_sym_yield_expression_token1] = ACTIONS(1260), - [aux_sym_include_expression_token1] = ACTIONS(1260), - [aux_sym_include_once_expression_token1] = ACTIONS(1260), - [aux_sym_require_expression_token1] = ACTIONS(1260), - [aux_sym_require_once_expression_token1] = ACTIONS(1260), + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_name] = ACTIONS(1262), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1260), + [aux_sym_function_static_declaration_token1] = ACTIONS(1262), + [aux_sym_global_declaration_token1] = ACTIONS(1262), + [aux_sym_namespace_definition_token1] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1262), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1262), + [anon_sym_BSLASH] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [aux_sym_trait_declaration_token1] = ACTIONS(1262), + [aux_sym_interface_declaration_token1] = ACTIONS(1262), + [aux_sym_enum_declaration_token1] = ACTIONS(1262), + [aux_sym_enum_case_token1] = ACTIONS(1262), + [aux_sym_class_declaration_token1] = ACTIONS(1262), + [aux_sym_final_modifier_token1] = ACTIONS(1262), + [aux_sym_abstract_modifier_token1] = ACTIONS(1262), + [aux_sym_readonly_modifier_token1] = ACTIONS(1262), + [aux_sym_visibility_modifier_token1] = ACTIONS(1262), + [aux_sym_visibility_modifier_token2] = ACTIONS(1262), + [aux_sym_visibility_modifier_token3] = ACTIONS(1262), + [aux_sym__arrow_function_header_token1] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1260), + [aux_sym_cast_type_token1] = ACTIONS(1262), + [aux_sym_echo_statement_token1] = ACTIONS(1262), + [anon_sym_unset] = ACTIONS(1262), + [aux_sym_declare_statement_token1] = ACTIONS(1262), + [aux_sym_declare_statement_token2] = ACTIONS(1262), + [sym_float] = ACTIONS(1262), + [aux_sym_try_statement_token1] = ACTIONS(1262), + [aux_sym_goto_statement_token1] = ACTIONS(1262), + [aux_sym_continue_statement_token1] = ACTIONS(1262), + [aux_sym_break_statement_token1] = ACTIONS(1262), + [sym_integer] = ACTIONS(1262), + [aux_sym_return_statement_token1] = ACTIONS(1262), + [aux_sym_throw_expression_token1] = ACTIONS(1262), + [aux_sym_while_statement_token1] = ACTIONS(1262), + [aux_sym_while_statement_token2] = ACTIONS(1262), + [aux_sym_do_statement_token1] = ACTIONS(1262), + [aux_sym_for_statement_token1] = ACTIONS(1262), + [aux_sym_for_statement_token2] = ACTIONS(1262), + [aux_sym_foreach_statement_token1] = ACTIONS(1262), + [aux_sym_foreach_statement_token2] = ACTIONS(1262), + [aux_sym_if_statement_token1] = ACTIONS(1262), + [aux_sym_if_statement_token2] = ACTIONS(1262), + [aux_sym_else_if_clause_token1] = ACTIONS(1262), + [aux_sym_else_clause_token1] = ACTIONS(1262), + [aux_sym_match_expression_token1] = ACTIONS(1262), + [aux_sym_match_default_expression_token1] = ACTIONS(1262), + [aux_sym_switch_statement_token1] = ACTIONS(1262), + [aux_sym_switch_block_token1] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_AT] = ACTIONS(1260), + [aux_sym_clone_expression_token1] = ACTIONS(1262), + [aux_sym_print_intrinsic_token1] = ACTIONS(1262), + [aux_sym_object_creation_expression_token1] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1260), + [aux_sym__list_destructing_token1] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_self] = ACTIONS(1262), + [anon_sym_parent] = ACTIONS(1262), + [aux_sym__argument_name_token1] = ACTIONS(1262), + [aux_sym__argument_name_token2] = ACTIONS(1262), + [anon_sym_POUND_LBRACK] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [aux_sym_encapsed_string_token1] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(1260), + [aux_sym_string_token1] = ACTIONS(1260), + [anon_sym_LT_LT_LT] = ACTIONS(1260), + [anon_sym_BQUOTE] = ACTIONS(1260), + [anon_sym_DOLLAR] = ACTIONS(1260), + [aux_sym_yield_expression_token1] = ACTIONS(1262), + [aux_sym_include_expression_token1] = ACTIONS(1262), + [aux_sym_include_once_expression_token1] = ACTIONS(1262), + [aux_sym_require_expression_token1] = ACTIONS(1262), + [aux_sym_require_once_expression_token1] = ACTIONS(1262), [sym_comment] = ACTIONS(5), }, [485] = { [sym_text_interpolation] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(1262), - [sym_name] = ACTIONS(1264), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1262), - [aux_sym_function_static_declaration_token1] = ACTIONS(1264), - [aux_sym_global_declaration_token1] = ACTIONS(1264), - [aux_sym_namespace_definition_token1] = ACTIONS(1264), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1264), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1264), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1264), - [anon_sym_BSLASH] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [aux_sym_trait_declaration_token1] = ACTIONS(1264), - [aux_sym_interface_declaration_token1] = ACTIONS(1264), - [aux_sym_enum_declaration_token1] = ACTIONS(1264), - [aux_sym_enum_case_token1] = ACTIONS(1264), - [aux_sym_class_declaration_token1] = ACTIONS(1264), - [aux_sym_final_modifier_token1] = ACTIONS(1264), - [aux_sym_abstract_modifier_token1] = ACTIONS(1264), - [aux_sym_readonly_modifier_token1] = ACTIONS(1264), - [aux_sym_visibility_modifier_token1] = ACTIONS(1264), - [aux_sym_visibility_modifier_token2] = ACTIONS(1264), - [aux_sym_visibility_modifier_token3] = ACTIONS(1264), - [aux_sym__arrow_function_header_token1] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1262), - [aux_sym_cast_type_token1] = ACTIONS(1264), - [aux_sym_echo_statement_token1] = ACTIONS(1264), - [anon_sym_unset] = ACTIONS(1264), - [aux_sym_declare_statement_token1] = ACTIONS(1264), - [aux_sym_declare_statement_token2] = ACTIONS(1264), - [sym_float] = ACTIONS(1264), - [aux_sym_try_statement_token1] = ACTIONS(1264), - [aux_sym_goto_statement_token1] = ACTIONS(1264), - [aux_sym_continue_statement_token1] = ACTIONS(1264), - [aux_sym_break_statement_token1] = ACTIONS(1264), - [sym_integer] = ACTIONS(1264), - [aux_sym_return_statement_token1] = ACTIONS(1264), - [aux_sym_throw_expression_token1] = ACTIONS(1264), - [aux_sym_while_statement_token1] = ACTIONS(1264), - [aux_sym_while_statement_token2] = ACTIONS(1264), - [aux_sym_do_statement_token1] = ACTIONS(1264), - [aux_sym_for_statement_token1] = ACTIONS(1264), - [aux_sym_for_statement_token2] = ACTIONS(1264), - [aux_sym_foreach_statement_token1] = ACTIONS(1264), - [aux_sym_foreach_statement_token2] = ACTIONS(1264), - [aux_sym_if_statement_token1] = ACTIONS(1264), - [aux_sym_if_statement_token2] = ACTIONS(1264), - [aux_sym_else_if_clause_token1] = ACTIONS(1264), - [aux_sym_else_clause_token1] = ACTIONS(1264), - [aux_sym_match_expression_token1] = ACTIONS(1264), - [aux_sym_match_default_expression_token1] = ACTIONS(1264), - [aux_sym_switch_statement_token1] = ACTIONS(1264), - [aux_sym_switch_block_token1] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(1262), - [aux_sym_clone_expression_token1] = ACTIONS(1264), - [aux_sym_print_intrinsic_token1] = ACTIONS(1264), - [aux_sym_object_creation_expression_token1] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [aux_sym__list_destructing_token1] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_self] = ACTIONS(1264), - [anon_sym_parent] = ACTIONS(1264), - [aux_sym__argument_name_token1] = ACTIONS(1264), - [aux_sym__argument_name_token2] = ACTIONS(1264), - [anon_sym_POUND_LBRACK] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [aux_sym_encapsed_string_token1] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [aux_sym_string_token1] = ACTIONS(1262), - [anon_sym_LT_LT_LT] = ACTIONS(1262), - [anon_sym_BQUOTE] = ACTIONS(1262), - [anon_sym_DOLLAR] = ACTIONS(1262), - [aux_sym_yield_expression_token1] = ACTIONS(1264), - [aux_sym_include_expression_token1] = ACTIONS(1264), - [aux_sym_include_once_expression_token1] = ACTIONS(1264), - [aux_sym_require_expression_token1] = ACTIONS(1264), - [aux_sym_require_once_expression_token1] = ACTIONS(1264), + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_name] = ACTIONS(1266), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1264), + [aux_sym_function_static_declaration_token1] = ACTIONS(1266), + [aux_sym_global_declaration_token1] = ACTIONS(1266), + [aux_sym_namespace_definition_token1] = ACTIONS(1266), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1266), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1266), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1266), + [anon_sym_BSLASH] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [aux_sym_trait_declaration_token1] = ACTIONS(1266), + [aux_sym_interface_declaration_token1] = ACTIONS(1266), + [aux_sym_enum_declaration_token1] = ACTIONS(1266), + [aux_sym_enum_case_token1] = ACTIONS(1266), + [aux_sym_class_declaration_token1] = ACTIONS(1266), + [aux_sym_final_modifier_token1] = ACTIONS(1266), + [aux_sym_abstract_modifier_token1] = ACTIONS(1266), + [aux_sym_readonly_modifier_token1] = ACTIONS(1266), + [aux_sym_visibility_modifier_token1] = ACTIONS(1266), + [aux_sym_visibility_modifier_token2] = ACTIONS(1266), + [aux_sym_visibility_modifier_token3] = ACTIONS(1266), + [aux_sym__arrow_function_header_token1] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [aux_sym_cast_type_token1] = ACTIONS(1266), + [aux_sym_echo_statement_token1] = ACTIONS(1266), + [anon_sym_unset] = ACTIONS(1266), + [aux_sym_declare_statement_token1] = ACTIONS(1266), + [aux_sym_declare_statement_token2] = ACTIONS(1266), + [sym_float] = ACTIONS(1266), + [aux_sym_try_statement_token1] = ACTIONS(1266), + [aux_sym_goto_statement_token1] = ACTIONS(1266), + [aux_sym_continue_statement_token1] = ACTIONS(1266), + [aux_sym_break_statement_token1] = ACTIONS(1266), + [sym_integer] = ACTIONS(1266), + [aux_sym_return_statement_token1] = ACTIONS(1266), + [aux_sym_throw_expression_token1] = ACTIONS(1266), + [aux_sym_while_statement_token1] = ACTIONS(1266), + [aux_sym_while_statement_token2] = ACTIONS(1266), + [aux_sym_do_statement_token1] = ACTIONS(1266), + [aux_sym_for_statement_token1] = ACTIONS(1266), + [aux_sym_for_statement_token2] = ACTIONS(1266), + [aux_sym_foreach_statement_token1] = ACTIONS(1266), + [aux_sym_foreach_statement_token2] = ACTIONS(1266), + [aux_sym_if_statement_token1] = ACTIONS(1266), + [aux_sym_if_statement_token2] = ACTIONS(1266), + [aux_sym_else_if_clause_token1] = ACTIONS(1266), + [aux_sym_else_clause_token1] = ACTIONS(1266), + [aux_sym_match_expression_token1] = ACTIONS(1266), + [aux_sym_match_default_expression_token1] = ACTIONS(1266), + [aux_sym_switch_statement_token1] = ACTIONS(1266), + [aux_sym_switch_block_token1] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AT] = ACTIONS(1264), + [aux_sym_clone_expression_token1] = ACTIONS(1266), + [aux_sym_print_intrinsic_token1] = ACTIONS(1266), + [aux_sym_object_creation_expression_token1] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [aux_sym__list_destructing_token1] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_self] = ACTIONS(1266), + [anon_sym_parent] = ACTIONS(1266), + [aux_sym__argument_name_token1] = ACTIONS(1266), + [aux_sym__argument_name_token2] = ACTIONS(1266), + [anon_sym_POUND_LBRACK] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [aux_sym_encapsed_string_token1] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [aux_sym_string_token1] = ACTIONS(1264), + [anon_sym_LT_LT_LT] = ACTIONS(1264), + [anon_sym_BQUOTE] = ACTIONS(1264), + [anon_sym_DOLLAR] = ACTIONS(1264), + [aux_sym_yield_expression_token1] = ACTIONS(1266), + [aux_sym_include_expression_token1] = ACTIONS(1266), + [aux_sym_include_once_expression_token1] = ACTIONS(1266), + [aux_sym_require_expression_token1] = ACTIONS(1266), + [aux_sym_require_once_expression_token1] = ACTIONS(1266), [sym_comment] = ACTIONS(5), }, [486] = { [sym_text_interpolation] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_name] = ACTIONS(1268), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1266), - [aux_sym_function_static_declaration_token1] = ACTIONS(1268), - [aux_sym_global_declaration_token1] = ACTIONS(1268), - [aux_sym_namespace_definition_token1] = ACTIONS(1268), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1268), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1268), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1268), - [anon_sym_BSLASH] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_RBRACE] = ACTIONS(1266), - [aux_sym_trait_declaration_token1] = ACTIONS(1268), - [aux_sym_interface_declaration_token1] = ACTIONS(1268), - [aux_sym_enum_declaration_token1] = ACTIONS(1268), - [aux_sym_enum_case_token1] = ACTIONS(1268), - [aux_sym_class_declaration_token1] = ACTIONS(1268), - [aux_sym_final_modifier_token1] = ACTIONS(1268), - [aux_sym_abstract_modifier_token1] = ACTIONS(1268), - [aux_sym_readonly_modifier_token1] = ACTIONS(1268), - [aux_sym_visibility_modifier_token1] = ACTIONS(1268), - [aux_sym_visibility_modifier_token2] = ACTIONS(1268), - [aux_sym_visibility_modifier_token3] = ACTIONS(1268), - [aux_sym__arrow_function_header_token1] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1266), - [aux_sym_cast_type_token1] = ACTIONS(1268), - [aux_sym_echo_statement_token1] = ACTIONS(1268), - [anon_sym_unset] = ACTIONS(1268), - [aux_sym_declare_statement_token1] = ACTIONS(1268), - [aux_sym_declare_statement_token2] = ACTIONS(1268), - [sym_float] = ACTIONS(1268), - [aux_sym_try_statement_token1] = ACTIONS(1268), - [aux_sym_goto_statement_token1] = ACTIONS(1268), - [aux_sym_continue_statement_token1] = ACTIONS(1268), - [aux_sym_break_statement_token1] = ACTIONS(1268), - [sym_integer] = ACTIONS(1268), - [aux_sym_return_statement_token1] = ACTIONS(1268), - [aux_sym_throw_expression_token1] = ACTIONS(1268), - [aux_sym_while_statement_token1] = ACTIONS(1268), - [aux_sym_while_statement_token2] = ACTIONS(1268), - [aux_sym_do_statement_token1] = ACTIONS(1268), - [aux_sym_for_statement_token1] = ACTIONS(1268), - [aux_sym_for_statement_token2] = ACTIONS(1268), - [aux_sym_foreach_statement_token1] = ACTIONS(1268), - [aux_sym_foreach_statement_token2] = ACTIONS(1268), - [aux_sym_if_statement_token1] = ACTIONS(1268), - [aux_sym_if_statement_token2] = ACTIONS(1268), - [aux_sym_else_if_clause_token1] = ACTIONS(1268), - [aux_sym_else_clause_token1] = ACTIONS(1268), - [aux_sym_match_expression_token1] = ACTIONS(1268), - [aux_sym_match_default_expression_token1] = ACTIONS(1268), - [aux_sym_switch_statement_token1] = ACTIONS(1268), - [aux_sym_switch_block_token1] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_AT] = ACTIONS(1266), - [aux_sym_clone_expression_token1] = ACTIONS(1268), - [aux_sym_print_intrinsic_token1] = ACTIONS(1268), - [aux_sym_object_creation_expression_token1] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [aux_sym__list_destructing_token1] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_self] = ACTIONS(1268), - [anon_sym_parent] = ACTIONS(1268), - [aux_sym__argument_name_token1] = ACTIONS(1268), - [aux_sym__argument_name_token2] = ACTIONS(1268), - [anon_sym_POUND_LBRACK] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [aux_sym_encapsed_string_token1] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [aux_sym_string_token1] = ACTIONS(1266), - [anon_sym_LT_LT_LT] = ACTIONS(1266), - [anon_sym_BQUOTE] = ACTIONS(1266), - [anon_sym_DOLLAR] = ACTIONS(1266), - [aux_sym_yield_expression_token1] = ACTIONS(1268), - [aux_sym_include_expression_token1] = ACTIONS(1268), - [aux_sym_include_once_expression_token1] = ACTIONS(1268), - [aux_sym_require_expression_token1] = ACTIONS(1268), - [aux_sym_require_once_expression_token1] = ACTIONS(1268), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_name] = ACTIONS(1270), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1268), + [aux_sym_function_static_declaration_token1] = ACTIONS(1270), + [aux_sym_global_declaration_token1] = ACTIONS(1270), + [aux_sym_namespace_definition_token1] = ACTIONS(1270), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1270), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1270), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1270), + [anon_sym_BSLASH] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [aux_sym_trait_declaration_token1] = ACTIONS(1270), + [aux_sym_interface_declaration_token1] = ACTIONS(1270), + [aux_sym_enum_declaration_token1] = ACTIONS(1270), + [aux_sym_enum_case_token1] = ACTIONS(1270), + [aux_sym_class_declaration_token1] = ACTIONS(1270), + [aux_sym_final_modifier_token1] = ACTIONS(1270), + [aux_sym_abstract_modifier_token1] = ACTIONS(1270), + [aux_sym_readonly_modifier_token1] = ACTIONS(1270), + [aux_sym_visibility_modifier_token1] = ACTIONS(1270), + [aux_sym_visibility_modifier_token2] = ACTIONS(1270), + [aux_sym_visibility_modifier_token3] = ACTIONS(1270), + [aux_sym__arrow_function_header_token1] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1268), + [aux_sym_cast_type_token1] = ACTIONS(1270), + [aux_sym_echo_statement_token1] = ACTIONS(1270), + [anon_sym_unset] = ACTIONS(1270), + [aux_sym_declare_statement_token1] = ACTIONS(1270), + [aux_sym_declare_statement_token2] = ACTIONS(1270), + [sym_float] = ACTIONS(1270), + [aux_sym_try_statement_token1] = ACTIONS(1270), + [aux_sym_goto_statement_token1] = ACTIONS(1270), + [aux_sym_continue_statement_token1] = ACTIONS(1270), + [aux_sym_break_statement_token1] = ACTIONS(1270), + [sym_integer] = ACTIONS(1270), + [aux_sym_return_statement_token1] = ACTIONS(1270), + [aux_sym_throw_expression_token1] = ACTIONS(1270), + [aux_sym_while_statement_token1] = ACTIONS(1270), + [aux_sym_while_statement_token2] = ACTIONS(1270), + [aux_sym_do_statement_token1] = ACTIONS(1270), + [aux_sym_for_statement_token1] = ACTIONS(1270), + [aux_sym_for_statement_token2] = ACTIONS(1270), + [aux_sym_foreach_statement_token1] = ACTIONS(1270), + [aux_sym_foreach_statement_token2] = ACTIONS(1270), + [aux_sym_if_statement_token1] = ACTIONS(1270), + [aux_sym_if_statement_token2] = ACTIONS(1270), + [aux_sym_else_if_clause_token1] = ACTIONS(1270), + [aux_sym_else_clause_token1] = ACTIONS(1270), + [aux_sym_match_expression_token1] = ACTIONS(1270), + [aux_sym_match_default_expression_token1] = ACTIONS(1270), + [aux_sym_switch_statement_token1] = ACTIONS(1270), + [aux_sym_switch_block_token1] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_AT] = ACTIONS(1268), + [aux_sym_clone_expression_token1] = ACTIONS(1270), + [aux_sym_print_intrinsic_token1] = ACTIONS(1270), + [aux_sym_object_creation_expression_token1] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [aux_sym__list_destructing_token1] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_self] = ACTIONS(1270), + [anon_sym_parent] = ACTIONS(1270), + [aux_sym__argument_name_token1] = ACTIONS(1270), + [aux_sym__argument_name_token2] = ACTIONS(1270), + [anon_sym_POUND_LBRACK] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [aux_sym_encapsed_string_token1] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [aux_sym_string_token1] = ACTIONS(1268), + [anon_sym_LT_LT_LT] = ACTIONS(1268), + [anon_sym_BQUOTE] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1268), + [aux_sym_yield_expression_token1] = ACTIONS(1270), + [aux_sym_include_expression_token1] = ACTIONS(1270), + [aux_sym_include_once_expression_token1] = ACTIONS(1270), + [aux_sym_require_expression_token1] = ACTIONS(1270), + [aux_sym_require_once_expression_token1] = ACTIONS(1270), [sym_comment] = ACTIONS(5), }, [487] = { [sym_text_interpolation] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1270), - [sym_name] = ACTIONS(1272), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1270), - [aux_sym_function_static_declaration_token1] = ACTIONS(1272), - [aux_sym_global_declaration_token1] = ACTIONS(1272), - [aux_sym_namespace_definition_token1] = ACTIONS(1272), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1272), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1272), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1272), - [anon_sym_BSLASH] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1270), - [aux_sym_trait_declaration_token1] = ACTIONS(1272), - [aux_sym_interface_declaration_token1] = ACTIONS(1272), - [aux_sym_enum_declaration_token1] = ACTIONS(1272), - [aux_sym_enum_case_token1] = ACTIONS(1272), - [aux_sym_class_declaration_token1] = ACTIONS(1272), - [aux_sym_final_modifier_token1] = ACTIONS(1272), - [aux_sym_abstract_modifier_token1] = ACTIONS(1272), - [aux_sym_readonly_modifier_token1] = ACTIONS(1272), - [aux_sym_visibility_modifier_token1] = ACTIONS(1272), - [aux_sym_visibility_modifier_token2] = ACTIONS(1272), - [aux_sym_visibility_modifier_token3] = ACTIONS(1272), - [aux_sym__arrow_function_header_token1] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1270), - [aux_sym_cast_type_token1] = ACTIONS(1272), - [aux_sym_echo_statement_token1] = ACTIONS(1272), - [anon_sym_unset] = ACTIONS(1272), - [aux_sym_declare_statement_token1] = ACTIONS(1272), - [aux_sym_declare_statement_token2] = ACTIONS(1272), - [sym_float] = ACTIONS(1272), - [aux_sym_try_statement_token1] = ACTIONS(1272), - [aux_sym_goto_statement_token1] = ACTIONS(1272), - [aux_sym_continue_statement_token1] = ACTIONS(1272), - [aux_sym_break_statement_token1] = ACTIONS(1272), - [sym_integer] = ACTIONS(1272), - [aux_sym_return_statement_token1] = ACTIONS(1272), - [aux_sym_throw_expression_token1] = ACTIONS(1272), - [aux_sym_while_statement_token1] = ACTIONS(1272), - [aux_sym_while_statement_token2] = ACTIONS(1272), - [aux_sym_do_statement_token1] = ACTIONS(1272), - [aux_sym_for_statement_token1] = ACTIONS(1272), - [aux_sym_for_statement_token2] = ACTIONS(1272), - [aux_sym_foreach_statement_token1] = ACTIONS(1272), - [aux_sym_foreach_statement_token2] = ACTIONS(1272), - [aux_sym_if_statement_token1] = ACTIONS(1272), - [aux_sym_if_statement_token2] = ACTIONS(1272), - [aux_sym_else_if_clause_token1] = ACTIONS(1272), - [aux_sym_else_clause_token1] = ACTIONS(1272), - [aux_sym_match_expression_token1] = ACTIONS(1272), - [aux_sym_match_default_expression_token1] = ACTIONS(1272), - [aux_sym_switch_statement_token1] = ACTIONS(1272), - [aux_sym_switch_block_token1] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(1270), - [aux_sym_clone_expression_token1] = ACTIONS(1272), - [aux_sym_print_intrinsic_token1] = ACTIONS(1272), - [aux_sym_object_creation_expression_token1] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [aux_sym__list_destructing_token1] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1270), - [anon_sym_self] = ACTIONS(1272), - [anon_sym_parent] = ACTIONS(1272), - [aux_sym__argument_name_token1] = ACTIONS(1272), - [aux_sym__argument_name_token2] = ACTIONS(1272), - [anon_sym_POUND_LBRACK] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [aux_sym_encapsed_string_token1] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [aux_sym_string_token1] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_BQUOTE] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1270), - [aux_sym_yield_expression_token1] = ACTIONS(1272), - [aux_sym_include_expression_token1] = ACTIONS(1272), - [aux_sym_include_once_expression_token1] = ACTIONS(1272), - [aux_sym_require_expression_token1] = ACTIONS(1272), - [aux_sym_require_once_expression_token1] = ACTIONS(1272), + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_name] = ACTIONS(1274), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1272), + [aux_sym_function_static_declaration_token1] = ACTIONS(1274), + [aux_sym_global_declaration_token1] = ACTIONS(1274), + [aux_sym_namespace_definition_token1] = ACTIONS(1274), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1274), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1274), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1274), + [anon_sym_BSLASH] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [aux_sym_trait_declaration_token1] = ACTIONS(1274), + [aux_sym_interface_declaration_token1] = ACTIONS(1274), + [aux_sym_enum_declaration_token1] = ACTIONS(1274), + [aux_sym_enum_case_token1] = ACTIONS(1274), + [aux_sym_class_declaration_token1] = ACTIONS(1274), + [aux_sym_final_modifier_token1] = ACTIONS(1274), + [aux_sym_abstract_modifier_token1] = ACTIONS(1274), + [aux_sym_readonly_modifier_token1] = ACTIONS(1274), + [aux_sym_visibility_modifier_token1] = ACTIONS(1274), + [aux_sym_visibility_modifier_token2] = ACTIONS(1274), + [aux_sym_visibility_modifier_token3] = ACTIONS(1274), + [aux_sym__arrow_function_header_token1] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1272), + [aux_sym_cast_type_token1] = ACTIONS(1274), + [aux_sym_echo_statement_token1] = ACTIONS(1274), + [anon_sym_unset] = ACTIONS(1274), + [aux_sym_declare_statement_token1] = ACTIONS(1274), + [aux_sym_declare_statement_token2] = ACTIONS(1274), + [sym_float] = ACTIONS(1274), + [aux_sym_try_statement_token1] = ACTIONS(1274), + [aux_sym_goto_statement_token1] = ACTIONS(1274), + [aux_sym_continue_statement_token1] = ACTIONS(1274), + [aux_sym_break_statement_token1] = ACTIONS(1274), + [sym_integer] = ACTIONS(1274), + [aux_sym_return_statement_token1] = ACTIONS(1274), + [aux_sym_throw_expression_token1] = ACTIONS(1274), + [aux_sym_while_statement_token1] = ACTIONS(1274), + [aux_sym_while_statement_token2] = ACTIONS(1274), + [aux_sym_do_statement_token1] = ACTIONS(1274), + [aux_sym_for_statement_token1] = ACTIONS(1274), + [aux_sym_for_statement_token2] = ACTIONS(1274), + [aux_sym_foreach_statement_token1] = ACTIONS(1274), + [aux_sym_foreach_statement_token2] = ACTIONS(1274), + [aux_sym_if_statement_token1] = ACTIONS(1274), + [aux_sym_if_statement_token2] = ACTIONS(1274), + [aux_sym_else_if_clause_token1] = ACTIONS(1274), + [aux_sym_else_clause_token1] = ACTIONS(1274), + [aux_sym_match_expression_token1] = ACTIONS(1274), + [aux_sym_match_default_expression_token1] = ACTIONS(1274), + [aux_sym_switch_statement_token1] = ACTIONS(1274), + [aux_sym_switch_block_token1] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_AT] = ACTIONS(1272), + [aux_sym_clone_expression_token1] = ACTIONS(1274), + [aux_sym_print_intrinsic_token1] = ACTIONS(1274), + [aux_sym_object_creation_expression_token1] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [aux_sym__list_destructing_token1] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_self] = ACTIONS(1274), + [anon_sym_parent] = ACTIONS(1274), + [aux_sym__argument_name_token1] = ACTIONS(1274), + [aux_sym__argument_name_token2] = ACTIONS(1274), + [anon_sym_POUND_LBRACK] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [aux_sym_encapsed_string_token1] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [aux_sym_string_token1] = ACTIONS(1272), + [anon_sym_LT_LT_LT] = ACTIONS(1272), + [anon_sym_BQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1272), + [aux_sym_yield_expression_token1] = ACTIONS(1274), + [aux_sym_include_expression_token1] = ACTIONS(1274), + [aux_sym_include_once_expression_token1] = ACTIONS(1274), + [aux_sym_require_expression_token1] = ACTIONS(1274), + [aux_sym_require_once_expression_token1] = ACTIONS(1274), [sym_comment] = ACTIONS(5), }, [488] = { [sym_text_interpolation] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_name] = ACTIONS(1276), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1274), - [aux_sym_function_static_declaration_token1] = ACTIONS(1276), - [aux_sym_global_declaration_token1] = ACTIONS(1276), - [aux_sym_namespace_definition_token1] = ACTIONS(1276), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1276), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1276), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1276), - [anon_sym_BSLASH] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [aux_sym_trait_declaration_token1] = ACTIONS(1276), - [aux_sym_interface_declaration_token1] = ACTIONS(1276), - [aux_sym_enum_declaration_token1] = ACTIONS(1276), - [aux_sym_enum_case_token1] = ACTIONS(1276), - [aux_sym_class_declaration_token1] = ACTIONS(1276), - [aux_sym_final_modifier_token1] = ACTIONS(1276), - [aux_sym_abstract_modifier_token1] = ACTIONS(1276), - [aux_sym_readonly_modifier_token1] = ACTIONS(1276), - [aux_sym_visibility_modifier_token1] = ACTIONS(1276), - [aux_sym_visibility_modifier_token2] = ACTIONS(1276), - [aux_sym_visibility_modifier_token3] = ACTIONS(1276), - [aux_sym__arrow_function_header_token1] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1274), - [aux_sym_cast_type_token1] = ACTIONS(1276), - [aux_sym_echo_statement_token1] = ACTIONS(1276), - [anon_sym_unset] = ACTIONS(1276), - [aux_sym_declare_statement_token1] = ACTIONS(1276), - [aux_sym_declare_statement_token2] = ACTIONS(1276), - [sym_float] = ACTIONS(1276), - [aux_sym_try_statement_token1] = ACTIONS(1276), - [aux_sym_goto_statement_token1] = ACTIONS(1276), - [aux_sym_continue_statement_token1] = ACTIONS(1276), - [aux_sym_break_statement_token1] = ACTIONS(1276), - [sym_integer] = ACTIONS(1276), - [aux_sym_return_statement_token1] = ACTIONS(1276), - [aux_sym_throw_expression_token1] = ACTIONS(1276), - [aux_sym_while_statement_token1] = ACTIONS(1276), - [aux_sym_while_statement_token2] = ACTIONS(1276), - [aux_sym_do_statement_token1] = ACTIONS(1276), - [aux_sym_for_statement_token1] = ACTIONS(1276), - [aux_sym_for_statement_token2] = ACTIONS(1276), - [aux_sym_foreach_statement_token1] = ACTIONS(1276), - [aux_sym_foreach_statement_token2] = ACTIONS(1276), - [aux_sym_if_statement_token1] = ACTIONS(1276), - [aux_sym_if_statement_token2] = ACTIONS(1276), - [aux_sym_else_if_clause_token1] = ACTIONS(1276), - [aux_sym_else_clause_token1] = ACTIONS(1276), - [aux_sym_match_expression_token1] = ACTIONS(1276), - [aux_sym_match_default_expression_token1] = ACTIONS(1276), - [aux_sym_switch_statement_token1] = ACTIONS(1276), - [aux_sym_switch_block_token1] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_AT] = ACTIONS(1274), - [aux_sym_clone_expression_token1] = ACTIONS(1276), - [aux_sym_print_intrinsic_token1] = ACTIONS(1276), - [aux_sym_object_creation_expression_token1] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [aux_sym__list_destructing_token1] = ACTIONS(1276), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_self] = ACTIONS(1276), - [anon_sym_parent] = ACTIONS(1276), - [aux_sym__argument_name_token1] = ACTIONS(1276), - [aux_sym__argument_name_token2] = ACTIONS(1276), - [anon_sym_POUND_LBRACK] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [aux_sym_encapsed_string_token1] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [aux_sym_string_token1] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1274), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1274), - [aux_sym_yield_expression_token1] = ACTIONS(1276), - [aux_sym_include_expression_token1] = ACTIONS(1276), - [aux_sym_include_once_expression_token1] = ACTIONS(1276), - [aux_sym_require_expression_token1] = ACTIONS(1276), - [aux_sym_require_once_expression_token1] = ACTIONS(1276), + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_name] = ACTIONS(1278), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1276), + [aux_sym_function_static_declaration_token1] = ACTIONS(1278), + [aux_sym_global_declaration_token1] = ACTIONS(1278), + [aux_sym_namespace_definition_token1] = ACTIONS(1278), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1278), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1278), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1278), + [anon_sym_BSLASH] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [aux_sym_trait_declaration_token1] = ACTIONS(1278), + [aux_sym_interface_declaration_token1] = ACTIONS(1278), + [aux_sym_enum_declaration_token1] = ACTIONS(1278), + [aux_sym_enum_case_token1] = ACTIONS(1278), + [aux_sym_class_declaration_token1] = ACTIONS(1278), + [aux_sym_final_modifier_token1] = ACTIONS(1278), + [aux_sym_abstract_modifier_token1] = ACTIONS(1278), + [aux_sym_readonly_modifier_token1] = ACTIONS(1278), + [aux_sym_visibility_modifier_token1] = ACTIONS(1278), + [aux_sym_visibility_modifier_token2] = ACTIONS(1278), + [aux_sym_visibility_modifier_token3] = ACTIONS(1278), + [aux_sym__arrow_function_header_token1] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1276), + [aux_sym_cast_type_token1] = ACTIONS(1278), + [aux_sym_echo_statement_token1] = ACTIONS(1278), + [anon_sym_unset] = ACTIONS(1278), + [aux_sym_declare_statement_token1] = ACTIONS(1278), + [aux_sym_declare_statement_token2] = ACTIONS(1278), + [sym_float] = ACTIONS(1278), + [aux_sym_try_statement_token1] = ACTIONS(1278), + [aux_sym_goto_statement_token1] = ACTIONS(1278), + [aux_sym_continue_statement_token1] = ACTIONS(1278), + [aux_sym_break_statement_token1] = ACTIONS(1278), + [sym_integer] = ACTIONS(1278), + [aux_sym_return_statement_token1] = ACTIONS(1278), + [aux_sym_throw_expression_token1] = ACTIONS(1278), + [aux_sym_while_statement_token1] = ACTIONS(1278), + [aux_sym_while_statement_token2] = ACTIONS(1278), + [aux_sym_do_statement_token1] = ACTIONS(1278), + [aux_sym_for_statement_token1] = ACTIONS(1278), + [aux_sym_for_statement_token2] = ACTIONS(1278), + [aux_sym_foreach_statement_token1] = ACTIONS(1278), + [aux_sym_foreach_statement_token2] = ACTIONS(1278), + [aux_sym_if_statement_token1] = ACTIONS(1278), + [aux_sym_if_statement_token2] = ACTIONS(1278), + [aux_sym_else_if_clause_token1] = ACTIONS(1278), + [aux_sym_else_clause_token1] = ACTIONS(1278), + [aux_sym_match_expression_token1] = ACTIONS(1278), + [aux_sym_match_default_expression_token1] = ACTIONS(1278), + [aux_sym_switch_statement_token1] = ACTIONS(1278), + [aux_sym_switch_block_token1] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_AT] = ACTIONS(1276), + [aux_sym_clone_expression_token1] = ACTIONS(1278), + [aux_sym_print_intrinsic_token1] = ACTIONS(1278), + [aux_sym_object_creation_expression_token1] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [aux_sym__list_destructing_token1] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_self] = ACTIONS(1278), + [anon_sym_parent] = ACTIONS(1278), + [aux_sym__argument_name_token1] = ACTIONS(1278), + [aux_sym__argument_name_token2] = ACTIONS(1278), + [anon_sym_POUND_LBRACK] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [aux_sym_encapsed_string_token1] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [aux_sym_string_token1] = ACTIONS(1276), + [anon_sym_LT_LT_LT] = ACTIONS(1276), + [anon_sym_BQUOTE] = ACTIONS(1276), + [anon_sym_DOLLAR] = ACTIONS(1276), + [aux_sym_yield_expression_token1] = ACTIONS(1278), + [aux_sym_include_expression_token1] = ACTIONS(1278), + [aux_sym_include_once_expression_token1] = ACTIONS(1278), + [aux_sym_require_expression_token1] = ACTIONS(1278), + [aux_sym_require_once_expression_token1] = ACTIONS(1278), [sym_comment] = ACTIONS(5), }, [489] = { [sym_text_interpolation] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_name] = ACTIONS(1280), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1278), - [aux_sym_function_static_declaration_token1] = ACTIONS(1280), - [aux_sym_global_declaration_token1] = ACTIONS(1280), - [aux_sym_namespace_definition_token1] = ACTIONS(1280), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1280), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1280), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1280), - [anon_sym_BSLASH] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [aux_sym_trait_declaration_token1] = ACTIONS(1280), - [aux_sym_interface_declaration_token1] = ACTIONS(1280), - [aux_sym_enum_declaration_token1] = ACTIONS(1280), - [aux_sym_enum_case_token1] = ACTIONS(1280), - [aux_sym_class_declaration_token1] = ACTIONS(1280), - [aux_sym_final_modifier_token1] = ACTIONS(1280), - [aux_sym_abstract_modifier_token1] = ACTIONS(1280), - [aux_sym_readonly_modifier_token1] = ACTIONS(1280), - [aux_sym_visibility_modifier_token1] = ACTIONS(1280), - [aux_sym_visibility_modifier_token2] = ACTIONS(1280), - [aux_sym_visibility_modifier_token3] = ACTIONS(1280), - [aux_sym__arrow_function_header_token1] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1278), - [aux_sym_cast_type_token1] = ACTIONS(1280), - [aux_sym_echo_statement_token1] = ACTIONS(1280), - [anon_sym_unset] = ACTIONS(1280), - [aux_sym_declare_statement_token1] = ACTIONS(1280), - [aux_sym_declare_statement_token2] = ACTIONS(1280), - [sym_float] = ACTIONS(1280), - [aux_sym_try_statement_token1] = ACTIONS(1280), - [aux_sym_goto_statement_token1] = ACTIONS(1280), - [aux_sym_continue_statement_token1] = ACTIONS(1280), - [aux_sym_break_statement_token1] = ACTIONS(1280), - [sym_integer] = ACTIONS(1280), - [aux_sym_return_statement_token1] = ACTIONS(1280), - [aux_sym_throw_expression_token1] = ACTIONS(1280), - [aux_sym_while_statement_token1] = ACTIONS(1280), - [aux_sym_while_statement_token2] = ACTIONS(1280), - [aux_sym_do_statement_token1] = ACTIONS(1280), - [aux_sym_for_statement_token1] = ACTIONS(1280), - [aux_sym_for_statement_token2] = ACTIONS(1280), - [aux_sym_foreach_statement_token1] = ACTIONS(1280), - [aux_sym_foreach_statement_token2] = ACTIONS(1280), - [aux_sym_if_statement_token1] = ACTIONS(1280), - [aux_sym_if_statement_token2] = ACTIONS(1280), - [aux_sym_else_if_clause_token1] = ACTIONS(1280), - [aux_sym_else_clause_token1] = ACTIONS(1280), - [aux_sym_match_expression_token1] = ACTIONS(1280), - [aux_sym_match_default_expression_token1] = ACTIONS(1280), - [aux_sym_switch_statement_token1] = ACTIONS(1280), - [aux_sym_switch_block_token1] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_AT] = ACTIONS(1278), - [aux_sym_clone_expression_token1] = ACTIONS(1280), - [aux_sym_print_intrinsic_token1] = ACTIONS(1280), - [aux_sym_object_creation_expression_token1] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [aux_sym__list_destructing_token1] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_self] = ACTIONS(1280), - [anon_sym_parent] = ACTIONS(1280), - [aux_sym__argument_name_token1] = ACTIONS(1280), - [aux_sym__argument_name_token2] = ACTIONS(1280), - [anon_sym_POUND_LBRACK] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [aux_sym_encapsed_string_token1] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [aux_sym_string_token1] = ACTIONS(1278), - [anon_sym_LT_LT_LT] = ACTIONS(1278), - [anon_sym_BQUOTE] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1278), - [aux_sym_yield_expression_token1] = ACTIONS(1280), - [aux_sym_include_expression_token1] = ACTIONS(1280), - [aux_sym_include_once_expression_token1] = ACTIONS(1280), - [aux_sym_require_expression_token1] = ACTIONS(1280), - [aux_sym_require_once_expression_token1] = ACTIONS(1280), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_name] = ACTIONS(1282), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1280), + [aux_sym_function_static_declaration_token1] = ACTIONS(1282), + [aux_sym_global_declaration_token1] = ACTIONS(1282), + [aux_sym_namespace_definition_token1] = ACTIONS(1282), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1282), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1282), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1282), + [anon_sym_BSLASH] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [aux_sym_trait_declaration_token1] = ACTIONS(1282), + [aux_sym_interface_declaration_token1] = ACTIONS(1282), + [aux_sym_enum_declaration_token1] = ACTIONS(1282), + [aux_sym_enum_case_token1] = ACTIONS(1282), + [aux_sym_class_declaration_token1] = ACTIONS(1282), + [aux_sym_final_modifier_token1] = ACTIONS(1282), + [aux_sym_abstract_modifier_token1] = ACTIONS(1282), + [aux_sym_readonly_modifier_token1] = ACTIONS(1282), + [aux_sym_visibility_modifier_token1] = ACTIONS(1282), + [aux_sym_visibility_modifier_token2] = ACTIONS(1282), + [aux_sym_visibility_modifier_token3] = ACTIONS(1282), + [aux_sym__arrow_function_header_token1] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1280), + [aux_sym_cast_type_token1] = ACTIONS(1282), + [aux_sym_echo_statement_token1] = ACTIONS(1282), + [anon_sym_unset] = ACTIONS(1282), + [aux_sym_declare_statement_token1] = ACTIONS(1282), + [aux_sym_declare_statement_token2] = ACTIONS(1282), + [sym_float] = ACTIONS(1282), + [aux_sym_try_statement_token1] = ACTIONS(1282), + [aux_sym_goto_statement_token1] = ACTIONS(1282), + [aux_sym_continue_statement_token1] = ACTIONS(1282), + [aux_sym_break_statement_token1] = ACTIONS(1282), + [sym_integer] = ACTIONS(1282), + [aux_sym_return_statement_token1] = ACTIONS(1282), + [aux_sym_throw_expression_token1] = ACTIONS(1282), + [aux_sym_while_statement_token1] = ACTIONS(1282), + [aux_sym_while_statement_token2] = ACTIONS(1282), + [aux_sym_do_statement_token1] = ACTIONS(1282), + [aux_sym_for_statement_token1] = ACTIONS(1282), + [aux_sym_for_statement_token2] = ACTIONS(1282), + [aux_sym_foreach_statement_token1] = ACTIONS(1282), + [aux_sym_foreach_statement_token2] = ACTIONS(1282), + [aux_sym_if_statement_token1] = ACTIONS(1282), + [aux_sym_if_statement_token2] = ACTIONS(1282), + [aux_sym_else_if_clause_token1] = ACTIONS(1282), + [aux_sym_else_clause_token1] = ACTIONS(1282), + [aux_sym_match_expression_token1] = ACTIONS(1282), + [aux_sym_match_default_expression_token1] = ACTIONS(1282), + [aux_sym_switch_statement_token1] = ACTIONS(1282), + [aux_sym_switch_block_token1] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_AT] = ACTIONS(1280), + [aux_sym_clone_expression_token1] = ACTIONS(1282), + [aux_sym_print_intrinsic_token1] = ACTIONS(1282), + [aux_sym_object_creation_expression_token1] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [aux_sym__list_destructing_token1] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_self] = ACTIONS(1282), + [anon_sym_parent] = ACTIONS(1282), + [aux_sym__argument_name_token1] = ACTIONS(1282), + [aux_sym__argument_name_token2] = ACTIONS(1282), + [anon_sym_POUND_LBRACK] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [aux_sym_encapsed_string_token1] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [aux_sym_string_token1] = ACTIONS(1280), + [anon_sym_LT_LT_LT] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1280), + [aux_sym_yield_expression_token1] = ACTIONS(1282), + [aux_sym_include_expression_token1] = ACTIONS(1282), + [aux_sym_include_once_expression_token1] = ACTIONS(1282), + [aux_sym_require_expression_token1] = ACTIONS(1282), + [aux_sym_require_once_expression_token1] = ACTIONS(1282), [sym_comment] = ACTIONS(5), }, [490] = { [sym_text_interpolation] = STATE(490), - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_name] = ACTIONS(1284), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1282), - [aux_sym_function_static_declaration_token1] = ACTIONS(1284), - [aux_sym_global_declaration_token1] = ACTIONS(1284), - [aux_sym_namespace_definition_token1] = ACTIONS(1284), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1284), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1284), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1284), - [anon_sym_BSLASH] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [aux_sym_trait_declaration_token1] = ACTIONS(1284), - [aux_sym_interface_declaration_token1] = ACTIONS(1284), - [aux_sym_enum_declaration_token1] = ACTIONS(1284), - [aux_sym_enum_case_token1] = ACTIONS(1284), - [aux_sym_class_declaration_token1] = ACTIONS(1284), - [aux_sym_final_modifier_token1] = ACTIONS(1284), - [aux_sym_abstract_modifier_token1] = ACTIONS(1284), - [aux_sym_readonly_modifier_token1] = ACTIONS(1284), - [aux_sym_visibility_modifier_token1] = ACTIONS(1284), - [aux_sym_visibility_modifier_token2] = ACTIONS(1284), - [aux_sym_visibility_modifier_token3] = ACTIONS(1284), - [aux_sym__arrow_function_header_token1] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1282), - [aux_sym_cast_type_token1] = ACTIONS(1284), - [aux_sym_echo_statement_token1] = ACTIONS(1284), - [anon_sym_unset] = ACTIONS(1284), - [aux_sym_declare_statement_token1] = ACTIONS(1284), - [aux_sym_declare_statement_token2] = ACTIONS(1284), - [sym_float] = ACTIONS(1284), - [aux_sym_try_statement_token1] = ACTIONS(1284), - [aux_sym_goto_statement_token1] = ACTIONS(1284), - [aux_sym_continue_statement_token1] = ACTIONS(1284), - [aux_sym_break_statement_token1] = ACTIONS(1284), - [sym_integer] = ACTIONS(1284), - [aux_sym_return_statement_token1] = ACTIONS(1284), - [aux_sym_throw_expression_token1] = ACTIONS(1284), - [aux_sym_while_statement_token1] = ACTIONS(1284), - [aux_sym_while_statement_token2] = ACTIONS(1284), - [aux_sym_do_statement_token1] = ACTIONS(1284), - [aux_sym_for_statement_token1] = ACTIONS(1284), - [aux_sym_for_statement_token2] = ACTIONS(1284), - [aux_sym_foreach_statement_token1] = ACTIONS(1284), - [aux_sym_foreach_statement_token2] = ACTIONS(1284), - [aux_sym_if_statement_token1] = ACTIONS(1284), - [aux_sym_if_statement_token2] = ACTIONS(1284), - [aux_sym_else_if_clause_token1] = ACTIONS(1284), - [aux_sym_else_clause_token1] = ACTIONS(1284), - [aux_sym_match_expression_token1] = ACTIONS(1284), - [aux_sym_match_default_expression_token1] = ACTIONS(1284), - [aux_sym_switch_statement_token1] = ACTIONS(1284), - [aux_sym_switch_block_token1] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(1282), - [aux_sym_clone_expression_token1] = ACTIONS(1284), - [aux_sym_print_intrinsic_token1] = ACTIONS(1284), - [aux_sym_object_creation_expression_token1] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [aux_sym__list_destructing_token1] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_self] = ACTIONS(1284), - [anon_sym_parent] = ACTIONS(1284), - [aux_sym__argument_name_token1] = ACTIONS(1284), - [aux_sym__argument_name_token2] = ACTIONS(1284), - [anon_sym_POUND_LBRACK] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [aux_sym_encapsed_string_token1] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [aux_sym_string_token1] = ACTIONS(1282), - [anon_sym_LT_LT_LT] = ACTIONS(1282), - [anon_sym_BQUOTE] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1282), - [aux_sym_yield_expression_token1] = ACTIONS(1284), - [aux_sym_include_expression_token1] = ACTIONS(1284), - [aux_sym_include_once_expression_token1] = ACTIONS(1284), - [aux_sym_require_expression_token1] = ACTIONS(1284), - [aux_sym_require_once_expression_token1] = ACTIONS(1284), + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_name] = ACTIONS(1286), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1284), + [aux_sym_function_static_declaration_token1] = ACTIONS(1286), + [aux_sym_global_declaration_token1] = ACTIONS(1286), + [aux_sym_namespace_definition_token1] = ACTIONS(1286), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1286), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1286), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1286), + [anon_sym_BSLASH] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [aux_sym_trait_declaration_token1] = ACTIONS(1286), + [aux_sym_interface_declaration_token1] = ACTIONS(1286), + [aux_sym_enum_declaration_token1] = ACTIONS(1286), + [aux_sym_enum_case_token1] = ACTIONS(1286), + [aux_sym_class_declaration_token1] = ACTIONS(1286), + [aux_sym_final_modifier_token1] = ACTIONS(1286), + [aux_sym_abstract_modifier_token1] = ACTIONS(1286), + [aux_sym_readonly_modifier_token1] = ACTIONS(1286), + [aux_sym_visibility_modifier_token1] = ACTIONS(1286), + [aux_sym_visibility_modifier_token2] = ACTIONS(1286), + [aux_sym_visibility_modifier_token3] = ACTIONS(1286), + [aux_sym__arrow_function_header_token1] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1284), + [aux_sym_cast_type_token1] = ACTIONS(1286), + [aux_sym_echo_statement_token1] = ACTIONS(1286), + [anon_sym_unset] = ACTIONS(1286), + [aux_sym_declare_statement_token1] = ACTIONS(1286), + [aux_sym_declare_statement_token2] = ACTIONS(1286), + [sym_float] = ACTIONS(1286), + [aux_sym_try_statement_token1] = ACTIONS(1286), + [aux_sym_goto_statement_token1] = ACTIONS(1286), + [aux_sym_continue_statement_token1] = ACTIONS(1286), + [aux_sym_break_statement_token1] = ACTIONS(1286), + [sym_integer] = ACTIONS(1286), + [aux_sym_return_statement_token1] = ACTIONS(1286), + [aux_sym_throw_expression_token1] = ACTIONS(1286), + [aux_sym_while_statement_token1] = ACTIONS(1286), + [aux_sym_while_statement_token2] = ACTIONS(1286), + [aux_sym_do_statement_token1] = ACTIONS(1286), + [aux_sym_for_statement_token1] = ACTIONS(1286), + [aux_sym_for_statement_token2] = ACTIONS(1286), + [aux_sym_foreach_statement_token1] = ACTIONS(1286), + [aux_sym_foreach_statement_token2] = ACTIONS(1286), + [aux_sym_if_statement_token1] = ACTIONS(1286), + [aux_sym_if_statement_token2] = ACTIONS(1286), + [aux_sym_else_if_clause_token1] = ACTIONS(1286), + [aux_sym_else_clause_token1] = ACTIONS(1286), + [aux_sym_match_expression_token1] = ACTIONS(1286), + [aux_sym_match_default_expression_token1] = ACTIONS(1286), + [aux_sym_switch_statement_token1] = ACTIONS(1286), + [aux_sym_switch_block_token1] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_AT] = ACTIONS(1284), + [aux_sym_clone_expression_token1] = ACTIONS(1286), + [aux_sym_print_intrinsic_token1] = ACTIONS(1286), + [aux_sym_object_creation_expression_token1] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [aux_sym__list_destructing_token1] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1284), + [anon_sym_self] = ACTIONS(1286), + [anon_sym_parent] = ACTIONS(1286), + [aux_sym__argument_name_token1] = ACTIONS(1286), + [aux_sym__argument_name_token2] = ACTIONS(1286), + [anon_sym_POUND_LBRACK] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [aux_sym_encapsed_string_token1] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [aux_sym_string_token1] = ACTIONS(1284), + [anon_sym_LT_LT_LT] = ACTIONS(1284), + [anon_sym_BQUOTE] = ACTIONS(1284), + [anon_sym_DOLLAR] = ACTIONS(1284), + [aux_sym_yield_expression_token1] = ACTIONS(1286), + [aux_sym_include_expression_token1] = ACTIONS(1286), + [aux_sym_include_once_expression_token1] = ACTIONS(1286), + [aux_sym_require_expression_token1] = ACTIONS(1286), + [aux_sym_require_once_expression_token1] = ACTIONS(1286), [sym_comment] = ACTIONS(5), }, [491] = { [sym_text_interpolation] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_name] = ACTIONS(1288), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1286), - [aux_sym_function_static_declaration_token1] = ACTIONS(1288), - [aux_sym_global_declaration_token1] = ACTIONS(1288), - [aux_sym_namespace_definition_token1] = ACTIONS(1288), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1288), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1288), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1288), - [anon_sym_BSLASH] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [aux_sym_trait_declaration_token1] = ACTIONS(1288), - [aux_sym_interface_declaration_token1] = ACTIONS(1288), - [aux_sym_enum_declaration_token1] = ACTIONS(1288), - [aux_sym_enum_case_token1] = ACTIONS(1288), - [aux_sym_class_declaration_token1] = ACTIONS(1288), - [aux_sym_final_modifier_token1] = ACTIONS(1288), - [aux_sym_abstract_modifier_token1] = ACTIONS(1288), - [aux_sym_readonly_modifier_token1] = ACTIONS(1288), - [aux_sym_visibility_modifier_token1] = ACTIONS(1288), - [aux_sym_visibility_modifier_token2] = ACTIONS(1288), - [aux_sym_visibility_modifier_token3] = ACTIONS(1288), - [aux_sym__arrow_function_header_token1] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1286), - [aux_sym_cast_type_token1] = ACTIONS(1288), - [aux_sym_echo_statement_token1] = ACTIONS(1288), - [anon_sym_unset] = ACTIONS(1288), - [aux_sym_declare_statement_token1] = ACTIONS(1288), - [aux_sym_declare_statement_token2] = ACTIONS(1288), - [sym_float] = ACTIONS(1288), - [aux_sym_try_statement_token1] = ACTIONS(1288), - [aux_sym_goto_statement_token1] = ACTIONS(1288), - [aux_sym_continue_statement_token1] = ACTIONS(1288), - [aux_sym_break_statement_token1] = ACTIONS(1288), - [sym_integer] = ACTIONS(1288), - [aux_sym_return_statement_token1] = ACTIONS(1288), - [aux_sym_throw_expression_token1] = ACTIONS(1288), - [aux_sym_while_statement_token1] = ACTIONS(1288), - [aux_sym_while_statement_token2] = ACTIONS(1288), - [aux_sym_do_statement_token1] = ACTIONS(1288), - [aux_sym_for_statement_token1] = ACTIONS(1288), - [aux_sym_for_statement_token2] = ACTIONS(1288), - [aux_sym_foreach_statement_token1] = ACTIONS(1288), - [aux_sym_foreach_statement_token2] = ACTIONS(1288), - [aux_sym_if_statement_token1] = ACTIONS(1288), - [aux_sym_if_statement_token2] = ACTIONS(1288), - [aux_sym_else_if_clause_token1] = ACTIONS(1288), - [aux_sym_else_clause_token1] = ACTIONS(1288), - [aux_sym_match_expression_token1] = ACTIONS(1288), - [aux_sym_match_default_expression_token1] = ACTIONS(1288), - [aux_sym_switch_statement_token1] = ACTIONS(1288), - [aux_sym_switch_block_token1] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_AT] = ACTIONS(1286), - [aux_sym_clone_expression_token1] = ACTIONS(1288), - [aux_sym_print_intrinsic_token1] = ACTIONS(1288), - [aux_sym_object_creation_expression_token1] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [aux_sym__list_destructing_token1] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_self] = ACTIONS(1288), - [anon_sym_parent] = ACTIONS(1288), - [aux_sym__argument_name_token1] = ACTIONS(1288), - [aux_sym__argument_name_token2] = ACTIONS(1288), - [anon_sym_POUND_LBRACK] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [aux_sym_encapsed_string_token1] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [aux_sym_string_token1] = ACTIONS(1286), - [anon_sym_LT_LT_LT] = ACTIONS(1286), - [anon_sym_BQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1286), - [aux_sym_yield_expression_token1] = ACTIONS(1288), - [aux_sym_include_expression_token1] = ACTIONS(1288), - [aux_sym_include_once_expression_token1] = ACTIONS(1288), - [aux_sym_require_expression_token1] = ACTIONS(1288), - [aux_sym_require_once_expression_token1] = ACTIONS(1288), + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_name] = ACTIONS(1290), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1288), + [aux_sym_function_static_declaration_token1] = ACTIONS(1290), + [aux_sym_global_declaration_token1] = ACTIONS(1290), + [aux_sym_namespace_definition_token1] = ACTIONS(1290), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1290), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1290), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1290), + [anon_sym_BSLASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [aux_sym_trait_declaration_token1] = ACTIONS(1290), + [aux_sym_interface_declaration_token1] = ACTIONS(1290), + [aux_sym_enum_declaration_token1] = ACTIONS(1290), + [aux_sym_enum_case_token1] = ACTIONS(1290), + [aux_sym_class_declaration_token1] = ACTIONS(1290), + [aux_sym_final_modifier_token1] = ACTIONS(1290), + [aux_sym_abstract_modifier_token1] = ACTIONS(1290), + [aux_sym_readonly_modifier_token1] = ACTIONS(1290), + [aux_sym_visibility_modifier_token1] = ACTIONS(1290), + [aux_sym_visibility_modifier_token2] = ACTIONS(1290), + [aux_sym_visibility_modifier_token3] = ACTIONS(1290), + [aux_sym__arrow_function_header_token1] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1288), + [aux_sym_cast_type_token1] = ACTIONS(1290), + [aux_sym_echo_statement_token1] = ACTIONS(1290), + [anon_sym_unset] = ACTIONS(1290), + [aux_sym_declare_statement_token1] = ACTIONS(1290), + [aux_sym_declare_statement_token2] = ACTIONS(1290), + [sym_float] = ACTIONS(1290), + [aux_sym_try_statement_token1] = ACTIONS(1290), + [aux_sym_goto_statement_token1] = ACTIONS(1290), + [aux_sym_continue_statement_token1] = ACTIONS(1290), + [aux_sym_break_statement_token1] = ACTIONS(1290), + [sym_integer] = ACTIONS(1290), + [aux_sym_return_statement_token1] = ACTIONS(1290), + [aux_sym_throw_expression_token1] = ACTIONS(1290), + [aux_sym_while_statement_token1] = ACTIONS(1290), + [aux_sym_while_statement_token2] = ACTIONS(1290), + [aux_sym_do_statement_token1] = ACTIONS(1290), + [aux_sym_for_statement_token1] = ACTIONS(1290), + [aux_sym_for_statement_token2] = ACTIONS(1290), + [aux_sym_foreach_statement_token1] = ACTIONS(1290), + [aux_sym_foreach_statement_token2] = ACTIONS(1290), + [aux_sym_if_statement_token1] = ACTIONS(1290), + [aux_sym_if_statement_token2] = ACTIONS(1290), + [aux_sym_else_if_clause_token1] = ACTIONS(1290), + [aux_sym_else_clause_token1] = ACTIONS(1290), + [aux_sym_match_expression_token1] = ACTIONS(1290), + [aux_sym_match_default_expression_token1] = ACTIONS(1290), + [aux_sym_switch_statement_token1] = ACTIONS(1290), + [aux_sym_switch_block_token1] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_AT] = ACTIONS(1288), + [aux_sym_clone_expression_token1] = ACTIONS(1290), + [aux_sym_print_intrinsic_token1] = ACTIONS(1290), + [aux_sym_object_creation_expression_token1] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [aux_sym__list_destructing_token1] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_self] = ACTIONS(1290), + [anon_sym_parent] = ACTIONS(1290), + [aux_sym__argument_name_token1] = ACTIONS(1290), + [aux_sym__argument_name_token2] = ACTIONS(1290), + [anon_sym_POUND_LBRACK] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [aux_sym_encapsed_string_token1] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [aux_sym_string_token1] = ACTIONS(1288), + [anon_sym_LT_LT_LT] = ACTIONS(1288), + [anon_sym_BQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1288), + [aux_sym_yield_expression_token1] = ACTIONS(1290), + [aux_sym_include_expression_token1] = ACTIONS(1290), + [aux_sym_include_once_expression_token1] = ACTIONS(1290), + [aux_sym_require_expression_token1] = ACTIONS(1290), + [aux_sym_require_once_expression_token1] = ACTIONS(1290), [sym_comment] = ACTIONS(5), }, [492] = { [sym_text_interpolation] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_name] = ACTIONS(1292), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1290), - [aux_sym_function_static_declaration_token1] = ACTIONS(1292), - [aux_sym_global_declaration_token1] = ACTIONS(1292), - [aux_sym_namespace_definition_token1] = ACTIONS(1292), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1292), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1292), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1292), - [anon_sym_BSLASH] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [aux_sym_trait_declaration_token1] = ACTIONS(1292), - [aux_sym_interface_declaration_token1] = ACTIONS(1292), - [aux_sym_enum_declaration_token1] = ACTIONS(1292), - [aux_sym_enum_case_token1] = ACTIONS(1292), - [aux_sym_class_declaration_token1] = ACTIONS(1292), - [aux_sym_final_modifier_token1] = ACTIONS(1292), - [aux_sym_abstract_modifier_token1] = ACTIONS(1292), - [aux_sym_readonly_modifier_token1] = ACTIONS(1292), - [aux_sym_visibility_modifier_token1] = ACTIONS(1292), - [aux_sym_visibility_modifier_token2] = ACTIONS(1292), - [aux_sym_visibility_modifier_token3] = ACTIONS(1292), - [aux_sym__arrow_function_header_token1] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1290), - [aux_sym_cast_type_token1] = ACTIONS(1292), - [aux_sym_echo_statement_token1] = ACTIONS(1292), - [anon_sym_unset] = ACTIONS(1292), - [aux_sym_declare_statement_token1] = ACTIONS(1292), - [aux_sym_declare_statement_token2] = ACTIONS(1292), - [sym_float] = ACTIONS(1292), - [aux_sym_try_statement_token1] = ACTIONS(1292), - [aux_sym_goto_statement_token1] = ACTIONS(1292), - [aux_sym_continue_statement_token1] = ACTIONS(1292), - [aux_sym_break_statement_token1] = ACTIONS(1292), - [sym_integer] = ACTIONS(1292), - [aux_sym_return_statement_token1] = ACTIONS(1292), - [aux_sym_throw_expression_token1] = ACTIONS(1292), - [aux_sym_while_statement_token1] = ACTIONS(1292), - [aux_sym_while_statement_token2] = ACTIONS(1292), - [aux_sym_do_statement_token1] = ACTIONS(1292), - [aux_sym_for_statement_token1] = ACTIONS(1292), - [aux_sym_for_statement_token2] = ACTIONS(1292), - [aux_sym_foreach_statement_token1] = ACTIONS(1292), - [aux_sym_foreach_statement_token2] = ACTIONS(1292), - [aux_sym_if_statement_token1] = ACTIONS(1292), - [aux_sym_if_statement_token2] = ACTIONS(1292), - [aux_sym_else_if_clause_token1] = ACTIONS(1292), - [aux_sym_else_clause_token1] = ACTIONS(1292), - [aux_sym_match_expression_token1] = ACTIONS(1292), - [aux_sym_match_default_expression_token1] = ACTIONS(1292), - [aux_sym_switch_statement_token1] = ACTIONS(1292), - [aux_sym_switch_block_token1] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_AT] = ACTIONS(1290), - [aux_sym_clone_expression_token1] = ACTIONS(1292), - [aux_sym_print_intrinsic_token1] = ACTIONS(1292), - [aux_sym_object_creation_expression_token1] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [aux_sym__list_destructing_token1] = ACTIONS(1292), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_self] = ACTIONS(1292), - [anon_sym_parent] = ACTIONS(1292), - [aux_sym__argument_name_token1] = ACTIONS(1292), - [aux_sym__argument_name_token2] = ACTIONS(1292), - [anon_sym_POUND_LBRACK] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [aux_sym_encapsed_string_token1] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [aux_sym_string_token1] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_BQUOTE] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1290), - [aux_sym_yield_expression_token1] = ACTIONS(1292), - [aux_sym_include_expression_token1] = ACTIONS(1292), - [aux_sym_include_once_expression_token1] = ACTIONS(1292), - [aux_sym_require_expression_token1] = ACTIONS(1292), - [aux_sym_require_once_expression_token1] = ACTIONS(1292), + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_name] = ACTIONS(1294), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1292), + [aux_sym_function_static_declaration_token1] = ACTIONS(1294), + [aux_sym_global_declaration_token1] = ACTIONS(1294), + [aux_sym_namespace_definition_token1] = ACTIONS(1294), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1294), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1294), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1294), + [anon_sym_BSLASH] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [aux_sym_trait_declaration_token1] = ACTIONS(1294), + [aux_sym_interface_declaration_token1] = ACTIONS(1294), + [aux_sym_enum_declaration_token1] = ACTIONS(1294), + [aux_sym_enum_case_token1] = ACTIONS(1294), + [aux_sym_class_declaration_token1] = ACTIONS(1294), + [aux_sym_final_modifier_token1] = ACTIONS(1294), + [aux_sym_abstract_modifier_token1] = ACTIONS(1294), + [aux_sym_readonly_modifier_token1] = ACTIONS(1294), + [aux_sym_visibility_modifier_token1] = ACTIONS(1294), + [aux_sym_visibility_modifier_token2] = ACTIONS(1294), + [aux_sym_visibility_modifier_token3] = ACTIONS(1294), + [aux_sym__arrow_function_header_token1] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1292), + [aux_sym_cast_type_token1] = ACTIONS(1294), + [aux_sym_echo_statement_token1] = ACTIONS(1294), + [anon_sym_unset] = ACTIONS(1294), + [aux_sym_declare_statement_token1] = ACTIONS(1294), + [aux_sym_declare_statement_token2] = ACTIONS(1294), + [sym_float] = ACTIONS(1294), + [aux_sym_try_statement_token1] = ACTIONS(1294), + [aux_sym_goto_statement_token1] = ACTIONS(1294), + [aux_sym_continue_statement_token1] = ACTIONS(1294), + [aux_sym_break_statement_token1] = ACTIONS(1294), + [sym_integer] = ACTIONS(1294), + [aux_sym_return_statement_token1] = ACTIONS(1294), + [aux_sym_throw_expression_token1] = ACTIONS(1294), + [aux_sym_while_statement_token1] = ACTIONS(1294), + [aux_sym_while_statement_token2] = ACTIONS(1294), + [aux_sym_do_statement_token1] = ACTIONS(1294), + [aux_sym_for_statement_token1] = ACTIONS(1294), + [aux_sym_for_statement_token2] = ACTIONS(1294), + [aux_sym_foreach_statement_token1] = ACTIONS(1294), + [aux_sym_foreach_statement_token2] = ACTIONS(1294), + [aux_sym_if_statement_token1] = ACTIONS(1294), + [aux_sym_if_statement_token2] = ACTIONS(1294), + [aux_sym_else_if_clause_token1] = ACTIONS(1294), + [aux_sym_else_clause_token1] = ACTIONS(1294), + [aux_sym_match_expression_token1] = ACTIONS(1294), + [aux_sym_match_default_expression_token1] = ACTIONS(1294), + [aux_sym_switch_statement_token1] = ACTIONS(1294), + [aux_sym_switch_block_token1] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_AT] = ACTIONS(1292), + [aux_sym_clone_expression_token1] = ACTIONS(1294), + [aux_sym_print_intrinsic_token1] = ACTIONS(1294), + [aux_sym_object_creation_expression_token1] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [aux_sym__list_destructing_token1] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_self] = ACTIONS(1294), + [anon_sym_parent] = ACTIONS(1294), + [aux_sym__argument_name_token1] = ACTIONS(1294), + [aux_sym__argument_name_token2] = ACTIONS(1294), + [anon_sym_POUND_LBRACK] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [aux_sym_encapsed_string_token1] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [aux_sym_string_token1] = ACTIONS(1292), + [anon_sym_LT_LT_LT] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1292), + [aux_sym_yield_expression_token1] = ACTIONS(1294), + [aux_sym_include_expression_token1] = ACTIONS(1294), + [aux_sym_include_once_expression_token1] = ACTIONS(1294), + [aux_sym_require_expression_token1] = ACTIONS(1294), + [aux_sym_require_once_expression_token1] = ACTIONS(1294), [sym_comment] = ACTIONS(5), }, [493] = { [sym_text_interpolation] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_name] = ACTIONS(1146), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1144), - [aux_sym_function_static_declaration_token1] = ACTIONS(1146), - [aux_sym_global_declaration_token1] = ACTIONS(1146), - [aux_sym_namespace_definition_token1] = ACTIONS(1146), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1146), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1146), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1146), - [anon_sym_BSLASH] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [aux_sym_trait_declaration_token1] = ACTIONS(1146), - [aux_sym_interface_declaration_token1] = ACTIONS(1146), - [aux_sym_enum_declaration_token1] = ACTIONS(1146), - [aux_sym_enum_case_token1] = ACTIONS(1146), - [aux_sym_class_declaration_token1] = ACTIONS(1146), - [aux_sym_final_modifier_token1] = ACTIONS(1146), - [aux_sym_abstract_modifier_token1] = ACTIONS(1146), - [aux_sym_readonly_modifier_token1] = ACTIONS(1146), - [aux_sym_visibility_modifier_token1] = ACTIONS(1146), - [aux_sym_visibility_modifier_token2] = ACTIONS(1146), - [aux_sym_visibility_modifier_token3] = ACTIONS(1146), - [aux_sym__arrow_function_header_token1] = ACTIONS(1146), - [anon_sym_LPAREN] = ACTIONS(1144), - [aux_sym_cast_type_token1] = ACTIONS(1146), - [aux_sym_echo_statement_token1] = ACTIONS(1146), - [anon_sym_unset] = ACTIONS(1146), - [aux_sym_declare_statement_token1] = ACTIONS(1146), - [aux_sym_declare_statement_token2] = ACTIONS(1146), - [sym_float] = ACTIONS(1146), - [aux_sym_try_statement_token1] = ACTIONS(1146), - [aux_sym_goto_statement_token1] = ACTIONS(1146), - [aux_sym_continue_statement_token1] = ACTIONS(1146), - [aux_sym_break_statement_token1] = ACTIONS(1146), - [sym_integer] = ACTIONS(1146), - [aux_sym_return_statement_token1] = ACTIONS(1146), - [aux_sym_throw_expression_token1] = ACTIONS(1146), - [aux_sym_while_statement_token1] = ACTIONS(1146), - [aux_sym_while_statement_token2] = ACTIONS(1146), - [aux_sym_do_statement_token1] = ACTIONS(1146), - [aux_sym_for_statement_token1] = ACTIONS(1146), - [aux_sym_for_statement_token2] = ACTIONS(1146), - [aux_sym_foreach_statement_token1] = ACTIONS(1146), - [aux_sym_foreach_statement_token2] = ACTIONS(1146), - [aux_sym_if_statement_token1] = ACTIONS(1146), - [aux_sym_if_statement_token2] = ACTIONS(1146), - [aux_sym_else_if_clause_token1] = ACTIONS(1146), - [aux_sym_else_clause_token1] = ACTIONS(1146), - [aux_sym_match_expression_token1] = ACTIONS(1146), - [aux_sym_match_default_expression_token1] = ACTIONS(1146), - [aux_sym_switch_statement_token1] = ACTIONS(1146), - [aux_sym_switch_block_token1] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_AT] = ACTIONS(1144), - [aux_sym_clone_expression_token1] = ACTIONS(1146), - [aux_sym_print_intrinsic_token1] = ACTIONS(1146), - [aux_sym_object_creation_expression_token1] = ACTIONS(1146), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [aux_sym__list_destructing_token1] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_self] = ACTIONS(1146), - [anon_sym_parent] = ACTIONS(1146), - [aux_sym__argument_name_token1] = ACTIONS(1146), - [aux_sym__argument_name_token2] = ACTIONS(1146), - [anon_sym_POUND_LBRACK] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [aux_sym_encapsed_string_token1] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [aux_sym_string_token1] = ACTIONS(1144), - [anon_sym_LT_LT_LT] = ACTIONS(1144), - [anon_sym_BQUOTE] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(1144), - [aux_sym_yield_expression_token1] = ACTIONS(1146), - [aux_sym_include_expression_token1] = ACTIONS(1146), - [aux_sym_include_once_expression_token1] = ACTIONS(1146), - [aux_sym_require_expression_token1] = ACTIONS(1146), - [aux_sym_require_once_expression_token1] = ACTIONS(1146), + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_name] = ACTIONS(1148), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1146), + [aux_sym_function_static_declaration_token1] = ACTIONS(1148), + [aux_sym_global_declaration_token1] = ACTIONS(1148), + [aux_sym_namespace_definition_token1] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1148), + [anon_sym_BSLASH] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [aux_sym_trait_declaration_token1] = ACTIONS(1148), + [aux_sym_interface_declaration_token1] = ACTIONS(1148), + [aux_sym_enum_declaration_token1] = ACTIONS(1148), + [aux_sym_enum_case_token1] = ACTIONS(1148), + [aux_sym_class_declaration_token1] = ACTIONS(1148), + [aux_sym_final_modifier_token1] = ACTIONS(1148), + [aux_sym_abstract_modifier_token1] = ACTIONS(1148), + [aux_sym_readonly_modifier_token1] = ACTIONS(1148), + [aux_sym_visibility_modifier_token1] = ACTIONS(1148), + [aux_sym_visibility_modifier_token2] = ACTIONS(1148), + [aux_sym_visibility_modifier_token3] = ACTIONS(1148), + [aux_sym__arrow_function_header_token1] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [aux_sym_cast_type_token1] = ACTIONS(1148), + [aux_sym_echo_statement_token1] = ACTIONS(1148), + [anon_sym_unset] = ACTIONS(1148), + [aux_sym_declare_statement_token1] = ACTIONS(1148), + [aux_sym_declare_statement_token2] = ACTIONS(1148), + [sym_float] = ACTIONS(1148), + [aux_sym_try_statement_token1] = ACTIONS(1148), + [aux_sym_goto_statement_token1] = ACTIONS(1148), + [aux_sym_continue_statement_token1] = ACTIONS(1148), + [aux_sym_break_statement_token1] = ACTIONS(1148), + [sym_integer] = ACTIONS(1148), + [aux_sym_return_statement_token1] = ACTIONS(1148), + [aux_sym_throw_expression_token1] = ACTIONS(1148), + [aux_sym_while_statement_token1] = ACTIONS(1148), + [aux_sym_while_statement_token2] = ACTIONS(1148), + [aux_sym_do_statement_token1] = ACTIONS(1148), + [aux_sym_for_statement_token1] = ACTIONS(1148), + [aux_sym_for_statement_token2] = ACTIONS(1148), + [aux_sym_foreach_statement_token1] = ACTIONS(1148), + [aux_sym_foreach_statement_token2] = ACTIONS(1148), + [aux_sym_if_statement_token1] = ACTIONS(1148), + [aux_sym_if_statement_token2] = ACTIONS(1148), + [aux_sym_else_if_clause_token1] = ACTIONS(1148), + [aux_sym_else_clause_token1] = ACTIONS(1148), + [aux_sym_match_expression_token1] = ACTIONS(1148), + [aux_sym_match_default_expression_token1] = ACTIONS(1148), + [aux_sym_switch_statement_token1] = ACTIONS(1148), + [aux_sym_switch_block_token1] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(1146), + [aux_sym_clone_expression_token1] = ACTIONS(1148), + [aux_sym_print_intrinsic_token1] = ACTIONS(1148), + [aux_sym_object_creation_expression_token1] = ACTIONS(1148), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [aux_sym__list_destructing_token1] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_self] = ACTIONS(1148), + [anon_sym_parent] = ACTIONS(1148), + [aux_sym__argument_name_token1] = ACTIONS(1148), + [aux_sym__argument_name_token2] = ACTIONS(1148), + [anon_sym_POUND_LBRACK] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(1146), + [aux_sym_encapsed_string_token1] = ACTIONS(1146), + [anon_sym_DQUOTE] = ACTIONS(1146), + [aux_sym_string_token1] = ACTIONS(1146), + [anon_sym_LT_LT_LT] = ACTIONS(1146), + [anon_sym_BQUOTE] = ACTIONS(1146), + [anon_sym_DOLLAR] = ACTIONS(1146), + [aux_sym_yield_expression_token1] = ACTIONS(1148), + [aux_sym_include_expression_token1] = ACTIONS(1148), + [aux_sym_include_once_expression_token1] = ACTIONS(1148), + [aux_sym_require_expression_token1] = ACTIONS(1148), + [aux_sym_require_once_expression_token1] = ACTIONS(1148), [sym_comment] = ACTIONS(5), }, [494] = { [sym_text_interpolation] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_name] = ACTIONS(1296), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1294), - [aux_sym_function_static_declaration_token1] = ACTIONS(1296), - [aux_sym_global_declaration_token1] = ACTIONS(1296), - [aux_sym_namespace_definition_token1] = ACTIONS(1296), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1296), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1296), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1296), - [anon_sym_BSLASH] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [aux_sym_trait_declaration_token1] = ACTIONS(1296), - [aux_sym_interface_declaration_token1] = ACTIONS(1296), - [aux_sym_enum_declaration_token1] = ACTIONS(1296), - [aux_sym_enum_case_token1] = ACTIONS(1296), - [aux_sym_class_declaration_token1] = ACTIONS(1296), - [aux_sym_final_modifier_token1] = ACTIONS(1296), - [aux_sym_abstract_modifier_token1] = ACTIONS(1296), - [aux_sym_readonly_modifier_token1] = ACTIONS(1296), - [aux_sym_visibility_modifier_token1] = ACTIONS(1296), - [aux_sym_visibility_modifier_token2] = ACTIONS(1296), - [aux_sym_visibility_modifier_token3] = ACTIONS(1296), - [aux_sym__arrow_function_header_token1] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1294), - [aux_sym_cast_type_token1] = ACTIONS(1296), - [aux_sym_echo_statement_token1] = ACTIONS(1296), - [anon_sym_unset] = ACTIONS(1296), - [aux_sym_declare_statement_token1] = ACTIONS(1296), - [aux_sym_declare_statement_token2] = ACTIONS(1296), - [sym_float] = ACTIONS(1296), - [aux_sym_try_statement_token1] = ACTIONS(1296), - [aux_sym_goto_statement_token1] = ACTIONS(1296), - [aux_sym_continue_statement_token1] = ACTIONS(1296), - [aux_sym_break_statement_token1] = ACTIONS(1296), - [sym_integer] = ACTIONS(1296), - [aux_sym_return_statement_token1] = ACTIONS(1296), - [aux_sym_throw_expression_token1] = ACTIONS(1296), - [aux_sym_while_statement_token1] = ACTIONS(1296), - [aux_sym_while_statement_token2] = ACTIONS(1296), - [aux_sym_do_statement_token1] = ACTIONS(1296), - [aux_sym_for_statement_token1] = ACTIONS(1296), - [aux_sym_for_statement_token2] = ACTIONS(1296), - [aux_sym_foreach_statement_token1] = ACTIONS(1296), - [aux_sym_foreach_statement_token2] = ACTIONS(1296), - [aux_sym_if_statement_token1] = ACTIONS(1296), - [aux_sym_if_statement_token2] = ACTIONS(1296), - [aux_sym_else_if_clause_token1] = ACTIONS(1296), - [aux_sym_else_clause_token1] = ACTIONS(1296), - [aux_sym_match_expression_token1] = ACTIONS(1296), - [aux_sym_match_default_expression_token1] = ACTIONS(1296), - [aux_sym_switch_statement_token1] = ACTIONS(1296), - [aux_sym_switch_block_token1] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_AT] = ACTIONS(1294), - [aux_sym_clone_expression_token1] = ACTIONS(1296), - [aux_sym_print_intrinsic_token1] = ACTIONS(1296), - [aux_sym_object_creation_expression_token1] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [aux_sym__list_destructing_token1] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_self] = ACTIONS(1296), - [anon_sym_parent] = ACTIONS(1296), - [aux_sym__argument_name_token1] = ACTIONS(1296), - [aux_sym__argument_name_token2] = ACTIONS(1296), - [anon_sym_POUND_LBRACK] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [aux_sym_encapsed_string_token1] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [aux_sym_string_token1] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [aux_sym_yield_expression_token1] = ACTIONS(1296), - [aux_sym_include_expression_token1] = ACTIONS(1296), - [aux_sym_include_once_expression_token1] = ACTIONS(1296), - [aux_sym_require_expression_token1] = ACTIONS(1296), - [aux_sym_require_once_expression_token1] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_name] = ACTIONS(1298), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1296), + [aux_sym_function_static_declaration_token1] = ACTIONS(1298), + [aux_sym_global_declaration_token1] = ACTIONS(1298), + [aux_sym_namespace_definition_token1] = ACTIONS(1298), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1298), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1298), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1298), + [anon_sym_BSLASH] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [aux_sym_trait_declaration_token1] = ACTIONS(1298), + [aux_sym_interface_declaration_token1] = ACTIONS(1298), + [aux_sym_enum_declaration_token1] = ACTIONS(1298), + [aux_sym_enum_case_token1] = ACTIONS(1298), + [aux_sym_class_declaration_token1] = ACTIONS(1298), + [aux_sym_final_modifier_token1] = ACTIONS(1298), + [aux_sym_abstract_modifier_token1] = ACTIONS(1298), + [aux_sym_readonly_modifier_token1] = ACTIONS(1298), + [aux_sym_visibility_modifier_token1] = ACTIONS(1298), + [aux_sym_visibility_modifier_token2] = ACTIONS(1298), + [aux_sym_visibility_modifier_token3] = ACTIONS(1298), + [aux_sym__arrow_function_header_token1] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1296), + [aux_sym_cast_type_token1] = ACTIONS(1298), + [aux_sym_echo_statement_token1] = ACTIONS(1298), + [anon_sym_unset] = ACTIONS(1298), + [aux_sym_declare_statement_token1] = ACTIONS(1298), + [aux_sym_declare_statement_token2] = ACTIONS(1298), + [sym_float] = ACTIONS(1298), + [aux_sym_try_statement_token1] = ACTIONS(1298), + [aux_sym_goto_statement_token1] = ACTIONS(1298), + [aux_sym_continue_statement_token1] = ACTIONS(1298), + [aux_sym_break_statement_token1] = ACTIONS(1298), + [sym_integer] = ACTIONS(1298), + [aux_sym_return_statement_token1] = ACTIONS(1298), + [aux_sym_throw_expression_token1] = ACTIONS(1298), + [aux_sym_while_statement_token1] = ACTIONS(1298), + [aux_sym_while_statement_token2] = ACTIONS(1298), + [aux_sym_do_statement_token1] = ACTIONS(1298), + [aux_sym_for_statement_token1] = ACTIONS(1298), + [aux_sym_for_statement_token2] = ACTIONS(1298), + [aux_sym_foreach_statement_token1] = ACTIONS(1298), + [aux_sym_foreach_statement_token2] = ACTIONS(1298), + [aux_sym_if_statement_token1] = ACTIONS(1298), + [aux_sym_if_statement_token2] = ACTIONS(1298), + [aux_sym_else_if_clause_token1] = ACTIONS(1298), + [aux_sym_else_clause_token1] = ACTIONS(1298), + [aux_sym_match_expression_token1] = ACTIONS(1298), + [aux_sym_match_default_expression_token1] = ACTIONS(1298), + [aux_sym_switch_statement_token1] = ACTIONS(1298), + [aux_sym_switch_block_token1] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_AT] = ACTIONS(1296), + [aux_sym_clone_expression_token1] = ACTIONS(1298), + [aux_sym_print_intrinsic_token1] = ACTIONS(1298), + [aux_sym_object_creation_expression_token1] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [aux_sym__list_destructing_token1] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_self] = ACTIONS(1298), + [anon_sym_parent] = ACTIONS(1298), + [aux_sym__argument_name_token1] = ACTIONS(1298), + [aux_sym__argument_name_token2] = ACTIONS(1298), + [anon_sym_POUND_LBRACK] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [aux_sym_encapsed_string_token1] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [aux_sym_string_token1] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [aux_sym_yield_expression_token1] = ACTIONS(1298), + [aux_sym_include_expression_token1] = ACTIONS(1298), + [aux_sym_include_once_expression_token1] = ACTIONS(1298), + [aux_sym_require_expression_token1] = ACTIONS(1298), + [aux_sym_require_once_expression_token1] = ACTIONS(1298), [sym_comment] = ACTIONS(5), }, [495] = { [sym_text_interpolation] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_name] = ACTIONS(1300), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1298), - [aux_sym_function_static_declaration_token1] = ACTIONS(1300), - [aux_sym_global_declaration_token1] = ACTIONS(1300), - [aux_sym_namespace_definition_token1] = ACTIONS(1300), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1300), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1300), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1300), - [anon_sym_BSLASH] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [aux_sym_trait_declaration_token1] = ACTIONS(1300), - [aux_sym_interface_declaration_token1] = ACTIONS(1300), - [aux_sym_enum_declaration_token1] = ACTIONS(1300), - [aux_sym_enum_case_token1] = ACTIONS(1300), - [aux_sym_class_declaration_token1] = ACTIONS(1300), - [aux_sym_final_modifier_token1] = ACTIONS(1300), - [aux_sym_abstract_modifier_token1] = ACTIONS(1300), - [aux_sym_readonly_modifier_token1] = ACTIONS(1300), - [aux_sym_visibility_modifier_token1] = ACTIONS(1300), - [aux_sym_visibility_modifier_token2] = ACTIONS(1300), - [aux_sym_visibility_modifier_token3] = ACTIONS(1300), - [aux_sym__arrow_function_header_token1] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1298), - [aux_sym_cast_type_token1] = ACTIONS(1300), - [aux_sym_echo_statement_token1] = ACTIONS(1300), - [anon_sym_unset] = ACTIONS(1300), - [aux_sym_declare_statement_token1] = ACTIONS(1300), - [aux_sym_declare_statement_token2] = ACTIONS(1300), - [sym_float] = ACTIONS(1300), - [aux_sym_try_statement_token1] = ACTIONS(1300), - [aux_sym_goto_statement_token1] = ACTIONS(1300), - [aux_sym_continue_statement_token1] = ACTIONS(1300), - [aux_sym_break_statement_token1] = ACTIONS(1300), - [sym_integer] = ACTIONS(1300), - [aux_sym_return_statement_token1] = ACTIONS(1300), - [aux_sym_throw_expression_token1] = ACTIONS(1300), - [aux_sym_while_statement_token1] = ACTIONS(1300), - [aux_sym_while_statement_token2] = ACTIONS(1300), - [aux_sym_do_statement_token1] = ACTIONS(1300), - [aux_sym_for_statement_token1] = ACTIONS(1300), - [aux_sym_for_statement_token2] = ACTIONS(1300), - [aux_sym_foreach_statement_token1] = ACTIONS(1300), - [aux_sym_foreach_statement_token2] = ACTIONS(1300), - [aux_sym_if_statement_token1] = ACTIONS(1300), - [aux_sym_if_statement_token2] = ACTIONS(1300), - [aux_sym_else_if_clause_token1] = ACTIONS(1300), - [aux_sym_else_clause_token1] = ACTIONS(1300), - [aux_sym_match_expression_token1] = ACTIONS(1300), - [aux_sym_match_default_expression_token1] = ACTIONS(1300), - [aux_sym_switch_statement_token1] = ACTIONS(1300), - [aux_sym_switch_block_token1] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(1298), - [aux_sym_clone_expression_token1] = ACTIONS(1300), - [aux_sym_print_intrinsic_token1] = ACTIONS(1300), - [aux_sym_object_creation_expression_token1] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [aux_sym__list_destructing_token1] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_self] = ACTIONS(1300), - [anon_sym_parent] = ACTIONS(1300), - [aux_sym__argument_name_token1] = ACTIONS(1300), - [aux_sym__argument_name_token2] = ACTIONS(1300), - [anon_sym_POUND_LBRACK] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [aux_sym_encapsed_string_token1] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [aux_sym_string_token1] = ACTIONS(1298), - [anon_sym_LT_LT_LT] = ACTIONS(1298), - [anon_sym_BQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [aux_sym_yield_expression_token1] = ACTIONS(1300), - [aux_sym_include_expression_token1] = ACTIONS(1300), - [aux_sym_include_once_expression_token1] = ACTIONS(1300), - [aux_sym_require_expression_token1] = ACTIONS(1300), - [aux_sym_require_once_expression_token1] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_name] = ACTIONS(1302), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1300), + [aux_sym_function_static_declaration_token1] = ACTIONS(1302), + [aux_sym_global_declaration_token1] = ACTIONS(1302), + [aux_sym_namespace_definition_token1] = ACTIONS(1302), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1302), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1302), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1302), + [anon_sym_BSLASH] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [aux_sym_trait_declaration_token1] = ACTIONS(1302), + [aux_sym_interface_declaration_token1] = ACTIONS(1302), + [aux_sym_enum_declaration_token1] = ACTIONS(1302), + [aux_sym_enum_case_token1] = ACTIONS(1302), + [aux_sym_class_declaration_token1] = ACTIONS(1302), + [aux_sym_final_modifier_token1] = ACTIONS(1302), + [aux_sym_abstract_modifier_token1] = ACTIONS(1302), + [aux_sym_readonly_modifier_token1] = ACTIONS(1302), + [aux_sym_visibility_modifier_token1] = ACTIONS(1302), + [aux_sym_visibility_modifier_token2] = ACTIONS(1302), + [aux_sym_visibility_modifier_token3] = ACTIONS(1302), + [aux_sym__arrow_function_header_token1] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1300), + [aux_sym_cast_type_token1] = ACTIONS(1302), + [aux_sym_echo_statement_token1] = ACTIONS(1302), + [anon_sym_unset] = ACTIONS(1302), + [aux_sym_declare_statement_token1] = ACTIONS(1302), + [aux_sym_declare_statement_token2] = ACTIONS(1302), + [sym_float] = ACTIONS(1302), + [aux_sym_try_statement_token1] = ACTIONS(1302), + [aux_sym_goto_statement_token1] = ACTIONS(1302), + [aux_sym_continue_statement_token1] = ACTIONS(1302), + [aux_sym_break_statement_token1] = ACTIONS(1302), + [sym_integer] = ACTIONS(1302), + [aux_sym_return_statement_token1] = ACTIONS(1302), + [aux_sym_throw_expression_token1] = ACTIONS(1302), + [aux_sym_while_statement_token1] = ACTIONS(1302), + [aux_sym_while_statement_token2] = ACTIONS(1302), + [aux_sym_do_statement_token1] = ACTIONS(1302), + [aux_sym_for_statement_token1] = ACTIONS(1302), + [aux_sym_for_statement_token2] = ACTIONS(1302), + [aux_sym_foreach_statement_token1] = ACTIONS(1302), + [aux_sym_foreach_statement_token2] = ACTIONS(1302), + [aux_sym_if_statement_token1] = ACTIONS(1302), + [aux_sym_if_statement_token2] = ACTIONS(1302), + [aux_sym_else_if_clause_token1] = ACTIONS(1302), + [aux_sym_else_clause_token1] = ACTIONS(1302), + [aux_sym_match_expression_token1] = ACTIONS(1302), + [aux_sym_match_default_expression_token1] = ACTIONS(1302), + [aux_sym_switch_statement_token1] = ACTIONS(1302), + [aux_sym_switch_block_token1] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1300), + [aux_sym_clone_expression_token1] = ACTIONS(1302), + [aux_sym_print_intrinsic_token1] = ACTIONS(1302), + [aux_sym_object_creation_expression_token1] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [aux_sym__list_destructing_token1] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_self] = ACTIONS(1302), + [anon_sym_parent] = ACTIONS(1302), + [aux_sym__argument_name_token1] = ACTIONS(1302), + [aux_sym__argument_name_token2] = ACTIONS(1302), + [anon_sym_POUND_LBRACK] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [aux_sym_encapsed_string_token1] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [aux_sym_string_token1] = ACTIONS(1300), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [aux_sym_yield_expression_token1] = ACTIONS(1302), + [aux_sym_include_expression_token1] = ACTIONS(1302), + [aux_sym_include_once_expression_token1] = ACTIONS(1302), + [aux_sym_require_expression_token1] = ACTIONS(1302), + [aux_sym_require_once_expression_token1] = ACTIONS(1302), [sym_comment] = ACTIONS(5), }, [496] = { [sym_text_interpolation] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_name] = ACTIONS(1304), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1302), - [aux_sym_function_static_declaration_token1] = ACTIONS(1304), - [aux_sym_global_declaration_token1] = ACTIONS(1304), - [aux_sym_namespace_definition_token1] = ACTIONS(1304), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1304), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1304), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1304), - [anon_sym_BSLASH] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [aux_sym_trait_declaration_token1] = ACTIONS(1304), - [aux_sym_interface_declaration_token1] = ACTIONS(1304), - [aux_sym_enum_declaration_token1] = ACTIONS(1304), - [aux_sym_enum_case_token1] = ACTIONS(1304), - [aux_sym_class_declaration_token1] = ACTIONS(1304), - [aux_sym_final_modifier_token1] = ACTIONS(1304), - [aux_sym_abstract_modifier_token1] = ACTIONS(1304), - [aux_sym_readonly_modifier_token1] = ACTIONS(1304), - [aux_sym_visibility_modifier_token1] = ACTIONS(1304), - [aux_sym_visibility_modifier_token2] = ACTIONS(1304), - [aux_sym_visibility_modifier_token3] = ACTIONS(1304), - [aux_sym__arrow_function_header_token1] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1302), - [aux_sym_cast_type_token1] = ACTIONS(1304), - [aux_sym_echo_statement_token1] = ACTIONS(1304), - [anon_sym_unset] = ACTIONS(1304), - [aux_sym_declare_statement_token1] = ACTIONS(1304), - [aux_sym_declare_statement_token2] = ACTIONS(1304), - [sym_float] = ACTIONS(1304), - [aux_sym_try_statement_token1] = ACTIONS(1304), - [aux_sym_goto_statement_token1] = ACTIONS(1304), - [aux_sym_continue_statement_token1] = ACTIONS(1304), - [aux_sym_break_statement_token1] = ACTIONS(1304), - [sym_integer] = ACTIONS(1304), - [aux_sym_return_statement_token1] = ACTIONS(1304), - [aux_sym_throw_expression_token1] = ACTIONS(1304), - [aux_sym_while_statement_token1] = ACTIONS(1304), - [aux_sym_while_statement_token2] = ACTIONS(1304), - [aux_sym_do_statement_token1] = ACTIONS(1304), - [aux_sym_for_statement_token1] = ACTIONS(1304), - [aux_sym_for_statement_token2] = ACTIONS(1304), - [aux_sym_foreach_statement_token1] = ACTIONS(1304), - [aux_sym_foreach_statement_token2] = ACTIONS(1304), - [aux_sym_if_statement_token1] = ACTIONS(1304), - [aux_sym_if_statement_token2] = ACTIONS(1304), - [aux_sym_else_if_clause_token1] = ACTIONS(1304), - [aux_sym_else_clause_token1] = ACTIONS(1304), - [aux_sym_match_expression_token1] = ACTIONS(1304), - [aux_sym_match_default_expression_token1] = ACTIONS(1304), - [aux_sym_switch_statement_token1] = ACTIONS(1304), - [aux_sym_switch_block_token1] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_AT] = ACTIONS(1302), - [aux_sym_clone_expression_token1] = ACTIONS(1304), - [aux_sym_print_intrinsic_token1] = ACTIONS(1304), - [aux_sym_object_creation_expression_token1] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [aux_sym__list_destructing_token1] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_self] = ACTIONS(1304), - [anon_sym_parent] = ACTIONS(1304), - [aux_sym__argument_name_token1] = ACTIONS(1304), - [aux_sym__argument_name_token2] = ACTIONS(1304), - [anon_sym_POUND_LBRACK] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [aux_sym_encapsed_string_token1] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [aux_sym_string_token1] = ACTIONS(1302), - [anon_sym_LT_LT_LT] = ACTIONS(1302), - [anon_sym_BQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [aux_sym_yield_expression_token1] = ACTIONS(1304), - [aux_sym_include_expression_token1] = ACTIONS(1304), - [aux_sym_include_once_expression_token1] = ACTIONS(1304), - [aux_sym_require_expression_token1] = ACTIONS(1304), - [aux_sym_require_once_expression_token1] = ACTIONS(1304), + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_name] = ACTIONS(1306), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1304), + [aux_sym_function_static_declaration_token1] = ACTIONS(1306), + [aux_sym_global_declaration_token1] = ACTIONS(1306), + [aux_sym_namespace_definition_token1] = ACTIONS(1306), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1306), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1306), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1306), + [anon_sym_BSLASH] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [aux_sym_trait_declaration_token1] = ACTIONS(1306), + [aux_sym_interface_declaration_token1] = ACTIONS(1306), + [aux_sym_enum_declaration_token1] = ACTIONS(1306), + [aux_sym_enum_case_token1] = ACTIONS(1306), + [aux_sym_class_declaration_token1] = ACTIONS(1306), + [aux_sym_final_modifier_token1] = ACTIONS(1306), + [aux_sym_abstract_modifier_token1] = ACTIONS(1306), + [aux_sym_readonly_modifier_token1] = ACTIONS(1306), + [aux_sym_visibility_modifier_token1] = ACTIONS(1306), + [aux_sym_visibility_modifier_token2] = ACTIONS(1306), + [aux_sym_visibility_modifier_token3] = ACTIONS(1306), + [aux_sym__arrow_function_header_token1] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1304), + [aux_sym_cast_type_token1] = ACTIONS(1306), + [aux_sym_echo_statement_token1] = ACTIONS(1306), + [anon_sym_unset] = ACTIONS(1306), + [aux_sym_declare_statement_token1] = ACTIONS(1306), + [aux_sym_declare_statement_token2] = ACTIONS(1306), + [sym_float] = ACTIONS(1306), + [aux_sym_try_statement_token1] = ACTIONS(1306), + [aux_sym_goto_statement_token1] = ACTIONS(1306), + [aux_sym_continue_statement_token1] = ACTIONS(1306), + [aux_sym_break_statement_token1] = ACTIONS(1306), + [sym_integer] = ACTIONS(1306), + [aux_sym_return_statement_token1] = ACTIONS(1306), + [aux_sym_throw_expression_token1] = ACTIONS(1306), + [aux_sym_while_statement_token1] = ACTIONS(1306), + [aux_sym_while_statement_token2] = ACTIONS(1306), + [aux_sym_do_statement_token1] = ACTIONS(1306), + [aux_sym_for_statement_token1] = ACTIONS(1306), + [aux_sym_for_statement_token2] = ACTIONS(1306), + [aux_sym_foreach_statement_token1] = ACTIONS(1306), + [aux_sym_foreach_statement_token2] = ACTIONS(1306), + [aux_sym_if_statement_token1] = ACTIONS(1306), + [aux_sym_if_statement_token2] = ACTIONS(1306), + [aux_sym_else_if_clause_token1] = ACTIONS(1306), + [aux_sym_else_clause_token1] = ACTIONS(1306), + [aux_sym_match_expression_token1] = ACTIONS(1306), + [aux_sym_match_default_expression_token1] = ACTIONS(1306), + [aux_sym_switch_statement_token1] = ACTIONS(1306), + [aux_sym_switch_block_token1] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_AT] = ACTIONS(1304), + [aux_sym_clone_expression_token1] = ACTIONS(1306), + [aux_sym_print_intrinsic_token1] = ACTIONS(1306), + [aux_sym_object_creation_expression_token1] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [aux_sym__list_destructing_token1] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_self] = ACTIONS(1306), + [anon_sym_parent] = ACTIONS(1306), + [aux_sym__argument_name_token1] = ACTIONS(1306), + [aux_sym__argument_name_token2] = ACTIONS(1306), + [anon_sym_POUND_LBRACK] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [aux_sym_encapsed_string_token1] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [aux_sym_string_token1] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [aux_sym_yield_expression_token1] = ACTIONS(1306), + [aux_sym_include_expression_token1] = ACTIONS(1306), + [aux_sym_include_once_expression_token1] = ACTIONS(1306), + [aux_sym_require_expression_token1] = ACTIONS(1306), + [aux_sym_require_once_expression_token1] = ACTIONS(1306), [sym_comment] = ACTIONS(5), }, [497] = { [sym_text_interpolation] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_name] = ACTIONS(1308), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1306), - [aux_sym_function_static_declaration_token1] = ACTIONS(1308), - [aux_sym_global_declaration_token1] = ACTIONS(1308), - [aux_sym_namespace_definition_token1] = ACTIONS(1308), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1308), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1308), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1308), - [anon_sym_BSLASH] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [aux_sym_trait_declaration_token1] = ACTIONS(1308), - [aux_sym_interface_declaration_token1] = ACTIONS(1308), - [aux_sym_enum_declaration_token1] = ACTIONS(1308), - [aux_sym_enum_case_token1] = ACTIONS(1308), - [aux_sym_class_declaration_token1] = ACTIONS(1308), - [aux_sym_final_modifier_token1] = ACTIONS(1308), - [aux_sym_abstract_modifier_token1] = ACTIONS(1308), - [aux_sym_readonly_modifier_token1] = ACTIONS(1308), - [aux_sym_visibility_modifier_token1] = ACTIONS(1308), - [aux_sym_visibility_modifier_token2] = ACTIONS(1308), - [aux_sym_visibility_modifier_token3] = ACTIONS(1308), - [aux_sym__arrow_function_header_token1] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1306), - [aux_sym_cast_type_token1] = ACTIONS(1308), - [aux_sym_echo_statement_token1] = ACTIONS(1308), - [anon_sym_unset] = ACTIONS(1308), - [aux_sym_declare_statement_token1] = ACTIONS(1308), - [aux_sym_declare_statement_token2] = ACTIONS(1308), - [sym_float] = ACTIONS(1308), - [aux_sym_try_statement_token1] = ACTIONS(1308), - [aux_sym_goto_statement_token1] = ACTIONS(1308), - [aux_sym_continue_statement_token1] = ACTIONS(1308), - [aux_sym_break_statement_token1] = ACTIONS(1308), - [sym_integer] = ACTIONS(1308), - [aux_sym_return_statement_token1] = ACTIONS(1308), - [aux_sym_throw_expression_token1] = ACTIONS(1308), - [aux_sym_while_statement_token1] = ACTIONS(1308), - [aux_sym_while_statement_token2] = ACTIONS(1308), - [aux_sym_do_statement_token1] = ACTIONS(1308), - [aux_sym_for_statement_token1] = ACTIONS(1308), - [aux_sym_for_statement_token2] = ACTIONS(1308), - [aux_sym_foreach_statement_token1] = ACTIONS(1308), - [aux_sym_foreach_statement_token2] = ACTIONS(1308), - [aux_sym_if_statement_token1] = ACTIONS(1308), - [aux_sym_if_statement_token2] = ACTIONS(1308), - [aux_sym_else_if_clause_token1] = ACTIONS(1308), - [aux_sym_else_clause_token1] = ACTIONS(1308), - [aux_sym_match_expression_token1] = ACTIONS(1308), - [aux_sym_match_default_expression_token1] = ACTIONS(1308), - [aux_sym_switch_statement_token1] = ACTIONS(1308), - [aux_sym_switch_block_token1] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_AT] = ACTIONS(1306), - [aux_sym_clone_expression_token1] = ACTIONS(1308), - [aux_sym_print_intrinsic_token1] = ACTIONS(1308), - [aux_sym_object_creation_expression_token1] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [aux_sym__list_destructing_token1] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_self] = ACTIONS(1308), - [anon_sym_parent] = ACTIONS(1308), - [aux_sym__argument_name_token1] = ACTIONS(1308), - [aux_sym__argument_name_token2] = ACTIONS(1308), - [anon_sym_POUND_LBRACK] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [aux_sym_encapsed_string_token1] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [aux_sym_string_token1] = ACTIONS(1306), - [anon_sym_LT_LT_LT] = ACTIONS(1306), - [anon_sym_BQUOTE] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1306), - [aux_sym_yield_expression_token1] = ACTIONS(1308), - [aux_sym_include_expression_token1] = ACTIONS(1308), - [aux_sym_include_once_expression_token1] = ACTIONS(1308), - [aux_sym_require_expression_token1] = ACTIONS(1308), - [aux_sym_require_once_expression_token1] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_name] = ACTIONS(1310), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1308), + [aux_sym_function_static_declaration_token1] = ACTIONS(1310), + [aux_sym_global_declaration_token1] = ACTIONS(1310), + [aux_sym_namespace_definition_token1] = ACTIONS(1310), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1310), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1310), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1310), + [anon_sym_BSLASH] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [aux_sym_trait_declaration_token1] = ACTIONS(1310), + [aux_sym_interface_declaration_token1] = ACTIONS(1310), + [aux_sym_enum_declaration_token1] = ACTIONS(1310), + [aux_sym_enum_case_token1] = ACTIONS(1310), + [aux_sym_class_declaration_token1] = ACTIONS(1310), + [aux_sym_final_modifier_token1] = ACTIONS(1310), + [aux_sym_abstract_modifier_token1] = ACTIONS(1310), + [aux_sym_readonly_modifier_token1] = ACTIONS(1310), + [aux_sym_visibility_modifier_token1] = ACTIONS(1310), + [aux_sym_visibility_modifier_token2] = ACTIONS(1310), + [aux_sym_visibility_modifier_token3] = ACTIONS(1310), + [aux_sym__arrow_function_header_token1] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1308), + [aux_sym_cast_type_token1] = ACTIONS(1310), + [aux_sym_echo_statement_token1] = ACTIONS(1310), + [anon_sym_unset] = ACTIONS(1310), + [aux_sym_declare_statement_token1] = ACTIONS(1310), + [aux_sym_declare_statement_token2] = ACTIONS(1310), + [sym_float] = ACTIONS(1310), + [aux_sym_try_statement_token1] = ACTIONS(1310), + [aux_sym_goto_statement_token1] = ACTIONS(1310), + [aux_sym_continue_statement_token1] = ACTIONS(1310), + [aux_sym_break_statement_token1] = ACTIONS(1310), + [sym_integer] = ACTIONS(1310), + [aux_sym_return_statement_token1] = ACTIONS(1310), + [aux_sym_throw_expression_token1] = ACTIONS(1310), + [aux_sym_while_statement_token1] = ACTIONS(1310), + [aux_sym_while_statement_token2] = ACTIONS(1310), + [aux_sym_do_statement_token1] = ACTIONS(1310), + [aux_sym_for_statement_token1] = ACTIONS(1310), + [aux_sym_for_statement_token2] = ACTIONS(1310), + [aux_sym_foreach_statement_token1] = ACTIONS(1310), + [aux_sym_foreach_statement_token2] = ACTIONS(1310), + [aux_sym_if_statement_token1] = ACTIONS(1310), + [aux_sym_if_statement_token2] = ACTIONS(1310), + [aux_sym_else_if_clause_token1] = ACTIONS(1310), + [aux_sym_else_clause_token1] = ACTIONS(1310), + [aux_sym_match_expression_token1] = ACTIONS(1310), + [aux_sym_match_default_expression_token1] = ACTIONS(1310), + [aux_sym_switch_statement_token1] = ACTIONS(1310), + [aux_sym_switch_block_token1] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(1308), + [aux_sym_clone_expression_token1] = ACTIONS(1310), + [aux_sym_print_intrinsic_token1] = ACTIONS(1310), + [aux_sym_object_creation_expression_token1] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [aux_sym__list_destructing_token1] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_self] = ACTIONS(1310), + [anon_sym_parent] = ACTIONS(1310), + [aux_sym__argument_name_token1] = ACTIONS(1310), + [aux_sym__argument_name_token2] = ACTIONS(1310), + [anon_sym_POUND_LBRACK] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [aux_sym_encapsed_string_token1] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [aux_sym_string_token1] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(1308), + [aux_sym_yield_expression_token1] = ACTIONS(1310), + [aux_sym_include_expression_token1] = ACTIONS(1310), + [aux_sym_include_once_expression_token1] = ACTIONS(1310), + [aux_sym_require_expression_token1] = ACTIONS(1310), + [aux_sym_require_once_expression_token1] = ACTIONS(1310), [sym_comment] = ACTIONS(5), }, [498] = { [sym_text_interpolation] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_name] = ACTIONS(1312), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1310), - [aux_sym_function_static_declaration_token1] = ACTIONS(1312), - [aux_sym_global_declaration_token1] = ACTIONS(1312), - [aux_sym_namespace_definition_token1] = ACTIONS(1312), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1312), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1312), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1312), - [anon_sym_BSLASH] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [aux_sym_trait_declaration_token1] = ACTIONS(1312), - [aux_sym_interface_declaration_token1] = ACTIONS(1312), - [aux_sym_enum_declaration_token1] = ACTIONS(1312), - [aux_sym_enum_case_token1] = ACTIONS(1312), - [aux_sym_class_declaration_token1] = ACTIONS(1312), - [aux_sym_final_modifier_token1] = ACTIONS(1312), - [aux_sym_abstract_modifier_token1] = ACTIONS(1312), - [aux_sym_readonly_modifier_token1] = ACTIONS(1312), - [aux_sym_visibility_modifier_token1] = ACTIONS(1312), - [aux_sym_visibility_modifier_token2] = ACTIONS(1312), - [aux_sym_visibility_modifier_token3] = ACTIONS(1312), - [aux_sym__arrow_function_header_token1] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1310), - [aux_sym_cast_type_token1] = ACTIONS(1312), - [aux_sym_echo_statement_token1] = ACTIONS(1312), - [anon_sym_unset] = ACTIONS(1312), - [aux_sym_declare_statement_token1] = ACTIONS(1312), - [aux_sym_declare_statement_token2] = ACTIONS(1312), - [sym_float] = ACTIONS(1312), - [aux_sym_try_statement_token1] = ACTIONS(1312), - [aux_sym_goto_statement_token1] = ACTIONS(1312), - [aux_sym_continue_statement_token1] = ACTIONS(1312), - [aux_sym_break_statement_token1] = ACTIONS(1312), - [sym_integer] = ACTIONS(1312), - [aux_sym_return_statement_token1] = ACTIONS(1312), - [aux_sym_throw_expression_token1] = ACTIONS(1312), - [aux_sym_while_statement_token1] = ACTIONS(1312), - [aux_sym_while_statement_token2] = ACTIONS(1312), - [aux_sym_do_statement_token1] = ACTIONS(1312), - [aux_sym_for_statement_token1] = ACTIONS(1312), - [aux_sym_for_statement_token2] = ACTIONS(1312), - [aux_sym_foreach_statement_token1] = ACTIONS(1312), - [aux_sym_foreach_statement_token2] = ACTIONS(1312), - [aux_sym_if_statement_token1] = ACTIONS(1312), - [aux_sym_if_statement_token2] = ACTIONS(1312), - [aux_sym_else_if_clause_token1] = ACTIONS(1312), - [aux_sym_else_clause_token1] = ACTIONS(1312), - [aux_sym_match_expression_token1] = ACTIONS(1312), - [aux_sym_match_default_expression_token1] = ACTIONS(1312), - [aux_sym_switch_statement_token1] = ACTIONS(1312), - [aux_sym_switch_block_token1] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_AT] = ACTIONS(1310), - [aux_sym_clone_expression_token1] = ACTIONS(1312), - [aux_sym_print_intrinsic_token1] = ACTIONS(1312), - [aux_sym_object_creation_expression_token1] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [aux_sym__list_destructing_token1] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_self] = ACTIONS(1312), - [anon_sym_parent] = ACTIONS(1312), - [aux_sym__argument_name_token1] = ACTIONS(1312), - [aux_sym__argument_name_token2] = ACTIONS(1312), - [anon_sym_POUND_LBRACK] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [aux_sym_encapsed_string_token1] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [aux_sym_string_token1] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1310), - [anon_sym_BQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1310), - [aux_sym_yield_expression_token1] = ACTIONS(1312), - [aux_sym_include_expression_token1] = ACTIONS(1312), - [aux_sym_include_once_expression_token1] = ACTIONS(1312), - [aux_sym_require_expression_token1] = ACTIONS(1312), - [aux_sym_require_once_expression_token1] = ACTIONS(1312), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_name] = ACTIONS(1314), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1312), + [aux_sym_function_static_declaration_token1] = ACTIONS(1314), + [aux_sym_global_declaration_token1] = ACTIONS(1314), + [aux_sym_namespace_definition_token1] = ACTIONS(1314), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1314), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1314), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1314), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [aux_sym_trait_declaration_token1] = ACTIONS(1314), + [aux_sym_interface_declaration_token1] = ACTIONS(1314), + [aux_sym_enum_declaration_token1] = ACTIONS(1314), + [aux_sym_enum_case_token1] = ACTIONS(1314), + [aux_sym_class_declaration_token1] = ACTIONS(1314), + [aux_sym_final_modifier_token1] = ACTIONS(1314), + [aux_sym_abstract_modifier_token1] = ACTIONS(1314), + [aux_sym_readonly_modifier_token1] = ACTIONS(1314), + [aux_sym_visibility_modifier_token1] = ACTIONS(1314), + [aux_sym_visibility_modifier_token2] = ACTIONS(1314), + [aux_sym_visibility_modifier_token3] = ACTIONS(1314), + [aux_sym__arrow_function_header_token1] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1312), + [aux_sym_cast_type_token1] = ACTIONS(1314), + [aux_sym_echo_statement_token1] = ACTIONS(1314), + [anon_sym_unset] = ACTIONS(1314), + [aux_sym_declare_statement_token1] = ACTIONS(1314), + [aux_sym_declare_statement_token2] = ACTIONS(1314), + [sym_float] = ACTIONS(1314), + [aux_sym_try_statement_token1] = ACTIONS(1314), + [aux_sym_goto_statement_token1] = ACTIONS(1314), + [aux_sym_continue_statement_token1] = ACTIONS(1314), + [aux_sym_break_statement_token1] = ACTIONS(1314), + [sym_integer] = ACTIONS(1314), + [aux_sym_return_statement_token1] = ACTIONS(1314), + [aux_sym_throw_expression_token1] = ACTIONS(1314), + [aux_sym_while_statement_token1] = ACTIONS(1314), + [aux_sym_while_statement_token2] = ACTIONS(1314), + [aux_sym_do_statement_token1] = ACTIONS(1314), + [aux_sym_for_statement_token1] = ACTIONS(1314), + [aux_sym_for_statement_token2] = ACTIONS(1314), + [aux_sym_foreach_statement_token1] = ACTIONS(1314), + [aux_sym_foreach_statement_token2] = ACTIONS(1314), + [aux_sym_if_statement_token1] = ACTIONS(1314), + [aux_sym_if_statement_token2] = ACTIONS(1314), + [aux_sym_else_if_clause_token1] = ACTIONS(1314), + [aux_sym_else_clause_token1] = ACTIONS(1314), + [aux_sym_match_expression_token1] = ACTIONS(1314), + [aux_sym_match_default_expression_token1] = ACTIONS(1314), + [aux_sym_switch_statement_token1] = ACTIONS(1314), + [aux_sym_switch_block_token1] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [aux_sym_clone_expression_token1] = ACTIONS(1314), + [aux_sym_print_intrinsic_token1] = ACTIONS(1314), + [aux_sym_object_creation_expression_token1] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [aux_sym__list_destructing_token1] = ACTIONS(1314), + [anon_sym_LBRACK] = ACTIONS(1312), + [anon_sym_self] = ACTIONS(1314), + [anon_sym_parent] = ACTIONS(1314), + [aux_sym__argument_name_token1] = ACTIONS(1314), + [aux_sym__argument_name_token2] = ACTIONS(1314), + [anon_sym_POUND_LBRACK] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [aux_sym_encapsed_string_token1] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [aux_sym_string_token1] = ACTIONS(1312), + [anon_sym_LT_LT_LT] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1312), + [aux_sym_yield_expression_token1] = ACTIONS(1314), + [aux_sym_include_expression_token1] = ACTIONS(1314), + [aux_sym_include_once_expression_token1] = ACTIONS(1314), + [aux_sym_require_expression_token1] = ACTIONS(1314), + [aux_sym_require_once_expression_token1] = ACTIONS(1314), [sym_comment] = ACTIONS(5), }, [499] = { [sym_text_interpolation] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1122), - [sym_name] = ACTIONS(1124), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1122), - [aux_sym_function_static_declaration_token1] = ACTIONS(1124), - [aux_sym_global_declaration_token1] = ACTIONS(1124), - [aux_sym_namespace_definition_token1] = ACTIONS(1124), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1124), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1124), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1124), - [anon_sym_BSLASH] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(1122), - [aux_sym_trait_declaration_token1] = ACTIONS(1124), - [aux_sym_interface_declaration_token1] = ACTIONS(1124), - [aux_sym_enum_declaration_token1] = ACTIONS(1124), - [aux_sym_enum_case_token1] = ACTIONS(1124), - [aux_sym_class_declaration_token1] = ACTIONS(1124), - [aux_sym_final_modifier_token1] = ACTIONS(1124), - [aux_sym_abstract_modifier_token1] = ACTIONS(1124), - [aux_sym_readonly_modifier_token1] = ACTIONS(1124), - [aux_sym_visibility_modifier_token1] = ACTIONS(1124), - [aux_sym_visibility_modifier_token2] = ACTIONS(1124), - [aux_sym_visibility_modifier_token3] = ACTIONS(1124), - [aux_sym__arrow_function_header_token1] = ACTIONS(1124), - [anon_sym_LPAREN] = ACTIONS(1122), - [aux_sym_cast_type_token1] = ACTIONS(1124), - [aux_sym_echo_statement_token1] = ACTIONS(1124), - [anon_sym_unset] = ACTIONS(1124), - [aux_sym_declare_statement_token1] = ACTIONS(1124), - [aux_sym_declare_statement_token2] = ACTIONS(1124), - [sym_float] = ACTIONS(1124), - [aux_sym_try_statement_token1] = ACTIONS(1124), - [aux_sym_goto_statement_token1] = ACTIONS(1124), - [aux_sym_continue_statement_token1] = ACTIONS(1124), - [aux_sym_break_statement_token1] = ACTIONS(1124), - [sym_integer] = ACTIONS(1124), - [aux_sym_return_statement_token1] = ACTIONS(1124), - [aux_sym_throw_expression_token1] = ACTIONS(1124), - [aux_sym_while_statement_token1] = ACTIONS(1124), - [aux_sym_while_statement_token2] = ACTIONS(1124), - [aux_sym_do_statement_token1] = ACTIONS(1124), - [aux_sym_for_statement_token1] = ACTIONS(1124), - [aux_sym_for_statement_token2] = ACTIONS(1124), - [aux_sym_foreach_statement_token1] = ACTIONS(1124), - [aux_sym_foreach_statement_token2] = ACTIONS(1124), - [aux_sym_if_statement_token1] = ACTIONS(1124), - [aux_sym_if_statement_token2] = ACTIONS(1124), - [aux_sym_else_if_clause_token1] = ACTIONS(1124), - [aux_sym_else_clause_token1] = ACTIONS(1124), - [aux_sym_match_expression_token1] = ACTIONS(1124), - [aux_sym_match_default_expression_token1] = ACTIONS(1124), - [aux_sym_switch_statement_token1] = ACTIONS(1124), - [aux_sym_switch_block_token1] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_AT] = ACTIONS(1122), - [aux_sym_clone_expression_token1] = ACTIONS(1124), - [aux_sym_print_intrinsic_token1] = ACTIONS(1124), - [aux_sym_object_creation_expression_token1] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [aux_sym__list_destructing_token1] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_self] = ACTIONS(1124), - [anon_sym_parent] = ACTIONS(1124), - [aux_sym__argument_name_token1] = ACTIONS(1124), - [aux_sym__argument_name_token2] = ACTIONS(1124), - [anon_sym_POUND_LBRACK] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [aux_sym_encapsed_string_token1] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [aux_sym_string_token1] = ACTIONS(1122), - [anon_sym_LT_LT_LT] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1122), - [anon_sym_DOLLAR] = ACTIONS(1122), - [aux_sym_yield_expression_token1] = ACTIONS(1124), - [aux_sym_include_expression_token1] = ACTIONS(1124), - [aux_sym_include_once_expression_token1] = ACTIONS(1124), - [aux_sym_require_expression_token1] = ACTIONS(1124), - [aux_sym_require_once_expression_token1] = ACTIONS(1124), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_name] = ACTIONS(1126), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1124), + [aux_sym_function_static_declaration_token1] = ACTIONS(1126), + [aux_sym_global_declaration_token1] = ACTIONS(1126), + [aux_sym_namespace_definition_token1] = ACTIONS(1126), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1126), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1126), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1126), + [anon_sym_BSLASH] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [aux_sym_trait_declaration_token1] = ACTIONS(1126), + [aux_sym_interface_declaration_token1] = ACTIONS(1126), + [aux_sym_enum_declaration_token1] = ACTIONS(1126), + [aux_sym_enum_case_token1] = ACTIONS(1126), + [aux_sym_class_declaration_token1] = ACTIONS(1126), + [aux_sym_final_modifier_token1] = ACTIONS(1126), + [aux_sym_abstract_modifier_token1] = ACTIONS(1126), + [aux_sym_readonly_modifier_token1] = ACTIONS(1126), + [aux_sym_visibility_modifier_token1] = ACTIONS(1126), + [aux_sym_visibility_modifier_token2] = ACTIONS(1126), + [aux_sym_visibility_modifier_token3] = ACTIONS(1126), + [aux_sym__arrow_function_header_token1] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(1124), + [aux_sym_cast_type_token1] = ACTIONS(1126), + [aux_sym_echo_statement_token1] = ACTIONS(1126), + [anon_sym_unset] = ACTIONS(1126), + [aux_sym_declare_statement_token1] = ACTIONS(1126), + [aux_sym_declare_statement_token2] = ACTIONS(1126), + [sym_float] = ACTIONS(1126), + [aux_sym_try_statement_token1] = ACTIONS(1126), + [aux_sym_goto_statement_token1] = ACTIONS(1126), + [aux_sym_continue_statement_token1] = ACTIONS(1126), + [aux_sym_break_statement_token1] = ACTIONS(1126), + [sym_integer] = ACTIONS(1126), + [aux_sym_return_statement_token1] = ACTIONS(1126), + [aux_sym_throw_expression_token1] = ACTIONS(1126), + [aux_sym_while_statement_token1] = ACTIONS(1126), + [aux_sym_while_statement_token2] = ACTIONS(1126), + [aux_sym_do_statement_token1] = ACTIONS(1126), + [aux_sym_for_statement_token1] = ACTIONS(1126), + [aux_sym_for_statement_token2] = ACTIONS(1126), + [aux_sym_foreach_statement_token1] = ACTIONS(1126), + [aux_sym_foreach_statement_token2] = ACTIONS(1126), + [aux_sym_if_statement_token1] = ACTIONS(1126), + [aux_sym_if_statement_token2] = ACTIONS(1126), + [aux_sym_else_if_clause_token1] = ACTIONS(1126), + [aux_sym_else_clause_token1] = ACTIONS(1126), + [aux_sym_match_expression_token1] = ACTIONS(1126), + [aux_sym_match_default_expression_token1] = ACTIONS(1126), + [aux_sym_switch_statement_token1] = ACTIONS(1126), + [aux_sym_switch_block_token1] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1124), + [aux_sym_clone_expression_token1] = ACTIONS(1126), + [aux_sym_print_intrinsic_token1] = ACTIONS(1126), + [aux_sym_object_creation_expression_token1] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1124), + [aux_sym__list_destructing_token1] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1124), + [anon_sym_self] = ACTIONS(1126), + [anon_sym_parent] = ACTIONS(1126), + [aux_sym__argument_name_token1] = ACTIONS(1126), + [aux_sym__argument_name_token2] = ACTIONS(1126), + [anon_sym_POUND_LBRACK] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [aux_sym_encapsed_string_token1] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [aux_sym_string_token1] = ACTIONS(1124), + [anon_sym_LT_LT_LT] = ACTIONS(1124), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_DOLLAR] = ACTIONS(1124), + [aux_sym_yield_expression_token1] = ACTIONS(1126), + [aux_sym_include_expression_token1] = ACTIONS(1126), + [aux_sym_include_once_expression_token1] = ACTIONS(1126), + [aux_sym_require_expression_token1] = ACTIONS(1126), + [aux_sym_require_once_expression_token1] = ACTIONS(1126), [sym_comment] = ACTIONS(5), }, [500] = { [sym_text_interpolation] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_name] = ACTIONS(1316), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1314), - [aux_sym_function_static_declaration_token1] = ACTIONS(1316), - [aux_sym_global_declaration_token1] = ACTIONS(1316), - [aux_sym_namespace_definition_token1] = ACTIONS(1316), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1316), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1316), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1316), - [anon_sym_BSLASH] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [aux_sym_trait_declaration_token1] = ACTIONS(1316), - [aux_sym_interface_declaration_token1] = ACTIONS(1316), - [aux_sym_enum_declaration_token1] = ACTIONS(1316), - [aux_sym_enum_case_token1] = ACTIONS(1316), - [aux_sym_class_declaration_token1] = ACTIONS(1316), - [aux_sym_final_modifier_token1] = ACTIONS(1316), - [aux_sym_abstract_modifier_token1] = ACTIONS(1316), - [aux_sym_readonly_modifier_token1] = ACTIONS(1316), - [aux_sym_visibility_modifier_token1] = ACTIONS(1316), - [aux_sym_visibility_modifier_token2] = ACTIONS(1316), - [aux_sym_visibility_modifier_token3] = ACTIONS(1316), - [aux_sym__arrow_function_header_token1] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1314), - [aux_sym_cast_type_token1] = ACTIONS(1316), - [aux_sym_echo_statement_token1] = ACTIONS(1316), - [anon_sym_unset] = ACTIONS(1316), - [aux_sym_declare_statement_token1] = ACTIONS(1316), - [aux_sym_declare_statement_token2] = ACTIONS(1316), - [sym_float] = ACTIONS(1316), - [aux_sym_try_statement_token1] = ACTIONS(1316), - [aux_sym_goto_statement_token1] = ACTIONS(1316), - [aux_sym_continue_statement_token1] = ACTIONS(1316), - [aux_sym_break_statement_token1] = ACTIONS(1316), - [sym_integer] = ACTIONS(1316), - [aux_sym_return_statement_token1] = ACTIONS(1316), - [aux_sym_throw_expression_token1] = ACTIONS(1316), - [aux_sym_while_statement_token1] = ACTIONS(1316), - [aux_sym_while_statement_token2] = ACTIONS(1316), - [aux_sym_do_statement_token1] = ACTIONS(1316), - [aux_sym_for_statement_token1] = ACTIONS(1316), - [aux_sym_for_statement_token2] = ACTIONS(1316), - [aux_sym_foreach_statement_token1] = ACTIONS(1316), - [aux_sym_foreach_statement_token2] = ACTIONS(1316), - [aux_sym_if_statement_token1] = ACTIONS(1316), - [aux_sym_if_statement_token2] = ACTIONS(1316), - [aux_sym_else_if_clause_token1] = ACTIONS(1316), - [aux_sym_else_clause_token1] = ACTIONS(1316), - [aux_sym_match_expression_token1] = ACTIONS(1316), - [aux_sym_match_default_expression_token1] = ACTIONS(1316), - [aux_sym_switch_statement_token1] = ACTIONS(1316), - [aux_sym_switch_block_token1] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(1314), - [aux_sym_clone_expression_token1] = ACTIONS(1316), - [aux_sym_print_intrinsic_token1] = ACTIONS(1316), - [aux_sym_object_creation_expression_token1] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [aux_sym__list_destructing_token1] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_self] = ACTIONS(1316), - [anon_sym_parent] = ACTIONS(1316), - [aux_sym__argument_name_token1] = ACTIONS(1316), - [aux_sym__argument_name_token2] = ACTIONS(1316), - [anon_sym_POUND_LBRACK] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [aux_sym_encapsed_string_token1] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [aux_sym_string_token1] = ACTIONS(1314), - [anon_sym_LT_LT_LT] = ACTIONS(1314), - [anon_sym_BQUOTE] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1314), - [aux_sym_yield_expression_token1] = ACTIONS(1316), - [aux_sym_include_expression_token1] = ACTIONS(1316), - [aux_sym_include_once_expression_token1] = ACTIONS(1316), - [aux_sym_require_expression_token1] = ACTIONS(1316), - [aux_sym_require_once_expression_token1] = ACTIONS(1316), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_name] = ACTIONS(1318), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1316), + [aux_sym_function_static_declaration_token1] = ACTIONS(1318), + [aux_sym_global_declaration_token1] = ACTIONS(1318), + [aux_sym_namespace_definition_token1] = ACTIONS(1318), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1318), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1318), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1318), + [anon_sym_BSLASH] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [aux_sym_trait_declaration_token1] = ACTIONS(1318), + [aux_sym_interface_declaration_token1] = ACTIONS(1318), + [aux_sym_enum_declaration_token1] = ACTIONS(1318), + [aux_sym_enum_case_token1] = ACTIONS(1318), + [aux_sym_class_declaration_token1] = ACTIONS(1318), + [aux_sym_final_modifier_token1] = ACTIONS(1318), + [aux_sym_abstract_modifier_token1] = ACTIONS(1318), + [aux_sym_readonly_modifier_token1] = ACTIONS(1318), + [aux_sym_visibility_modifier_token1] = ACTIONS(1318), + [aux_sym_visibility_modifier_token2] = ACTIONS(1318), + [aux_sym_visibility_modifier_token3] = ACTIONS(1318), + [aux_sym__arrow_function_header_token1] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1316), + [aux_sym_cast_type_token1] = ACTIONS(1318), + [aux_sym_echo_statement_token1] = ACTIONS(1318), + [anon_sym_unset] = ACTIONS(1318), + [aux_sym_declare_statement_token1] = ACTIONS(1318), + [aux_sym_declare_statement_token2] = ACTIONS(1318), + [sym_float] = ACTIONS(1318), + [aux_sym_try_statement_token1] = ACTIONS(1318), + [aux_sym_goto_statement_token1] = ACTIONS(1318), + [aux_sym_continue_statement_token1] = ACTIONS(1318), + [aux_sym_break_statement_token1] = ACTIONS(1318), + [sym_integer] = ACTIONS(1318), + [aux_sym_return_statement_token1] = ACTIONS(1318), + [aux_sym_throw_expression_token1] = ACTIONS(1318), + [aux_sym_while_statement_token1] = ACTIONS(1318), + [aux_sym_while_statement_token2] = ACTIONS(1318), + [aux_sym_do_statement_token1] = ACTIONS(1318), + [aux_sym_for_statement_token1] = ACTIONS(1318), + [aux_sym_for_statement_token2] = ACTIONS(1318), + [aux_sym_foreach_statement_token1] = ACTIONS(1318), + [aux_sym_foreach_statement_token2] = ACTIONS(1318), + [aux_sym_if_statement_token1] = ACTIONS(1318), + [aux_sym_if_statement_token2] = ACTIONS(1318), + [aux_sym_else_if_clause_token1] = ACTIONS(1318), + [aux_sym_else_clause_token1] = ACTIONS(1318), + [aux_sym_match_expression_token1] = ACTIONS(1318), + [aux_sym_match_default_expression_token1] = ACTIONS(1318), + [aux_sym_switch_statement_token1] = ACTIONS(1318), + [aux_sym_switch_block_token1] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_AT] = ACTIONS(1316), + [aux_sym_clone_expression_token1] = ACTIONS(1318), + [aux_sym_print_intrinsic_token1] = ACTIONS(1318), + [aux_sym_object_creation_expression_token1] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [aux_sym__list_destructing_token1] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_self] = ACTIONS(1318), + [anon_sym_parent] = ACTIONS(1318), + [aux_sym__argument_name_token1] = ACTIONS(1318), + [aux_sym__argument_name_token2] = ACTIONS(1318), + [anon_sym_POUND_LBRACK] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [aux_sym_encapsed_string_token1] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [aux_sym_string_token1] = ACTIONS(1316), + [anon_sym_LT_LT_LT] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(1316), + [anon_sym_DOLLAR] = ACTIONS(1316), + [aux_sym_yield_expression_token1] = ACTIONS(1318), + [aux_sym_include_expression_token1] = ACTIONS(1318), + [aux_sym_include_once_expression_token1] = ACTIONS(1318), + [aux_sym_require_expression_token1] = ACTIONS(1318), + [aux_sym_require_once_expression_token1] = ACTIONS(1318), [sym_comment] = ACTIONS(5), }, [501] = { [sym_text_interpolation] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_name] = ACTIONS(1320), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1318), - [aux_sym_function_static_declaration_token1] = ACTIONS(1320), - [aux_sym_global_declaration_token1] = ACTIONS(1320), - [aux_sym_namespace_definition_token1] = ACTIONS(1320), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1320), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1320), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1320), - [anon_sym_BSLASH] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [aux_sym_trait_declaration_token1] = ACTIONS(1320), - [aux_sym_interface_declaration_token1] = ACTIONS(1320), - [aux_sym_enum_declaration_token1] = ACTIONS(1320), - [aux_sym_enum_case_token1] = ACTIONS(1320), - [aux_sym_class_declaration_token1] = ACTIONS(1320), - [aux_sym_final_modifier_token1] = ACTIONS(1320), - [aux_sym_abstract_modifier_token1] = ACTIONS(1320), - [aux_sym_readonly_modifier_token1] = ACTIONS(1320), - [aux_sym_visibility_modifier_token1] = ACTIONS(1320), - [aux_sym_visibility_modifier_token2] = ACTIONS(1320), - [aux_sym_visibility_modifier_token3] = ACTIONS(1320), - [aux_sym__arrow_function_header_token1] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1318), - [aux_sym_cast_type_token1] = ACTIONS(1320), - [aux_sym_echo_statement_token1] = ACTIONS(1320), - [anon_sym_unset] = ACTIONS(1320), - [aux_sym_declare_statement_token1] = ACTIONS(1320), - [aux_sym_declare_statement_token2] = ACTIONS(1320), - [sym_float] = ACTIONS(1320), - [aux_sym_try_statement_token1] = ACTIONS(1320), - [aux_sym_goto_statement_token1] = ACTIONS(1320), - [aux_sym_continue_statement_token1] = ACTIONS(1320), - [aux_sym_break_statement_token1] = ACTIONS(1320), - [sym_integer] = ACTIONS(1320), - [aux_sym_return_statement_token1] = ACTIONS(1320), - [aux_sym_throw_expression_token1] = ACTIONS(1320), - [aux_sym_while_statement_token1] = ACTIONS(1320), - [aux_sym_while_statement_token2] = ACTIONS(1320), - [aux_sym_do_statement_token1] = ACTIONS(1320), - [aux_sym_for_statement_token1] = ACTIONS(1320), - [aux_sym_for_statement_token2] = ACTIONS(1320), - [aux_sym_foreach_statement_token1] = ACTIONS(1320), - [aux_sym_foreach_statement_token2] = ACTIONS(1320), - [aux_sym_if_statement_token1] = ACTIONS(1320), - [aux_sym_if_statement_token2] = ACTIONS(1320), - [aux_sym_else_if_clause_token1] = ACTIONS(1320), - [aux_sym_else_clause_token1] = ACTIONS(1320), - [aux_sym_match_expression_token1] = ACTIONS(1320), - [aux_sym_match_default_expression_token1] = ACTIONS(1320), - [aux_sym_switch_statement_token1] = ACTIONS(1320), - [aux_sym_switch_block_token1] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_AT] = ACTIONS(1318), - [aux_sym_clone_expression_token1] = ACTIONS(1320), - [aux_sym_print_intrinsic_token1] = ACTIONS(1320), - [aux_sym_object_creation_expression_token1] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [aux_sym__list_destructing_token1] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_self] = ACTIONS(1320), - [anon_sym_parent] = ACTIONS(1320), - [aux_sym__argument_name_token1] = ACTIONS(1320), - [aux_sym__argument_name_token2] = ACTIONS(1320), - [anon_sym_POUND_LBRACK] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [aux_sym_encapsed_string_token1] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [aux_sym_string_token1] = ACTIONS(1318), - [anon_sym_LT_LT_LT] = ACTIONS(1318), - [anon_sym_BQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1318), - [aux_sym_yield_expression_token1] = ACTIONS(1320), - [aux_sym_include_expression_token1] = ACTIONS(1320), - [aux_sym_include_once_expression_token1] = ACTIONS(1320), - [aux_sym_require_expression_token1] = ACTIONS(1320), - [aux_sym_require_once_expression_token1] = ACTIONS(1320), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_name] = ACTIONS(1322), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1320), + [aux_sym_function_static_declaration_token1] = ACTIONS(1322), + [aux_sym_global_declaration_token1] = ACTIONS(1322), + [aux_sym_namespace_definition_token1] = ACTIONS(1322), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1322), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1322), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [aux_sym_trait_declaration_token1] = ACTIONS(1322), + [aux_sym_interface_declaration_token1] = ACTIONS(1322), + [aux_sym_enum_declaration_token1] = ACTIONS(1322), + [aux_sym_enum_case_token1] = ACTIONS(1322), + [aux_sym_class_declaration_token1] = ACTIONS(1322), + [aux_sym_final_modifier_token1] = ACTIONS(1322), + [aux_sym_abstract_modifier_token1] = ACTIONS(1322), + [aux_sym_readonly_modifier_token1] = ACTIONS(1322), + [aux_sym_visibility_modifier_token1] = ACTIONS(1322), + [aux_sym_visibility_modifier_token2] = ACTIONS(1322), + [aux_sym_visibility_modifier_token3] = ACTIONS(1322), + [aux_sym__arrow_function_header_token1] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1320), + [aux_sym_cast_type_token1] = ACTIONS(1322), + [aux_sym_echo_statement_token1] = ACTIONS(1322), + [anon_sym_unset] = ACTIONS(1322), + [aux_sym_declare_statement_token1] = ACTIONS(1322), + [aux_sym_declare_statement_token2] = ACTIONS(1322), + [sym_float] = ACTIONS(1322), + [aux_sym_try_statement_token1] = ACTIONS(1322), + [aux_sym_goto_statement_token1] = ACTIONS(1322), + [aux_sym_continue_statement_token1] = ACTIONS(1322), + [aux_sym_break_statement_token1] = ACTIONS(1322), + [sym_integer] = ACTIONS(1322), + [aux_sym_return_statement_token1] = ACTIONS(1322), + [aux_sym_throw_expression_token1] = ACTIONS(1322), + [aux_sym_while_statement_token1] = ACTIONS(1322), + [aux_sym_while_statement_token2] = ACTIONS(1322), + [aux_sym_do_statement_token1] = ACTIONS(1322), + [aux_sym_for_statement_token1] = ACTIONS(1322), + [aux_sym_for_statement_token2] = ACTIONS(1322), + [aux_sym_foreach_statement_token1] = ACTIONS(1322), + [aux_sym_foreach_statement_token2] = ACTIONS(1322), + [aux_sym_if_statement_token1] = ACTIONS(1322), + [aux_sym_if_statement_token2] = ACTIONS(1322), + [aux_sym_else_if_clause_token1] = ACTIONS(1322), + [aux_sym_else_clause_token1] = ACTIONS(1322), + [aux_sym_match_expression_token1] = ACTIONS(1322), + [aux_sym_match_default_expression_token1] = ACTIONS(1322), + [aux_sym_switch_statement_token1] = ACTIONS(1322), + [aux_sym_switch_block_token1] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_AT] = ACTIONS(1320), + [aux_sym_clone_expression_token1] = ACTIONS(1322), + [aux_sym_print_intrinsic_token1] = ACTIONS(1322), + [aux_sym_object_creation_expression_token1] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [aux_sym__list_destructing_token1] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_self] = ACTIONS(1322), + [anon_sym_parent] = ACTIONS(1322), + [aux_sym__argument_name_token1] = ACTIONS(1322), + [aux_sym__argument_name_token2] = ACTIONS(1322), + [anon_sym_POUND_LBRACK] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [aux_sym_encapsed_string_token1] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [aux_sym_string_token1] = ACTIONS(1320), + [anon_sym_LT_LT_LT] = ACTIONS(1320), + [anon_sym_BQUOTE] = ACTIONS(1320), + [anon_sym_DOLLAR] = ACTIONS(1320), + [aux_sym_yield_expression_token1] = ACTIONS(1322), + [aux_sym_include_expression_token1] = ACTIONS(1322), + [aux_sym_include_once_expression_token1] = ACTIONS(1322), + [aux_sym_require_expression_token1] = ACTIONS(1322), + [aux_sym_require_once_expression_token1] = ACTIONS(1322), [sym_comment] = ACTIONS(5), }, [502] = { [sym_text_interpolation] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_name] = ACTIONS(1324), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1322), - [aux_sym_function_static_declaration_token1] = ACTIONS(1324), - [aux_sym_global_declaration_token1] = ACTIONS(1324), - [aux_sym_namespace_definition_token1] = ACTIONS(1324), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1324), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1324), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1324), - [anon_sym_BSLASH] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [aux_sym_trait_declaration_token1] = ACTIONS(1324), - [aux_sym_interface_declaration_token1] = ACTIONS(1324), - [aux_sym_enum_declaration_token1] = ACTIONS(1324), - [aux_sym_enum_case_token1] = ACTIONS(1324), - [aux_sym_class_declaration_token1] = ACTIONS(1324), - [aux_sym_final_modifier_token1] = ACTIONS(1324), - [aux_sym_abstract_modifier_token1] = ACTIONS(1324), - [aux_sym_readonly_modifier_token1] = ACTIONS(1324), - [aux_sym_visibility_modifier_token1] = ACTIONS(1324), - [aux_sym_visibility_modifier_token2] = ACTIONS(1324), - [aux_sym_visibility_modifier_token3] = ACTIONS(1324), - [aux_sym__arrow_function_header_token1] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1322), - [aux_sym_cast_type_token1] = ACTIONS(1324), - [aux_sym_echo_statement_token1] = ACTIONS(1324), - [anon_sym_unset] = ACTIONS(1324), - [aux_sym_declare_statement_token1] = ACTIONS(1324), - [aux_sym_declare_statement_token2] = ACTIONS(1324), - [sym_float] = ACTIONS(1324), - [aux_sym_try_statement_token1] = ACTIONS(1324), - [aux_sym_goto_statement_token1] = ACTIONS(1324), - [aux_sym_continue_statement_token1] = ACTIONS(1324), - [aux_sym_break_statement_token1] = ACTIONS(1324), - [sym_integer] = ACTIONS(1324), - [aux_sym_return_statement_token1] = ACTIONS(1324), - [aux_sym_throw_expression_token1] = ACTIONS(1324), - [aux_sym_while_statement_token1] = ACTIONS(1324), - [aux_sym_while_statement_token2] = ACTIONS(1324), - [aux_sym_do_statement_token1] = ACTIONS(1324), - [aux_sym_for_statement_token1] = ACTIONS(1324), - [aux_sym_for_statement_token2] = ACTIONS(1324), - [aux_sym_foreach_statement_token1] = ACTIONS(1324), - [aux_sym_foreach_statement_token2] = ACTIONS(1324), - [aux_sym_if_statement_token1] = ACTIONS(1324), - [aux_sym_if_statement_token2] = ACTIONS(1324), - [aux_sym_else_if_clause_token1] = ACTIONS(1324), - [aux_sym_else_clause_token1] = ACTIONS(1324), - [aux_sym_match_expression_token1] = ACTIONS(1324), - [aux_sym_match_default_expression_token1] = ACTIONS(1324), - [aux_sym_switch_statement_token1] = ACTIONS(1324), - [aux_sym_switch_block_token1] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_AT] = ACTIONS(1322), - [aux_sym_clone_expression_token1] = ACTIONS(1324), - [aux_sym_print_intrinsic_token1] = ACTIONS(1324), - [aux_sym_object_creation_expression_token1] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [aux_sym__list_destructing_token1] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_self] = ACTIONS(1324), - [anon_sym_parent] = ACTIONS(1324), - [aux_sym__argument_name_token1] = ACTIONS(1324), - [aux_sym__argument_name_token2] = ACTIONS(1324), - [anon_sym_POUND_LBRACK] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [aux_sym_encapsed_string_token1] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [aux_sym_string_token1] = ACTIONS(1322), - [anon_sym_LT_LT_LT] = ACTIONS(1322), - [anon_sym_BQUOTE] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1322), - [aux_sym_yield_expression_token1] = ACTIONS(1324), - [aux_sym_include_expression_token1] = ACTIONS(1324), - [aux_sym_include_once_expression_token1] = ACTIONS(1324), - [aux_sym_require_expression_token1] = ACTIONS(1324), - [aux_sym_require_once_expression_token1] = ACTIONS(1324), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_name] = ACTIONS(1326), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1324), + [aux_sym_function_static_declaration_token1] = ACTIONS(1326), + [aux_sym_global_declaration_token1] = ACTIONS(1326), + [aux_sym_namespace_definition_token1] = ACTIONS(1326), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1326), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1326), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1326), + [anon_sym_BSLASH] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [aux_sym_trait_declaration_token1] = ACTIONS(1326), + [aux_sym_interface_declaration_token1] = ACTIONS(1326), + [aux_sym_enum_declaration_token1] = ACTIONS(1326), + [aux_sym_enum_case_token1] = ACTIONS(1326), + [aux_sym_class_declaration_token1] = ACTIONS(1326), + [aux_sym_final_modifier_token1] = ACTIONS(1326), + [aux_sym_abstract_modifier_token1] = ACTIONS(1326), + [aux_sym_readonly_modifier_token1] = ACTIONS(1326), + [aux_sym_visibility_modifier_token1] = ACTIONS(1326), + [aux_sym_visibility_modifier_token2] = ACTIONS(1326), + [aux_sym_visibility_modifier_token3] = ACTIONS(1326), + [aux_sym__arrow_function_header_token1] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1324), + [aux_sym_cast_type_token1] = ACTIONS(1326), + [aux_sym_echo_statement_token1] = ACTIONS(1326), + [anon_sym_unset] = ACTIONS(1326), + [aux_sym_declare_statement_token1] = ACTIONS(1326), + [aux_sym_declare_statement_token2] = ACTIONS(1326), + [sym_float] = ACTIONS(1326), + [aux_sym_try_statement_token1] = ACTIONS(1326), + [aux_sym_goto_statement_token1] = ACTIONS(1326), + [aux_sym_continue_statement_token1] = ACTIONS(1326), + [aux_sym_break_statement_token1] = ACTIONS(1326), + [sym_integer] = ACTIONS(1326), + [aux_sym_return_statement_token1] = ACTIONS(1326), + [aux_sym_throw_expression_token1] = ACTIONS(1326), + [aux_sym_while_statement_token1] = ACTIONS(1326), + [aux_sym_while_statement_token2] = ACTIONS(1326), + [aux_sym_do_statement_token1] = ACTIONS(1326), + [aux_sym_for_statement_token1] = ACTIONS(1326), + [aux_sym_for_statement_token2] = ACTIONS(1326), + [aux_sym_foreach_statement_token1] = ACTIONS(1326), + [aux_sym_foreach_statement_token2] = ACTIONS(1326), + [aux_sym_if_statement_token1] = ACTIONS(1326), + [aux_sym_if_statement_token2] = ACTIONS(1326), + [aux_sym_else_if_clause_token1] = ACTIONS(1326), + [aux_sym_else_clause_token1] = ACTIONS(1326), + [aux_sym_match_expression_token1] = ACTIONS(1326), + [aux_sym_match_default_expression_token1] = ACTIONS(1326), + [aux_sym_switch_statement_token1] = ACTIONS(1326), + [aux_sym_switch_block_token1] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_AT] = ACTIONS(1324), + [aux_sym_clone_expression_token1] = ACTIONS(1326), + [aux_sym_print_intrinsic_token1] = ACTIONS(1326), + [aux_sym_object_creation_expression_token1] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [aux_sym__list_destructing_token1] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_self] = ACTIONS(1326), + [anon_sym_parent] = ACTIONS(1326), + [aux_sym__argument_name_token1] = ACTIONS(1326), + [aux_sym__argument_name_token2] = ACTIONS(1326), + [anon_sym_POUND_LBRACK] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [aux_sym_encapsed_string_token1] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [aux_sym_string_token1] = ACTIONS(1324), + [anon_sym_LT_LT_LT] = ACTIONS(1324), + [anon_sym_BQUOTE] = ACTIONS(1324), + [anon_sym_DOLLAR] = ACTIONS(1324), + [aux_sym_yield_expression_token1] = ACTIONS(1326), + [aux_sym_include_expression_token1] = ACTIONS(1326), + [aux_sym_include_once_expression_token1] = ACTIONS(1326), + [aux_sym_require_expression_token1] = ACTIONS(1326), + [aux_sym_require_once_expression_token1] = ACTIONS(1326), [sym_comment] = ACTIONS(5), }, [503] = { [sym_text_interpolation] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1032), - [sym_name] = ACTIONS(1034), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1032), - [aux_sym_function_static_declaration_token1] = ACTIONS(1034), - [aux_sym_global_declaration_token1] = ACTIONS(1034), - [aux_sym_namespace_definition_token1] = ACTIONS(1034), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1034), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1034), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1034), - [anon_sym_BSLASH] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1032), - [aux_sym_trait_declaration_token1] = ACTIONS(1034), - [aux_sym_interface_declaration_token1] = ACTIONS(1034), - [aux_sym_enum_declaration_token1] = ACTIONS(1034), - [aux_sym_enum_case_token1] = ACTIONS(1034), - [aux_sym_class_declaration_token1] = ACTIONS(1034), - [aux_sym_final_modifier_token1] = ACTIONS(1034), - [aux_sym_abstract_modifier_token1] = ACTIONS(1034), - [aux_sym_readonly_modifier_token1] = ACTIONS(1034), - [aux_sym_visibility_modifier_token1] = ACTIONS(1034), - [aux_sym_visibility_modifier_token2] = ACTIONS(1034), - [aux_sym_visibility_modifier_token3] = ACTIONS(1034), - [aux_sym__arrow_function_header_token1] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1032), - [aux_sym_cast_type_token1] = ACTIONS(1034), - [aux_sym_echo_statement_token1] = ACTIONS(1034), - [anon_sym_unset] = ACTIONS(1034), - [aux_sym_declare_statement_token1] = ACTIONS(1034), - [aux_sym_declare_statement_token2] = ACTIONS(1034), - [sym_float] = ACTIONS(1034), - [aux_sym_try_statement_token1] = ACTIONS(1034), - [aux_sym_goto_statement_token1] = ACTIONS(1034), - [aux_sym_continue_statement_token1] = ACTIONS(1034), - [aux_sym_break_statement_token1] = ACTIONS(1034), - [sym_integer] = ACTIONS(1034), - [aux_sym_return_statement_token1] = ACTIONS(1034), - [aux_sym_throw_expression_token1] = ACTIONS(1034), - [aux_sym_while_statement_token1] = ACTIONS(1034), - [aux_sym_while_statement_token2] = ACTIONS(1034), - [aux_sym_do_statement_token1] = ACTIONS(1034), - [aux_sym_for_statement_token1] = ACTIONS(1034), - [aux_sym_for_statement_token2] = ACTIONS(1034), - [aux_sym_foreach_statement_token1] = ACTIONS(1034), - [aux_sym_foreach_statement_token2] = ACTIONS(1034), - [aux_sym_if_statement_token1] = ACTIONS(1034), - [aux_sym_if_statement_token2] = ACTIONS(1034), - [aux_sym_else_if_clause_token1] = ACTIONS(1034), - [aux_sym_else_clause_token1] = ACTIONS(1034), - [aux_sym_match_expression_token1] = ACTIONS(1034), - [aux_sym_match_default_expression_token1] = ACTIONS(1034), - [aux_sym_switch_statement_token1] = ACTIONS(1034), - [aux_sym_switch_block_token1] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1032), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AT] = ACTIONS(1032), - [aux_sym_clone_expression_token1] = ACTIONS(1034), - [aux_sym_print_intrinsic_token1] = ACTIONS(1034), - [aux_sym_object_creation_expression_token1] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1032), - [aux_sym__list_destructing_token1] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(1032), - [anon_sym_self] = ACTIONS(1034), - [anon_sym_parent] = ACTIONS(1034), - [aux_sym__argument_name_token1] = ACTIONS(1034), - [aux_sym__argument_name_token2] = ACTIONS(1034), - [anon_sym_POUND_LBRACK] = ACTIONS(1032), - [anon_sym_SQUOTE] = ACTIONS(1032), - [aux_sym_encapsed_string_token1] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [aux_sym_string_token1] = ACTIONS(1032), - [anon_sym_LT_LT_LT] = ACTIONS(1032), - [anon_sym_BQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [aux_sym_yield_expression_token1] = ACTIONS(1034), - [aux_sym_include_expression_token1] = ACTIONS(1034), - [aux_sym_include_once_expression_token1] = ACTIONS(1034), - [aux_sym_require_expression_token1] = ACTIONS(1034), - [aux_sym_require_once_expression_token1] = ACTIONS(1034), + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_name] = ACTIONS(1036), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1034), + [aux_sym_function_static_declaration_token1] = ACTIONS(1036), + [aux_sym_global_declaration_token1] = ACTIONS(1036), + [aux_sym_namespace_definition_token1] = ACTIONS(1036), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1036), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1036), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1036), + [anon_sym_BSLASH] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [aux_sym_trait_declaration_token1] = ACTIONS(1036), + [aux_sym_interface_declaration_token1] = ACTIONS(1036), + [aux_sym_enum_declaration_token1] = ACTIONS(1036), + [aux_sym_enum_case_token1] = ACTIONS(1036), + [aux_sym_class_declaration_token1] = ACTIONS(1036), + [aux_sym_final_modifier_token1] = ACTIONS(1036), + [aux_sym_abstract_modifier_token1] = ACTIONS(1036), + [aux_sym_readonly_modifier_token1] = ACTIONS(1036), + [aux_sym_visibility_modifier_token1] = ACTIONS(1036), + [aux_sym_visibility_modifier_token2] = ACTIONS(1036), + [aux_sym_visibility_modifier_token3] = ACTIONS(1036), + [aux_sym__arrow_function_header_token1] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1034), + [aux_sym_cast_type_token1] = ACTIONS(1036), + [aux_sym_echo_statement_token1] = ACTIONS(1036), + [anon_sym_unset] = ACTIONS(1036), + [aux_sym_declare_statement_token1] = ACTIONS(1036), + [aux_sym_declare_statement_token2] = ACTIONS(1036), + [sym_float] = ACTIONS(1036), + [aux_sym_try_statement_token1] = ACTIONS(1036), + [aux_sym_goto_statement_token1] = ACTIONS(1036), + [aux_sym_continue_statement_token1] = ACTIONS(1036), + [aux_sym_break_statement_token1] = ACTIONS(1036), + [sym_integer] = ACTIONS(1036), + [aux_sym_return_statement_token1] = ACTIONS(1036), + [aux_sym_throw_expression_token1] = ACTIONS(1036), + [aux_sym_while_statement_token1] = ACTIONS(1036), + [aux_sym_while_statement_token2] = ACTIONS(1036), + [aux_sym_do_statement_token1] = ACTIONS(1036), + [aux_sym_for_statement_token1] = ACTIONS(1036), + [aux_sym_for_statement_token2] = ACTIONS(1036), + [aux_sym_foreach_statement_token1] = ACTIONS(1036), + [aux_sym_foreach_statement_token2] = ACTIONS(1036), + [aux_sym_if_statement_token1] = ACTIONS(1036), + [aux_sym_if_statement_token2] = ACTIONS(1036), + [aux_sym_else_if_clause_token1] = ACTIONS(1036), + [aux_sym_else_clause_token1] = ACTIONS(1036), + [aux_sym_match_expression_token1] = ACTIONS(1036), + [aux_sym_match_default_expression_token1] = ACTIONS(1036), + [aux_sym_switch_statement_token1] = ACTIONS(1036), + [aux_sym_switch_block_token1] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AT] = ACTIONS(1034), + [aux_sym_clone_expression_token1] = ACTIONS(1036), + [aux_sym_print_intrinsic_token1] = ACTIONS(1036), + [aux_sym_object_creation_expression_token1] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [aux_sym__list_destructing_token1] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1034), + [anon_sym_self] = ACTIONS(1036), + [anon_sym_parent] = ACTIONS(1036), + [aux_sym__argument_name_token1] = ACTIONS(1036), + [aux_sym__argument_name_token2] = ACTIONS(1036), + [anon_sym_POUND_LBRACK] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [aux_sym_encapsed_string_token1] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [aux_sym_string_token1] = ACTIONS(1034), + [anon_sym_LT_LT_LT] = ACTIONS(1034), + [anon_sym_BQUOTE] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [aux_sym_yield_expression_token1] = ACTIONS(1036), + [aux_sym_include_expression_token1] = ACTIONS(1036), + [aux_sym_include_once_expression_token1] = ACTIONS(1036), + [aux_sym_require_expression_token1] = ACTIONS(1036), + [aux_sym_require_once_expression_token1] = ACTIONS(1036), [sym_comment] = ACTIONS(5), }, [504] = { [sym_text_interpolation] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_name] = ACTIONS(1328), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1326), - [aux_sym_function_static_declaration_token1] = ACTIONS(1328), - [aux_sym_global_declaration_token1] = ACTIONS(1328), - [aux_sym_namespace_definition_token1] = ACTIONS(1328), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1328), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1328), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1328), - [anon_sym_BSLASH] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [aux_sym_trait_declaration_token1] = ACTIONS(1328), - [aux_sym_interface_declaration_token1] = ACTIONS(1328), - [aux_sym_enum_declaration_token1] = ACTIONS(1328), - [aux_sym_enum_case_token1] = ACTIONS(1328), - [aux_sym_class_declaration_token1] = ACTIONS(1328), - [aux_sym_final_modifier_token1] = ACTIONS(1328), - [aux_sym_abstract_modifier_token1] = ACTIONS(1328), - [aux_sym_readonly_modifier_token1] = ACTIONS(1328), - [aux_sym_visibility_modifier_token1] = ACTIONS(1328), - [aux_sym_visibility_modifier_token2] = ACTIONS(1328), - [aux_sym_visibility_modifier_token3] = ACTIONS(1328), - [aux_sym__arrow_function_header_token1] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1326), - [aux_sym_cast_type_token1] = ACTIONS(1328), - [aux_sym_echo_statement_token1] = ACTIONS(1328), - [anon_sym_unset] = ACTIONS(1328), - [aux_sym_declare_statement_token1] = ACTIONS(1328), - [aux_sym_declare_statement_token2] = ACTIONS(1328), - [sym_float] = ACTIONS(1328), - [aux_sym_try_statement_token1] = ACTIONS(1328), - [aux_sym_goto_statement_token1] = ACTIONS(1328), - [aux_sym_continue_statement_token1] = ACTIONS(1328), - [aux_sym_break_statement_token1] = ACTIONS(1328), - [sym_integer] = ACTIONS(1328), - [aux_sym_return_statement_token1] = ACTIONS(1328), - [aux_sym_throw_expression_token1] = ACTIONS(1328), - [aux_sym_while_statement_token1] = ACTIONS(1328), - [aux_sym_while_statement_token2] = ACTIONS(1328), - [aux_sym_do_statement_token1] = ACTIONS(1328), - [aux_sym_for_statement_token1] = ACTIONS(1328), - [aux_sym_for_statement_token2] = ACTIONS(1328), - [aux_sym_foreach_statement_token1] = ACTIONS(1328), - [aux_sym_foreach_statement_token2] = ACTIONS(1328), - [aux_sym_if_statement_token1] = ACTIONS(1328), - [aux_sym_if_statement_token2] = ACTIONS(1328), - [aux_sym_else_if_clause_token1] = ACTIONS(1328), - [aux_sym_else_clause_token1] = ACTIONS(1328), - [aux_sym_match_expression_token1] = ACTIONS(1328), - [aux_sym_match_default_expression_token1] = ACTIONS(1328), - [aux_sym_switch_statement_token1] = ACTIONS(1328), - [aux_sym_switch_block_token1] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_AT] = ACTIONS(1326), - [aux_sym_clone_expression_token1] = ACTIONS(1328), - [aux_sym_print_intrinsic_token1] = ACTIONS(1328), - [aux_sym_object_creation_expression_token1] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [aux_sym__list_destructing_token1] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_self] = ACTIONS(1328), - [anon_sym_parent] = ACTIONS(1328), - [aux_sym__argument_name_token1] = ACTIONS(1328), - [aux_sym__argument_name_token2] = ACTIONS(1328), - [anon_sym_POUND_LBRACK] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [aux_sym_encapsed_string_token1] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [aux_sym_string_token1] = ACTIONS(1326), - [anon_sym_LT_LT_LT] = ACTIONS(1326), - [anon_sym_BQUOTE] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1326), - [aux_sym_yield_expression_token1] = ACTIONS(1328), - [aux_sym_include_expression_token1] = ACTIONS(1328), - [aux_sym_include_once_expression_token1] = ACTIONS(1328), - [aux_sym_require_expression_token1] = ACTIONS(1328), - [aux_sym_require_once_expression_token1] = ACTIONS(1328), + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_name] = ACTIONS(1330), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1328), + [aux_sym_function_static_declaration_token1] = ACTIONS(1330), + [aux_sym_global_declaration_token1] = ACTIONS(1330), + [aux_sym_namespace_definition_token1] = ACTIONS(1330), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1330), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1330), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1330), + [anon_sym_BSLASH] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [aux_sym_trait_declaration_token1] = ACTIONS(1330), + [aux_sym_interface_declaration_token1] = ACTIONS(1330), + [aux_sym_enum_declaration_token1] = ACTIONS(1330), + [aux_sym_enum_case_token1] = ACTIONS(1330), + [aux_sym_class_declaration_token1] = ACTIONS(1330), + [aux_sym_final_modifier_token1] = ACTIONS(1330), + [aux_sym_abstract_modifier_token1] = ACTIONS(1330), + [aux_sym_readonly_modifier_token1] = ACTIONS(1330), + [aux_sym_visibility_modifier_token1] = ACTIONS(1330), + [aux_sym_visibility_modifier_token2] = ACTIONS(1330), + [aux_sym_visibility_modifier_token3] = ACTIONS(1330), + [aux_sym__arrow_function_header_token1] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1328), + [aux_sym_cast_type_token1] = ACTIONS(1330), + [aux_sym_echo_statement_token1] = ACTIONS(1330), + [anon_sym_unset] = ACTIONS(1330), + [aux_sym_declare_statement_token1] = ACTIONS(1330), + [aux_sym_declare_statement_token2] = ACTIONS(1330), + [sym_float] = ACTIONS(1330), + [aux_sym_try_statement_token1] = ACTIONS(1330), + [aux_sym_goto_statement_token1] = ACTIONS(1330), + [aux_sym_continue_statement_token1] = ACTIONS(1330), + [aux_sym_break_statement_token1] = ACTIONS(1330), + [sym_integer] = ACTIONS(1330), + [aux_sym_return_statement_token1] = ACTIONS(1330), + [aux_sym_throw_expression_token1] = ACTIONS(1330), + [aux_sym_while_statement_token1] = ACTIONS(1330), + [aux_sym_while_statement_token2] = ACTIONS(1330), + [aux_sym_do_statement_token1] = ACTIONS(1330), + [aux_sym_for_statement_token1] = ACTIONS(1330), + [aux_sym_for_statement_token2] = ACTIONS(1330), + [aux_sym_foreach_statement_token1] = ACTIONS(1330), + [aux_sym_foreach_statement_token2] = ACTIONS(1330), + [aux_sym_if_statement_token1] = ACTIONS(1330), + [aux_sym_if_statement_token2] = ACTIONS(1330), + [aux_sym_else_if_clause_token1] = ACTIONS(1330), + [aux_sym_else_clause_token1] = ACTIONS(1330), + [aux_sym_match_expression_token1] = ACTIONS(1330), + [aux_sym_match_default_expression_token1] = ACTIONS(1330), + [aux_sym_switch_statement_token1] = ACTIONS(1330), + [aux_sym_switch_block_token1] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_AT] = ACTIONS(1328), + [aux_sym_clone_expression_token1] = ACTIONS(1330), + [aux_sym_print_intrinsic_token1] = ACTIONS(1330), + [aux_sym_object_creation_expression_token1] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [aux_sym__list_destructing_token1] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_self] = ACTIONS(1330), + [anon_sym_parent] = ACTIONS(1330), + [aux_sym__argument_name_token1] = ACTIONS(1330), + [aux_sym__argument_name_token2] = ACTIONS(1330), + [anon_sym_POUND_LBRACK] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [aux_sym_encapsed_string_token1] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [aux_sym_string_token1] = ACTIONS(1328), + [anon_sym_LT_LT_LT] = ACTIONS(1328), + [anon_sym_BQUOTE] = ACTIONS(1328), + [anon_sym_DOLLAR] = ACTIONS(1328), + [aux_sym_yield_expression_token1] = ACTIONS(1330), + [aux_sym_include_expression_token1] = ACTIONS(1330), + [aux_sym_include_once_expression_token1] = ACTIONS(1330), + [aux_sym_require_expression_token1] = ACTIONS(1330), + [aux_sym_require_once_expression_token1] = ACTIONS(1330), [sym_comment] = ACTIONS(5), }, [505] = { [sym_text_interpolation] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_name] = ACTIONS(1332), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1330), - [aux_sym_function_static_declaration_token1] = ACTIONS(1332), - [aux_sym_global_declaration_token1] = ACTIONS(1332), - [aux_sym_namespace_definition_token1] = ACTIONS(1332), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1332), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1332), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1332), - [anon_sym_BSLASH] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [aux_sym_trait_declaration_token1] = ACTIONS(1332), - [aux_sym_interface_declaration_token1] = ACTIONS(1332), - [aux_sym_enum_declaration_token1] = ACTIONS(1332), - [aux_sym_enum_case_token1] = ACTIONS(1332), - [aux_sym_class_declaration_token1] = ACTIONS(1332), - [aux_sym_final_modifier_token1] = ACTIONS(1332), - [aux_sym_abstract_modifier_token1] = ACTIONS(1332), - [aux_sym_readonly_modifier_token1] = ACTIONS(1332), - [aux_sym_visibility_modifier_token1] = ACTIONS(1332), - [aux_sym_visibility_modifier_token2] = ACTIONS(1332), - [aux_sym_visibility_modifier_token3] = ACTIONS(1332), - [aux_sym__arrow_function_header_token1] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1330), - [aux_sym_cast_type_token1] = ACTIONS(1332), - [aux_sym_echo_statement_token1] = ACTIONS(1332), - [anon_sym_unset] = ACTIONS(1332), - [aux_sym_declare_statement_token1] = ACTIONS(1332), - [aux_sym_declare_statement_token2] = ACTIONS(1332), - [sym_float] = ACTIONS(1332), - [aux_sym_try_statement_token1] = ACTIONS(1332), - [aux_sym_goto_statement_token1] = ACTIONS(1332), - [aux_sym_continue_statement_token1] = ACTIONS(1332), - [aux_sym_break_statement_token1] = ACTIONS(1332), - [sym_integer] = ACTIONS(1332), - [aux_sym_return_statement_token1] = ACTIONS(1332), - [aux_sym_throw_expression_token1] = ACTIONS(1332), - [aux_sym_while_statement_token1] = ACTIONS(1332), - [aux_sym_while_statement_token2] = ACTIONS(1332), - [aux_sym_do_statement_token1] = ACTIONS(1332), - [aux_sym_for_statement_token1] = ACTIONS(1332), - [aux_sym_for_statement_token2] = ACTIONS(1332), - [aux_sym_foreach_statement_token1] = ACTIONS(1332), - [aux_sym_foreach_statement_token2] = ACTIONS(1332), - [aux_sym_if_statement_token1] = ACTIONS(1332), - [aux_sym_if_statement_token2] = ACTIONS(1332), - [aux_sym_else_if_clause_token1] = ACTIONS(1332), - [aux_sym_else_clause_token1] = ACTIONS(1332), - [aux_sym_match_expression_token1] = ACTIONS(1332), - [aux_sym_match_default_expression_token1] = ACTIONS(1332), - [aux_sym_switch_statement_token1] = ACTIONS(1332), - [aux_sym_switch_block_token1] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_AT] = ACTIONS(1330), - [aux_sym_clone_expression_token1] = ACTIONS(1332), - [aux_sym_print_intrinsic_token1] = ACTIONS(1332), - [aux_sym_object_creation_expression_token1] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [aux_sym__list_destructing_token1] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_self] = ACTIONS(1332), - [anon_sym_parent] = ACTIONS(1332), - [aux_sym__argument_name_token1] = ACTIONS(1332), - [aux_sym__argument_name_token2] = ACTIONS(1332), - [anon_sym_POUND_LBRACK] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [aux_sym_encapsed_string_token1] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [aux_sym_string_token1] = ACTIONS(1330), - [anon_sym_LT_LT_LT] = ACTIONS(1330), - [anon_sym_BQUOTE] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1330), - [aux_sym_yield_expression_token1] = ACTIONS(1332), - [aux_sym_include_expression_token1] = ACTIONS(1332), - [aux_sym_include_once_expression_token1] = ACTIONS(1332), - [aux_sym_require_expression_token1] = ACTIONS(1332), - [aux_sym_require_once_expression_token1] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_name] = ACTIONS(1334), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1332), + [aux_sym_function_static_declaration_token1] = ACTIONS(1334), + [aux_sym_global_declaration_token1] = ACTIONS(1334), + [aux_sym_namespace_definition_token1] = ACTIONS(1334), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1334), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1334), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1334), + [anon_sym_BSLASH] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [aux_sym_trait_declaration_token1] = ACTIONS(1334), + [aux_sym_interface_declaration_token1] = ACTIONS(1334), + [aux_sym_enum_declaration_token1] = ACTIONS(1334), + [aux_sym_enum_case_token1] = ACTIONS(1334), + [aux_sym_class_declaration_token1] = ACTIONS(1334), + [aux_sym_final_modifier_token1] = ACTIONS(1334), + [aux_sym_abstract_modifier_token1] = ACTIONS(1334), + [aux_sym_readonly_modifier_token1] = ACTIONS(1334), + [aux_sym_visibility_modifier_token1] = ACTIONS(1334), + [aux_sym_visibility_modifier_token2] = ACTIONS(1334), + [aux_sym_visibility_modifier_token3] = ACTIONS(1334), + [aux_sym__arrow_function_header_token1] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1332), + [aux_sym_cast_type_token1] = ACTIONS(1334), + [aux_sym_echo_statement_token1] = ACTIONS(1334), + [anon_sym_unset] = ACTIONS(1334), + [aux_sym_declare_statement_token1] = ACTIONS(1334), + [aux_sym_declare_statement_token2] = ACTIONS(1334), + [sym_float] = ACTIONS(1334), + [aux_sym_try_statement_token1] = ACTIONS(1334), + [aux_sym_goto_statement_token1] = ACTIONS(1334), + [aux_sym_continue_statement_token1] = ACTIONS(1334), + [aux_sym_break_statement_token1] = ACTIONS(1334), + [sym_integer] = ACTIONS(1334), + [aux_sym_return_statement_token1] = ACTIONS(1334), + [aux_sym_throw_expression_token1] = ACTIONS(1334), + [aux_sym_while_statement_token1] = ACTIONS(1334), + [aux_sym_while_statement_token2] = ACTIONS(1334), + [aux_sym_do_statement_token1] = ACTIONS(1334), + [aux_sym_for_statement_token1] = ACTIONS(1334), + [aux_sym_for_statement_token2] = ACTIONS(1334), + [aux_sym_foreach_statement_token1] = ACTIONS(1334), + [aux_sym_foreach_statement_token2] = ACTIONS(1334), + [aux_sym_if_statement_token1] = ACTIONS(1334), + [aux_sym_if_statement_token2] = ACTIONS(1334), + [aux_sym_else_if_clause_token1] = ACTIONS(1334), + [aux_sym_else_clause_token1] = ACTIONS(1334), + [aux_sym_match_expression_token1] = ACTIONS(1334), + [aux_sym_match_default_expression_token1] = ACTIONS(1334), + [aux_sym_switch_statement_token1] = ACTIONS(1334), + [aux_sym_switch_block_token1] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_AT] = ACTIONS(1332), + [aux_sym_clone_expression_token1] = ACTIONS(1334), + [aux_sym_print_intrinsic_token1] = ACTIONS(1334), + [aux_sym_object_creation_expression_token1] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [aux_sym__list_destructing_token1] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_self] = ACTIONS(1334), + [anon_sym_parent] = ACTIONS(1334), + [aux_sym__argument_name_token1] = ACTIONS(1334), + [aux_sym__argument_name_token2] = ACTIONS(1334), + [anon_sym_POUND_LBRACK] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [aux_sym_encapsed_string_token1] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [aux_sym_string_token1] = ACTIONS(1332), + [anon_sym_LT_LT_LT] = ACTIONS(1332), + [anon_sym_BQUOTE] = ACTIONS(1332), + [anon_sym_DOLLAR] = ACTIONS(1332), + [aux_sym_yield_expression_token1] = ACTIONS(1334), + [aux_sym_include_expression_token1] = ACTIONS(1334), + [aux_sym_include_once_expression_token1] = ACTIONS(1334), + [aux_sym_require_expression_token1] = ACTIONS(1334), + [aux_sym_require_once_expression_token1] = ACTIONS(1334), [sym_comment] = ACTIONS(5), }, [506] = { [sym_text_interpolation] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_name] = ACTIONS(1324), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1322), - [aux_sym_function_static_declaration_token1] = ACTIONS(1324), - [aux_sym_global_declaration_token1] = ACTIONS(1324), - [aux_sym_namespace_definition_token1] = ACTIONS(1324), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1324), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1324), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1324), - [anon_sym_BSLASH] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [aux_sym_trait_declaration_token1] = ACTIONS(1324), - [aux_sym_interface_declaration_token1] = ACTIONS(1324), - [aux_sym_enum_declaration_token1] = ACTIONS(1324), - [aux_sym_enum_case_token1] = ACTIONS(1324), - [aux_sym_class_declaration_token1] = ACTIONS(1324), - [aux_sym_final_modifier_token1] = ACTIONS(1324), - [aux_sym_abstract_modifier_token1] = ACTIONS(1324), - [aux_sym_readonly_modifier_token1] = ACTIONS(1324), - [aux_sym_visibility_modifier_token1] = ACTIONS(1324), - [aux_sym_visibility_modifier_token2] = ACTIONS(1324), - [aux_sym_visibility_modifier_token3] = ACTIONS(1324), - [aux_sym__arrow_function_header_token1] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1322), - [aux_sym_cast_type_token1] = ACTIONS(1324), - [aux_sym_echo_statement_token1] = ACTIONS(1324), - [anon_sym_unset] = ACTIONS(1324), - [aux_sym_declare_statement_token1] = ACTIONS(1324), - [aux_sym_declare_statement_token2] = ACTIONS(1324), - [sym_float] = ACTIONS(1324), - [aux_sym_try_statement_token1] = ACTIONS(1324), - [aux_sym_goto_statement_token1] = ACTIONS(1324), - [aux_sym_continue_statement_token1] = ACTIONS(1324), - [aux_sym_break_statement_token1] = ACTIONS(1324), - [sym_integer] = ACTIONS(1324), - [aux_sym_return_statement_token1] = ACTIONS(1324), - [aux_sym_throw_expression_token1] = ACTIONS(1324), - [aux_sym_while_statement_token1] = ACTIONS(1324), - [aux_sym_while_statement_token2] = ACTIONS(1324), - [aux_sym_do_statement_token1] = ACTIONS(1324), - [aux_sym_for_statement_token1] = ACTIONS(1324), - [aux_sym_for_statement_token2] = ACTIONS(1324), - [aux_sym_foreach_statement_token1] = ACTIONS(1324), - [aux_sym_foreach_statement_token2] = ACTIONS(1324), - [aux_sym_if_statement_token1] = ACTIONS(1324), - [aux_sym_if_statement_token2] = ACTIONS(1324), - [aux_sym_else_if_clause_token1] = ACTIONS(1324), - [aux_sym_else_clause_token1] = ACTIONS(1324), - [aux_sym_match_expression_token1] = ACTIONS(1324), - [aux_sym_match_default_expression_token1] = ACTIONS(1324), - [aux_sym_switch_statement_token1] = ACTIONS(1324), - [aux_sym_switch_block_token1] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_AT] = ACTIONS(1322), - [aux_sym_clone_expression_token1] = ACTIONS(1324), - [aux_sym_print_intrinsic_token1] = ACTIONS(1324), - [aux_sym_object_creation_expression_token1] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [aux_sym__list_destructing_token1] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_self] = ACTIONS(1324), - [anon_sym_parent] = ACTIONS(1324), - [aux_sym__argument_name_token1] = ACTIONS(1324), - [aux_sym__argument_name_token2] = ACTIONS(1324), - [anon_sym_POUND_LBRACK] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [aux_sym_encapsed_string_token1] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [aux_sym_string_token1] = ACTIONS(1322), - [anon_sym_LT_LT_LT] = ACTIONS(1322), - [anon_sym_BQUOTE] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1322), - [aux_sym_yield_expression_token1] = ACTIONS(1324), - [aux_sym_include_expression_token1] = ACTIONS(1324), - [aux_sym_include_once_expression_token1] = ACTIONS(1324), - [aux_sym_require_expression_token1] = ACTIONS(1324), - [aux_sym_require_once_expression_token1] = ACTIONS(1324), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_name] = ACTIONS(1326), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1324), + [aux_sym_function_static_declaration_token1] = ACTIONS(1326), + [aux_sym_global_declaration_token1] = ACTIONS(1326), + [aux_sym_namespace_definition_token1] = ACTIONS(1326), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1326), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1326), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1326), + [anon_sym_BSLASH] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [aux_sym_trait_declaration_token1] = ACTIONS(1326), + [aux_sym_interface_declaration_token1] = ACTIONS(1326), + [aux_sym_enum_declaration_token1] = ACTIONS(1326), + [aux_sym_enum_case_token1] = ACTIONS(1326), + [aux_sym_class_declaration_token1] = ACTIONS(1326), + [aux_sym_final_modifier_token1] = ACTIONS(1326), + [aux_sym_abstract_modifier_token1] = ACTIONS(1326), + [aux_sym_readonly_modifier_token1] = ACTIONS(1326), + [aux_sym_visibility_modifier_token1] = ACTIONS(1326), + [aux_sym_visibility_modifier_token2] = ACTIONS(1326), + [aux_sym_visibility_modifier_token3] = ACTIONS(1326), + [aux_sym__arrow_function_header_token1] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1324), + [aux_sym_cast_type_token1] = ACTIONS(1326), + [aux_sym_echo_statement_token1] = ACTIONS(1326), + [anon_sym_unset] = ACTIONS(1326), + [aux_sym_declare_statement_token1] = ACTIONS(1326), + [aux_sym_declare_statement_token2] = ACTIONS(1326), + [sym_float] = ACTIONS(1326), + [aux_sym_try_statement_token1] = ACTIONS(1326), + [aux_sym_goto_statement_token1] = ACTIONS(1326), + [aux_sym_continue_statement_token1] = ACTIONS(1326), + [aux_sym_break_statement_token1] = ACTIONS(1326), + [sym_integer] = ACTIONS(1326), + [aux_sym_return_statement_token1] = ACTIONS(1326), + [aux_sym_throw_expression_token1] = ACTIONS(1326), + [aux_sym_while_statement_token1] = ACTIONS(1326), + [aux_sym_while_statement_token2] = ACTIONS(1326), + [aux_sym_do_statement_token1] = ACTIONS(1326), + [aux_sym_for_statement_token1] = ACTIONS(1326), + [aux_sym_for_statement_token2] = ACTIONS(1326), + [aux_sym_foreach_statement_token1] = ACTIONS(1326), + [aux_sym_foreach_statement_token2] = ACTIONS(1326), + [aux_sym_if_statement_token1] = ACTIONS(1326), + [aux_sym_if_statement_token2] = ACTIONS(1326), + [aux_sym_else_if_clause_token1] = ACTIONS(1326), + [aux_sym_else_clause_token1] = ACTIONS(1326), + [aux_sym_match_expression_token1] = ACTIONS(1326), + [aux_sym_match_default_expression_token1] = ACTIONS(1326), + [aux_sym_switch_statement_token1] = ACTIONS(1326), + [aux_sym_switch_block_token1] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_AT] = ACTIONS(1324), + [aux_sym_clone_expression_token1] = ACTIONS(1326), + [aux_sym_print_intrinsic_token1] = ACTIONS(1326), + [aux_sym_object_creation_expression_token1] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [aux_sym__list_destructing_token1] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_self] = ACTIONS(1326), + [anon_sym_parent] = ACTIONS(1326), + [aux_sym__argument_name_token1] = ACTIONS(1326), + [aux_sym__argument_name_token2] = ACTIONS(1326), + [anon_sym_POUND_LBRACK] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [aux_sym_encapsed_string_token1] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [aux_sym_string_token1] = ACTIONS(1324), + [anon_sym_LT_LT_LT] = ACTIONS(1324), + [anon_sym_BQUOTE] = ACTIONS(1324), + [anon_sym_DOLLAR] = ACTIONS(1324), + [aux_sym_yield_expression_token1] = ACTIONS(1326), + [aux_sym_include_expression_token1] = ACTIONS(1326), + [aux_sym_include_once_expression_token1] = ACTIONS(1326), + [aux_sym_require_expression_token1] = ACTIONS(1326), + [aux_sym_require_once_expression_token1] = ACTIONS(1326), [sym_comment] = ACTIONS(5), }, [507] = { [sym_text_interpolation] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_name] = ACTIONS(1336), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1334), - [aux_sym_function_static_declaration_token1] = ACTIONS(1336), - [aux_sym_global_declaration_token1] = ACTIONS(1336), - [aux_sym_namespace_definition_token1] = ACTIONS(1336), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1336), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1336), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1336), - [anon_sym_BSLASH] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [aux_sym_trait_declaration_token1] = ACTIONS(1336), - [aux_sym_interface_declaration_token1] = ACTIONS(1336), - [aux_sym_enum_declaration_token1] = ACTIONS(1336), - [aux_sym_enum_case_token1] = ACTIONS(1336), - [aux_sym_class_declaration_token1] = ACTIONS(1336), - [aux_sym_final_modifier_token1] = ACTIONS(1336), - [aux_sym_abstract_modifier_token1] = ACTIONS(1336), - [aux_sym_readonly_modifier_token1] = ACTIONS(1336), - [aux_sym_visibility_modifier_token1] = ACTIONS(1336), - [aux_sym_visibility_modifier_token2] = ACTIONS(1336), - [aux_sym_visibility_modifier_token3] = ACTIONS(1336), - [aux_sym__arrow_function_header_token1] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1334), - [aux_sym_cast_type_token1] = ACTIONS(1336), - [aux_sym_echo_statement_token1] = ACTIONS(1336), - [anon_sym_unset] = ACTIONS(1336), - [aux_sym_declare_statement_token1] = ACTIONS(1336), - [aux_sym_declare_statement_token2] = ACTIONS(1336), - [sym_float] = ACTIONS(1336), - [aux_sym_try_statement_token1] = ACTIONS(1336), - [aux_sym_goto_statement_token1] = ACTIONS(1336), - [aux_sym_continue_statement_token1] = ACTIONS(1336), - [aux_sym_break_statement_token1] = ACTIONS(1336), - [sym_integer] = ACTIONS(1336), - [aux_sym_return_statement_token1] = ACTIONS(1336), - [aux_sym_throw_expression_token1] = ACTIONS(1336), - [aux_sym_while_statement_token1] = ACTIONS(1336), - [aux_sym_while_statement_token2] = ACTIONS(1336), - [aux_sym_do_statement_token1] = ACTIONS(1336), - [aux_sym_for_statement_token1] = ACTIONS(1336), - [aux_sym_for_statement_token2] = ACTIONS(1336), - [aux_sym_foreach_statement_token1] = ACTIONS(1336), - [aux_sym_foreach_statement_token2] = ACTIONS(1336), - [aux_sym_if_statement_token1] = ACTIONS(1336), - [aux_sym_if_statement_token2] = ACTIONS(1336), - [aux_sym_else_if_clause_token1] = ACTIONS(1336), - [aux_sym_else_clause_token1] = ACTIONS(1336), - [aux_sym_match_expression_token1] = ACTIONS(1336), - [aux_sym_match_default_expression_token1] = ACTIONS(1336), - [aux_sym_switch_statement_token1] = ACTIONS(1336), - [aux_sym_switch_block_token1] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_AT] = ACTIONS(1334), - [aux_sym_clone_expression_token1] = ACTIONS(1336), - [aux_sym_print_intrinsic_token1] = ACTIONS(1336), - [aux_sym_object_creation_expression_token1] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [aux_sym__list_destructing_token1] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_self] = ACTIONS(1336), - [anon_sym_parent] = ACTIONS(1336), - [aux_sym__argument_name_token1] = ACTIONS(1336), - [aux_sym__argument_name_token2] = ACTIONS(1336), - [anon_sym_POUND_LBRACK] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [aux_sym_encapsed_string_token1] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [aux_sym_string_token1] = ACTIONS(1334), - [anon_sym_LT_LT_LT] = ACTIONS(1334), - [anon_sym_BQUOTE] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1334), - [aux_sym_yield_expression_token1] = ACTIONS(1336), - [aux_sym_include_expression_token1] = ACTIONS(1336), - [aux_sym_include_once_expression_token1] = ACTIONS(1336), - [aux_sym_require_expression_token1] = ACTIONS(1336), - [aux_sym_require_once_expression_token1] = ACTIONS(1336), + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_name] = ACTIONS(1338), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1336), + [aux_sym_function_static_declaration_token1] = ACTIONS(1338), + [aux_sym_global_declaration_token1] = ACTIONS(1338), + [aux_sym_namespace_definition_token1] = ACTIONS(1338), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1338), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1338), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1338), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [aux_sym_trait_declaration_token1] = ACTIONS(1338), + [aux_sym_interface_declaration_token1] = ACTIONS(1338), + [aux_sym_enum_declaration_token1] = ACTIONS(1338), + [aux_sym_enum_case_token1] = ACTIONS(1338), + [aux_sym_class_declaration_token1] = ACTIONS(1338), + [aux_sym_final_modifier_token1] = ACTIONS(1338), + [aux_sym_abstract_modifier_token1] = ACTIONS(1338), + [aux_sym_readonly_modifier_token1] = ACTIONS(1338), + [aux_sym_visibility_modifier_token1] = ACTIONS(1338), + [aux_sym_visibility_modifier_token2] = ACTIONS(1338), + [aux_sym_visibility_modifier_token3] = ACTIONS(1338), + [aux_sym__arrow_function_header_token1] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1336), + [aux_sym_cast_type_token1] = ACTIONS(1338), + [aux_sym_echo_statement_token1] = ACTIONS(1338), + [anon_sym_unset] = ACTIONS(1338), + [aux_sym_declare_statement_token1] = ACTIONS(1338), + [aux_sym_declare_statement_token2] = ACTIONS(1338), + [sym_float] = ACTIONS(1338), + [aux_sym_try_statement_token1] = ACTIONS(1338), + [aux_sym_goto_statement_token1] = ACTIONS(1338), + [aux_sym_continue_statement_token1] = ACTIONS(1338), + [aux_sym_break_statement_token1] = ACTIONS(1338), + [sym_integer] = ACTIONS(1338), + [aux_sym_return_statement_token1] = ACTIONS(1338), + [aux_sym_throw_expression_token1] = ACTIONS(1338), + [aux_sym_while_statement_token1] = ACTIONS(1338), + [aux_sym_while_statement_token2] = ACTIONS(1338), + [aux_sym_do_statement_token1] = ACTIONS(1338), + [aux_sym_for_statement_token1] = ACTIONS(1338), + [aux_sym_for_statement_token2] = ACTIONS(1338), + [aux_sym_foreach_statement_token1] = ACTIONS(1338), + [aux_sym_foreach_statement_token2] = ACTIONS(1338), + [aux_sym_if_statement_token1] = ACTIONS(1338), + [aux_sym_if_statement_token2] = ACTIONS(1338), + [aux_sym_else_if_clause_token1] = ACTIONS(1338), + [aux_sym_else_clause_token1] = ACTIONS(1338), + [aux_sym_match_expression_token1] = ACTIONS(1338), + [aux_sym_match_default_expression_token1] = ACTIONS(1338), + [aux_sym_switch_statement_token1] = ACTIONS(1338), + [aux_sym_switch_block_token1] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [aux_sym_clone_expression_token1] = ACTIONS(1338), + [aux_sym_print_intrinsic_token1] = ACTIONS(1338), + [aux_sym_object_creation_expression_token1] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [aux_sym__list_destructing_token1] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1336), + [anon_sym_self] = ACTIONS(1338), + [anon_sym_parent] = ACTIONS(1338), + [aux_sym__argument_name_token1] = ACTIONS(1338), + [aux_sym__argument_name_token2] = ACTIONS(1338), + [anon_sym_POUND_LBRACK] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [aux_sym_encapsed_string_token1] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [aux_sym_string_token1] = ACTIONS(1336), + [anon_sym_LT_LT_LT] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1336), + [aux_sym_yield_expression_token1] = ACTIONS(1338), + [aux_sym_include_expression_token1] = ACTIONS(1338), + [aux_sym_include_once_expression_token1] = ACTIONS(1338), + [aux_sym_require_expression_token1] = ACTIONS(1338), + [aux_sym_require_once_expression_token1] = ACTIONS(1338), [sym_comment] = ACTIONS(5), }, [508] = { [sym_text_interpolation] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_name] = ACTIONS(1340), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1338), - [aux_sym_function_static_declaration_token1] = ACTIONS(1340), - [aux_sym_global_declaration_token1] = ACTIONS(1340), - [aux_sym_namespace_definition_token1] = ACTIONS(1340), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1340), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1340), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1340), - [anon_sym_BSLASH] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [aux_sym_trait_declaration_token1] = ACTIONS(1340), - [aux_sym_interface_declaration_token1] = ACTIONS(1340), - [aux_sym_enum_declaration_token1] = ACTIONS(1340), - [aux_sym_enum_case_token1] = ACTIONS(1340), - [aux_sym_class_declaration_token1] = ACTIONS(1340), - [aux_sym_final_modifier_token1] = ACTIONS(1340), - [aux_sym_abstract_modifier_token1] = ACTIONS(1340), - [aux_sym_readonly_modifier_token1] = ACTIONS(1340), - [aux_sym_visibility_modifier_token1] = ACTIONS(1340), - [aux_sym_visibility_modifier_token2] = ACTIONS(1340), - [aux_sym_visibility_modifier_token3] = ACTIONS(1340), - [aux_sym__arrow_function_header_token1] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1338), - [aux_sym_cast_type_token1] = ACTIONS(1340), - [aux_sym_echo_statement_token1] = ACTIONS(1340), - [anon_sym_unset] = ACTIONS(1340), - [aux_sym_declare_statement_token1] = ACTIONS(1340), - [aux_sym_declare_statement_token2] = ACTIONS(1340), - [sym_float] = ACTIONS(1340), - [aux_sym_try_statement_token1] = ACTIONS(1340), - [aux_sym_goto_statement_token1] = ACTIONS(1340), - [aux_sym_continue_statement_token1] = ACTIONS(1340), - [aux_sym_break_statement_token1] = ACTIONS(1340), - [sym_integer] = ACTIONS(1340), - [aux_sym_return_statement_token1] = ACTIONS(1340), - [aux_sym_throw_expression_token1] = ACTIONS(1340), - [aux_sym_while_statement_token1] = ACTIONS(1340), - [aux_sym_while_statement_token2] = ACTIONS(1340), - [aux_sym_do_statement_token1] = ACTIONS(1340), - [aux_sym_for_statement_token1] = ACTIONS(1340), - [aux_sym_for_statement_token2] = ACTIONS(1340), - [aux_sym_foreach_statement_token1] = ACTIONS(1340), - [aux_sym_foreach_statement_token2] = ACTIONS(1340), - [aux_sym_if_statement_token1] = ACTIONS(1340), - [aux_sym_if_statement_token2] = ACTIONS(1340), - [aux_sym_else_if_clause_token1] = ACTIONS(1340), - [aux_sym_else_clause_token1] = ACTIONS(1340), - [aux_sym_match_expression_token1] = ACTIONS(1340), - [aux_sym_match_default_expression_token1] = ACTIONS(1340), - [aux_sym_switch_statement_token1] = ACTIONS(1340), - [aux_sym_switch_block_token1] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_AT] = ACTIONS(1338), - [aux_sym_clone_expression_token1] = ACTIONS(1340), - [aux_sym_print_intrinsic_token1] = ACTIONS(1340), - [aux_sym_object_creation_expression_token1] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [aux_sym__list_destructing_token1] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_self] = ACTIONS(1340), - [anon_sym_parent] = ACTIONS(1340), - [aux_sym__argument_name_token1] = ACTIONS(1340), - [aux_sym__argument_name_token2] = ACTIONS(1340), - [anon_sym_POUND_LBRACK] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [aux_sym_encapsed_string_token1] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [aux_sym_string_token1] = ACTIONS(1338), - [anon_sym_LT_LT_LT] = ACTIONS(1338), - [anon_sym_BQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [aux_sym_yield_expression_token1] = ACTIONS(1340), - [aux_sym_include_expression_token1] = ACTIONS(1340), - [aux_sym_include_once_expression_token1] = ACTIONS(1340), - [aux_sym_require_expression_token1] = ACTIONS(1340), - [aux_sym_require_once_expression_token1] = ACTIONS(1340), + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_name] = ACTIONS(1342), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1340), + [aux_sym_function_static_declaration_token1] = ACTIONS(1342), + [aux_sym_global_declaration_token1] = ACTIONS(1342), + [aux_sym_namespace_definition_token1] = ACTIONS(1342), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1342), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1342), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1342), + [anon_sym_BSLASH] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [aux_sym_trait_declaration_token1] = ACTIONS(1342), + [aux_sym_interface_declaration_token1] = ACTIONS(1342), + [aux_sym_enum_declaration_token1] = ACTIONS(1342), + [aux_sym_enum_case_token1] = ACTIONS(1342), + [aux_sym_class_declaration_token1] = ACTIONS(1342), + [aux_sym_final_modifier_token1] = ACTIONS(1342), + [aux_sym_abstract_modifier_token1] = ACTIONS(1342), + [aux_sym_readonly_modifier_token1] = ACTIONS(1342), + [aux_sym_visibility_modifier_token1] = ACTIONS(1342), + [aux_sym_visibility_modifier_token2] = ACTIONS(1342), + [aux_sym_visibility_modifier_token3] = ACTIONS(1342), + [aux_sym__arrow_function_header_token1] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1340), + [aux_sym_cast_type_token1] = ACTIONS(1342), + [aux_sym_echo_statement_token1] = ACTIONS(1342), + [anon_sym_unset] = ACTIONS(1342), + [aux_sym_declare_statement_token1] = ACTIONS(1342), + [aux_sym_declare_statement_token2] = ACTIONS(1342), + [sym_float] = ACTIONS(1342), + [aux_sym_try_statement_token1] = ACTIONS(1342), + [aux_sym_goto_statement_token1] = ACTIONS(1342), + [aux_sym_continue_statement_token1] = ACTIONS(1342), + [aux_sym_break_statement_token1] = ACTIONS(1342), + [sym_integer] = ACTIONS(1342), + [aux_sym_return_statement_token1] = ACTIONS(1342), + [aux_sym_throw_expression_token1] = ACTIONS(1342), + [aux_sym_while_statement_token1] = ACTIONS(1342), + [aux_sym_while_statement_token2] = ACTIONS(1342), + [aux_sym_do_statement_token1] = ACTIONS(1342), + [aux_sym_for_statement_token1] = ACTIONS(1342), + [aux_sym_for_statement_token2] = ACTIONS(1342), + [aux_sym_foreach_statement_token1] = ACTIONS(1342), + [aux_sym_foreach_statement_token2] = ACTIONS(1342), + [aux_sym_if_statement_token1] = ACTIONS(1342), + [aux_sym_if_statement_token2] = ACTIONS(1342), + [aux_sym_else_if_clause_token1] = ACTIONS(1342), + [aux_sym_else_clause_token1] = ACTIONS(1342), + [aux_sym_match_expression_token1] = ACTIONS(1342), + [aux_sym_match_default_expression_token1] = ACTIONS(1342), + [aux_sym_switch_statement_token1] = ACTIONS(1342), + [aux_sym_switch_block_token1] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_AT] = ACTIONS(1340), + [aux_sym_clone_expression_token1] = ACTIONS(1342), + [aux_sym_print_intrinsic_token1] = ACTIONS(1342), + [aux_sym_object_creation_expression_token1] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [aux_sym__list_destructing_token1] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_self] = ACTIONS(1342), + [anon_sym_parent] = ACTIONS(1342), + [aux_sym__argument_name_token1] = ACTIONS(1342), + [aux_sym__argument_name_token2] = ACTIONS(1342), + [anon_sym_POUND_LBRACK] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [aux_sym_encapsed_string_token1] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [aux_sym_string_token1] = ACTIONS(1340), + [anon_sym_LT_LT_LT] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(1340), + [aux_sym_yield_expression_token1] = ACTIONS(1342), + [aux_sym_include_expression_token1] = ACTIONS(1342), + [aux_sym_include_once_expression_token1] = ACTIONS(1342), + [aux_sym_require_expression_token1] = ACTIONS(1342), + [aux_sym_require_once_expression_token1] = ACTIONS(1342), [sym_comment] = ACTIONS(5), }, [509] = { [sym_text_interpolation] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_name] = ACTIONS(1344), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1342), - [aux_sym_function_static_declaration_token1] = ACTIONS(1344), - [aux_sym_global_declaration_token1] = ACTIONS(1344), - [aux_sym_namespace_definition_token1] = ACTIONS(1344), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1344), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1344), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1344), - [anon_sym_BSLASH] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [aux_sym_trait_declaration_token1] = ACTIONS(1344), - [aux_sym_interface_declaration_token1] = ACTIONS(1344), - [aux_sym_enum_declaration_token1] = ACTIONS(1344), - [aux_sym_enum_case_token1] = ACTIONS(1344), - [aux_sym_class_declaration_token1] = ACTIONS(1344), - [aux_sym_final_modifier_token1] = ACTIONS(1344), - [aux_sym_abstract_modifier_token1] = ACTIONS(1344), - [aux_sym_readonly_modifier_token1] = ACTIONS(1344), - [aux_sym_visibility_modifier_token1] = ACTIONS(1344), - [aux_sym_visibility_modifier_token2] = ACTIONS(1344), - [aux_sym_visibility_modifier_token3] = ACTIONS(1344), - [aux_sym__arrow_function_header_token1] = ACTIONS(1344), - [anon_sym_LPAREN] = ACTIONS(1342), - [aux_sym_cast_type_token1] = ACTIONS(1344), - [aux_sym_echo_statement_token1] = ACTIONS(1344), - [anon_sym_unset] = ACTIONS(1344), - [aux_sym_declare_statement_token1] = ACTIONS(1344), - [aux_sym_declare_statement_token2] = ACTIONS(1344), - [sym_float] = ACTIONS(1344), - [aux_sym_try_statement_token1] = ACTIONS(1344), - [aux_sym_goto_statement_token1] = ACTIONS(1344), - [aux_sym_continue_statement_token1] = ACTIONS(1344), - [aux_sym_break_statement_token1] = ACTIONS(1344), - [sym_integer] = ACTIONS(1344), - [aux_sym_return_statement_token1] = ACTIONS(1344), - [aux_sym_throw_expression_token1] = ACTIONS(1344), - [aux_sym_while_statement_token1] = ACTIONS(1344), - [aux_sym_while_statement_token2] = ACTIONS(1344), - [aux_sym_do_statement_token1] = ACTIONS(1344), - [aux_sym_for_statement_token1] = ACTIONS(1344), - [aux_sym_for_statement_token2] = ACTIONS(1344), - [aux_sym_foreach_statement_token1] = ACTIONS(1344), - [aux_sym_foreach_statement_token2] = ACTIONS(1344), - [aux_sym_if_statement_token1] = ACTIONS(1344), - [aux_sym_if_statement_token2] = ACTIONS(1344), - [aux_sym_else_if_clause_token1] = ACTIONS(1344), - [aux_sym_else_clause_token1] = ACTIONS(1344), - [aux_sym_match_expression_token1] = ACTIONS(1344), - [aux_sym_match_default_expression_token1] = ACTIONS(1344), - [aux_sym_switch_statement_token1] = ACTIONS(1344), - [aux_sym_switch_block_token1] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1342), - [aux_sym_clone_expression_token1] = ACTIONS(1344), - [aux_sym_print_intrinsic_token1] = ACTIONS(1344), - [aux_sym_object_creation_expression_token1] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [aux_sym__list_destructing_token1] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_self] = ACTIONS(1344), - [anon_sym_parent] = ACTIONS(1344), - [aux_sym__argument_name_token1] = ACTIONS(1344), - [aux_sym__argument_name_token2] = ACTIONS(1344), - [anon_sym_POUND_LBRACK] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [aux_sym_encapsed_string_token1] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [aux_sym_string_token1] = ACTIONS(1342), - [anon_sym_LT_LT_LT] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [aux_sym_yield_expression_token1] = ACTIONS(1344), - [aux_sym_include_expression_token1] = ACTIONS(1344), - [aux_sym_include_once_expression_token1] = ACTIONS(1344), - [aux_sym_require_expression_token1] = ACTIONS(1344), - [aux_sym_require_once_expression_token1] = ACTIONS(1344), + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_name] = ACTIONS(1346), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1344), + [aux_sym_function_static_declaration_token1] = ACTIONS(1346), + [aux_sym_global_declaration_token1] = ACTIONS(1346), + [aux_sym_namespace_definition_token1] = ACTIONS(1346), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1346), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1346), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [aux_sym_trait_declaration_token1] = ACTIONS(1346), + [aux_sym_interface_declaration_token1] = ACTIONS(1346), + [aux_sym_enum_declaration_token1] = ACTIONS(1346), + [aux_sym_enum_case_token1] = ACTIONS(1346), + [aux_sym_class_declaration_token1] = ACTIONS(1346), + [aux_sym_final_modifier_token1] = ACTIONS(1346), + [aux_sym_abstract_modifier_token1] = ACTIONS(1346), + [aux_sym_readonly_modifier_token1] = ACTIONS(1346), + [aux_sym_visibility_modifier_token1] = ACTIONS(1346), + [aux_sym_visibility_modifier_token2] = ACTIONS(1346), + [aux_sym_visibility_modifier_token3] = ACTIONS(1346), + [aux_sym__arrow_function_header_token1] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1344), + [aux_sym_cast_type_token1] = ACTIONS(1346), + [aux_sym_echo_statement_token1] = ACTIONS(1346), + [anon_sym_unset] = ACTIONS(1346), + [aux_sym_declare_statement_token1] = ACTIONS(1346), + [aux_sym_declare_statement_token2] = ACTIONS(1346), + [sym_float] = ACTIONS(1346), + [aux_sym_try_statement_token1] = ACTIONS(1346), + [aux_sym_goto_statement_token1] = ACTIONS(1346), + [aux_sym_continue_statement_token1] = ACTIONS(1346), + [aux_sym_break_statement_token1] = ACTIONS(1346), + [sym_integer] = ACTIONS(1346), + [aux_sym_return_statement_token1] = ACTIONS(1346), + [aux_sym_throw_expression_token1] = ACTIONS(1346), + [aux_sym_while_statement_token1] = ACTIONS(1346), + [aux_sym_while_statement_token2] = ACTIONS(1346), + [aux_sym_do_statement_token1] = ACTIONS(1346), + [aux_sym_for_statement_token1] = ACTIONS(1346), + [aux_sym_for_statement_token2] = ACTIONS(1346), + [aux_sym_foreach_statement_token1] = ACTIONS(1346), + [aux_sym_foreach_statement_token2] = ACTIONS(1346), + [aux_sym_if_statement_token1] = ACTIONS(1346), + [aux_sym_if_statement_token2] = ACTIONS(1346), + [aux_sym_else_if_clause_token1] = ACTIONS(1346), + [aux_sym_else_clause_token1] = ACTIONS(1346), + [aux_sym_match_expression_token1] = ACTIONS(1346), + [aux_sym_match_default_expression_token1] = ACTIONS(1346), + [aux_sym_switch_statement_token1] = ACTIONS(1346), + [aux_sym_switch_block_token1] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_AT] = ACTIONS(1344), + [aux_sym_clone_expression_token1] = ACTIONS(1346), + [aux_sym_print_intrinsic_token1] = ACTIONS(1346), + [aux_sym_object_creation_expression_token1] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [aux_sym__list_destructing_token1] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1344), + [anon_sym_self] = ACTIONS(1346), + [anon_sym_parent] = ACTIONS(1346), + [aux_sym__argument_name_token1] = ACTIONS(1346), + [aux_sym__argument_name_token2] = ACTIONS(1346), + [anon_sym_POUND_LBRACK] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [aux_sym_encapsed_string_token1] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [aux_sym_string_token1] = ACTIONS(1344), + [anon_sym_LT_LT_LT] = ACTIONS(1344), + [anon_sym_BQUOTE] = ACTIONS(1344), + [anon_sym_DOLLAR] = ACTIONS(1344), + [aux_sym_yield_expression_token1] = ACTIONS(1346), + [aux_sym_include_expression_token1] = ACTIONS(1346), + [aux_sym_include_once_expression_token1] = ACTIONS(1346), + [aux_sym_require_expression_token1] = ACTIONS(1346), + [aux_sym_require_once_expression_token1] = ACTIONS(1346), [sym_comment] = ACTIONS(5), }, [510] = { [sym_text_interpolation] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_name] = ACTIONS(1348), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1346), - [aux_sym_function_static_declaration_token1] = ACTIONS(1348), - [aux_sym_global_declaration_token1] = ACTIONS(1348), - [aux_sym_namespace_definition_token1] = ACTIONS(1348), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1348), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1348), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1348), - [anon_sym_BSLASH] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [aux_sym_trait_declaration_token1] = ACTIONS(1348), - [aux_sym_interface_declaration_token1] = ACTIONS(1348), - [aux_sym_enum_declaration_token1] = ACTIONS(1348), - [aux_sym_enum_case_token1] = ACTIONS(1348), - [aux_sym_class_declaration_token1] = ACTIONS(1348), - [aux_sym_final_modifier_token1] = ACTIONS(1348), - [aux_sym_abstract_modifier_token1] = ACTIONS(1348), - [aux_sym_readonly_modifier_token1] = ACTIONS(1348), - [aux_sym_visibility_modifier_token1] = ACTIONS(1348), - [aux_sym_visibility_modifier_token2] = ACTIONS(1348), - [aux_sym_visibility_modifier_token3] = ACTIONS(1348), - [aux_sym__arrow_function_header_token1] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1346), - [aux_sym_cast_type_token1] = ACTIONS(1348), - [aux_sym_echo_statement_token1] = ACTIONS(1348), - [anon_sym_unset] = ACTIONS(1348), - [aux_sym_declare_statement_token1] = ACTIONS(1348), - [aux_sym_declare_statement_token2] = ACTIONS(1348), - [sym_float] = ACTIONS(1348), - [aux_sym_try_statement_token1] = ACTIONS(1348), - [aux_sym_goto_statement_token1] = ACTIONS(1348), - [aux_sym_continue_statement_token1] = ACTIONS(1348), - [aux_sym_break_statement_token1] = ACTIONS(1348), - [sym_integer] = ACTIONS(1348), - [aux_sym_return_statement_token1] = ACTIONS(1348), - [aux_sym_throw_expression_token1] = ACTIONS(1348), - [aux_sym_while_statement_token1] = ACTIONS(1348), - [aux_sym_while_statement_token2] = ACTIONS(1348), - [aux_sym_do_statement_token1] = ACTIONS(1348), - [aux_sym_for_statement_token1] = ACTIONS(1348), - [aux_sym_for_statement_token2] = ACTIONS(1348), - [aux_sym_foreach_statement_token1] = ACTIONS(1348), - [aux_sym_foreach_statement_token2] = ACTIONS(1348), - [aux_sym_if_statement_token1] = ACTIONS(1348), - [aux_sym_if_statement_token2] = ACTIONS(1348), - [aux_sym_else_if_clause_token1] = ACTIONS(1348), - [aux_sym_else_clause_token1] = ACTIONS(1348), - [aux_sym_match_expression_token1] = ACTIONS(1348), - [aux_sym_match_default_expression_token1] = ACTIONS(1348), - [aux_sym_switch_statement_token1] = ACTIONS(1348), - [aux_sym_switch_block_token1] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_AT] = ACTIONS(1346), - [aux_sym_clone_expression_token1] = ACTIONS(1348), - [aux_sym_print_intrinsic_token1] = ACTIONS(1348), - [aux_sym_object_creation_expression_token1] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [aux_sym__list_destructing_token1] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_self] = ACTIONS(1348), - [anon_sym_parent] = ACTIONS(1348), - [aux_sym__argument_name_token1] = ACTIONS(1348), - [aux_sym__argument_name_token2] = ACTIONS(1348), - [anon_sym_POUND_LBRACK] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [aux_sym_encapsed_string_token1] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [aux_sym_string_token1] = ACTIONS(1346), - [anon_sym_LT_LT_LT] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [aux_sym_yield_expression_token1] = ACTIONS(1348), - [aux_sym_include_expression_token1] = ACTIONS(1348), - [aux_sym_include_once_expression_token1] = ACTIONS(1348), - [aux_sym_require_expression_token1] = ACTIONS(1348), - [aux_sym_require_once_expression_token1] = ACTIONS(1348), + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_name] = ACTIONS(1350), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1348), + [aux_sym_function_static_declaration_token1] = ACTIONS(1350), + [aux_sym_global_declaration_token1] = ACTIONS(1350), + [aux_sym_namespace_definition_token1] = ACTIONS(1350), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1350), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1350), + [anon_sym_BSLASH] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [aux_sym_trait_declaration_token1] = ACTIONS(1350), + [aux_sym_interface_declaration_token1] = ACTIONS(1350), + [aux_sym_enum_declaration_token1] = ACTIONS(1350), + [aux_sym_enum_case_token1] = ACTIONS(1350), + [aux_sym_class_declaration_token1] = ACTIONS(1350), + [aux_sym_final_modifier_token1] = ACTIONS(1350), + [aux_sym_abstract_modifier_token1] = ACTIONS(1350), + [aux_sym_readonly_modifier_token1] = ACTIONS(1350), + [aux_sym_visibility_modifier_token1] = ACTIONS(1350), + [aux_sym_visibility_modifier_token2] = ACTIONS(1350), + [aux_sym_visibility_modifier_token3] = ACTIONS(1350), + [aux_sym__arrow_function_header_token1] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1348), + [aux_sym_cast_type_token1] = ACTIONS(1350), + [aux_sym_echo_statement_token1] = ACTIONS(1350), + [anon_sym_unset] = ACTIONS(1350), + [aux_sym_declare_statement_token1] = ACTIONS(1350), + [aux_sym_declare_statement_token2] = ACTIONS(1350), + [sym_float] = ACTIONS(1350), + [aux_sym_try_statement_token1] = ACTIONS(1350), + [aux_sym_goto_statement_token1] = ACTIONS(1350), + [aux_sym_continue_statement_token1] = ACTIONS(1350), + [aux_sym_break_statement_token1] = ACTIONS(1350), + [sym_integer] = ACTIONS(1350), + [aux_sym_return_statement_token1] = ACTIONS(1350), + [aux_sym_throw_expression_token1] = ACTIONS(1350), + [aux_sym_while_statement_token1] = ACTIONS(1350), + [aux_sym_while_statement_token2] = ACTIONS(1350), + [aux_sym_do_statement_token1] = ACTIONS(1350), + [aux_sym_for_statement_token1] = ACTIONS(1350), + [aux_sym_for_statement_token2] = ACTIONS(1350), + [aux_sym_foreach_statement_token1] = ACTIONS(1350), + [aux_sym_foreach_statement_token2] = ACTIONS(1350), + [aux_sym_if_statement_token1] = ACTIONS(1350), + [aux_sym_if_statement_token2] = ACTIONS(1350), + [aux_sym_else_if_clause_token1] = ACTIONS(1350), + [aux_sym_else_clause_token1] = ACTIONS(1350), + [aux_sym_match_expression_token1] = ACTIONS(1350), + [aux_sym_match_default_expression_token1] = ACTIONS(1350), + [aux_sym_switch_statement_token1] = ACTIONS(1350), + [aux_sym_switch_block_token1] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), + [aux_sym_clone_expression_token1] = ACTIONS(1350), + [aux_sym_print_intrinsic_token1] = ACTIONS(1350), + [aux_sym_object_creation_expression_token1] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [aux_sym__list_destructing_token1] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_self] = ACTIONS(1350), + [anon_sym_parent] = ACTIONS(1350), + [aux_sym__argument_name_token1] = ACTIONS(1350), + [aux_sym__argument_name_token2] = ACTIONS(1350), + [anon_sym_POUND_LBRACK] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [aux_sym_encapsed_string_token1] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [aux_sym_string_token1] = ACTIONS(1348), + [anon_sym_LT_LT_LT] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [aux_sym_yield_expression_token1] = ACTIONS(1350), + [aux_sym_include_expression_token1] = ACTIONS(1350), + [aux_sym_include_once_expression_token1] = ACTIONS(1350), + [aux_sym_require_expression_token1] = ACTIONS(1350), + [aux_sym_require_once_expression_token1] = ACTIONS(1350), [sym_comment] = ACTIONS(5), }, [511] = { [sym_text_interpolation] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_name] = ACTIONS(1352), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1350), - [aux_sym_function_static_declaration_token1] = ACTIONS(1352), - [aux_sym_global_declaration_token1] = ACTIONS(1352), - [aux_sym_namespace_definition_token1] = ACTIONS(1352), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1352), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1352), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [aux_sym_trait_declaration_token1] = ACTIONS(1352), - [aux_sym_interface_declaration_token1] = ACTIONS(1352), - [aux_sym_enum_declaration_token1] = ACTIONS(1352), - [aux_sym_enum_case_token1] = ACTIONS(1352), - [aux_sym_class_declaration_token1] = ACTIONS(1352), - [aux_sym_final_modifier_token1] = ACTIONS(1352), - [aux_sym_abstract_modifier_token1] = ACTIONS(1352), - [aux_sym_readonly_modifier_token1] = ACTIONS(1352), - [aux_sym_visibility_modifier_token1] = ACTIONS(1352), - [aux_sym_visibility_modifier_token2] = ACTIONS(1352), - [aux_sym_visibility_modifier_token3] = ACTIONS(1352), - [aux_sym__arrow_function_header_token1] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1350), - [aux_sym_cast_type_token1] = ACTIONS(1352), - [aux_sym_echo_statement_token1] = ACTIONS(1352), - [anon_sym_unset] = ACTIONS(1352), - [aux_sym_declare_statement_token1] = ACTIONS(1352), - [aux_sym_declare_statement_token2] = ACTIONS(1352), - [sym_float] = ACTIONS(1352), - [aux_sym_try_statement_token1] = ACTIONS(1352), - [aux_sym_goto_statement_token1] = ACTIONS(1352), - [aux_sym_continue_statement_token1] = ACTIONS(1352), - [aux_sym_break_statement_token1] = ACTIONS(1352), - [sym_integer] = ACTIONS(1352), - [aux_sym_return_statement_token1] = ACTIONS(1352), - [aux_sym_throw_expression_token1] = ACTIONS(1352), - [aux_sym_while_statement_token1] = ACTIONS(1352), - [aux_sym_while_statement_token2] = ACTIONS(1352), - [aux_sym_do_statement_token1] = ACTIONS(1352), - [aux_sym_for_statement_token1] = ACTIONS(1352), - [aux_sym_for_statement_token2] = ACTIONS(1352), - [aux_sym_foreach_statement_token1] = ACTIONS(1352), - [aux_sym_foreach_statement_token2] = ACTIONS(1352), - [aux_sym_if_statement_token1] = ACTIONS(1352), - [aux_sym_if_statement_token2] = ACTIONS(1352), - [aux_sym_else_if_clause_token1] = ACTIONS(1352), - [aux_sym_else_clause_token1] = ACTIONS(1352), - [aux_sym_match_expression_token1] = ACTIONS(1352), - [aux_sym_match_default_expression_token1] = ACTIONS(1352), - [aux_sym_switch_statement_token1] = ACTIONS(1352), - [aux_sym_switch_block_token1] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1350), - [aux_sym_clone_expression_token1] = ACTIONS(1352), - [aux_sym_print_intrinsic_token1] = ACTIONS(1352), - [aux_sym_object_creation_expression_token1] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [aux_sym__list_destructing_token1] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_self] = ACTIONS(1352), - [anon_sym_parent] = ACTIONS(1352), - [aux_sym__argument_name_token1] = ACTIONS(1352), - [aux_sym__argument_name_token2] = ACTIONS(1352), - [anon_sym_POUND_LBRACK] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [aux_sym_encapsed_string_token1] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [aux_sym_string_token1] = ACTIONS(1350), - [anon_sym_LT_LT_LT] = ACTIONS(1350), - [anon_sym_BQUOTE] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1350), - [aux_sym_yield_expression_token1] = ACTIONS(1352), - [aux_sym_include_expression_token1] = ACTIONS(1352), - [aux_sym_include_once_expression_token1] = ACTIONS(1352), - [aux_sym_require_expression_token1] = ACTIONS(1352), - [aux_sym_require_once_expression_token1] = ACTIONS(1352), + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_name] = ACTIONS(1354), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1352), + [aux_sym_function_static_declaration_token1] = ACTIONS(1354), + [aux_sym_global_declaration_token1] = ACTIONS(1354), + [aux_sym_namespace_definition_token1] = ACTIONS(1354), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1354), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1354), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1354), + [anon_sym_BSLASH] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [aux_sym_trait_declaration_token1] = ACTIONS(1354), + [aux_sym_interface_declaration_token1] = ACTIONS(1354), + [aux_sym_enum_declaration_token1] = ACTIONS(1354), + [aux_sym_enum_case_token1] = ACTIONS(1354), + [aux_sym_class_declaration_token1] = ACTIONS(1354), + [aux_sym_final_modifier_token1] = ACTIONS(1354), + [aux_sym_abstract_modifier_token1] = ACTIONS(1354), + [aux_sym_readonly_modifier_token1] = ACTIONS(1354), + [aux_sym_visibility_modifier_token1] = ACTIONS(1354), + [aux_sym_visibility_modifier_token2] = ACTIONS(1354), + [aux_sym_visibility_modifier_token3] = ACTIONS(1354), + [aux_sym__arrow_function_header_token1] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1352), + [aux_sym_cast_type_token1] = ACTIONS(1354), + [aux_sym_echo_statement_token1] = ACTIONS(1354), + [anon_sym_unset] = ACTIONS(1354), + [aux_sym_declare_statement_token1] = ACTIONS(1354), + [aux_sym_declare_statement_token2] = ACTIONS(1354), + [sym_float] = ACTIONS(1354), + [aux_sym_try_statement_token1] = ACTIONS(1354), + [aux_sym_goto_statement_token1] = ACTIONS(1354), + [aux_sym_continue_statement_token1] = ACTIONS(1354), + [aux_sym_break_statement_token1] = ACTIONS(1354), + [sym_integer] = ACTIONS(1354), + [aux_sym_return_statement_token1] = ACTIONS(1354), + [aux_sym_throw_expression_token1] = ACTIONS(1354), + [aux_sym_while_statement_token1] = ACTIONS(1354), + [aux_sym_while_statement_token2] = ACTIONS(1354), + [aux_sym_do_statement_token1] = ACTIONS(1354), + [aux_sym_for_statement_token1] = ACTIONS(1354), + [aux_sym_for_statement_token2] = ACTIONS(1354), + [aux_sym_foreach_statement_token1] = ACTIONS(1354), + [aux_sym_foreach_statement_token2] = ACTIONS(1354), + [aux_sym_if_statement_token1] = ACTIONS(1354), + [aux_sym_if_statement_token2] = ACTIONS(1354), + [aux_sym_else_if_clause_token1] = ACTIONS(1354), + [aux_sym_else_clause_token1] = ACTIONS(1354), + [aux_sym_match_expression_token1] = ACTIONS(1354), + [aux_sym_match_default_expression_token1] = ACTIONS(1354), + [aux_sym_switch_statement_token1] = ACTIONS(1354), + [aux_sym_switch_block_token1] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_AT] = ACTIONS(1352), + [aux_sym_clone_expression_token1] = ACTIONS(1354), + [aux_sym_print_intrinsic_token1] = ACTIONS(1354), + [aux_sym_object_creation_expression_token1] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [aux_sym__list_destructing_token1] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1352), + [anon_sym_self] = ACTIONS(1354), + [anon_sym_parent] = ACTIONS(1354), + [aux_sym__argument_name_token1] = ACTIONS(1354), + [aux_sym__argument_name_token2] = ACTIONS(1354), + [anon_sym_POUND_LBRACK] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [aux_sym_encapsed_string_token1] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [aux_sym_string_token1] = ACTIONS(1352), + [anon_sym_LT_LT_LT] = ACTIONS(1352), + [anon_sym_BQUOTE] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1352), + [aux_sym_yield_expression_token1] = ACTIONS(1354), + [aux_sym_include_expression_token1] = ACTIONS(1354), + [aux_sym_include_once_expression_token1] = ACTIONS(1354), + [aux_sym_require_expression_token1] = ACTIONS(1354), + [aux_sym_require_once_expression_token1] = ACTIONS(1354), [sym_comment] = ACTIONS(5), }, [512] = { [sym_text_interpolation] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_name] = ACTIONS(1356), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1354), - [aux_sym_function_static_declaration_token1] = ACTIONS(1356), - [aux_sym_global_declaration_token1] = ACTIONS(1356), - [aux_sym_namespace_definition_token1] = ACTIONS(1356), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1356), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1356), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1356), - [anon_sym_BSLASH] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [aux_sym_trait_declaration_token1] = ACTIONS(1356), - [aux_sym_interface_declaration_token1] = ACTIONS(1356), - [aux_sym_enum_declaration_token1] = ACTIONS(1356), - [aux_sym_enum_case_token1] = ACTIONS(1356), - [aux_sym_class_declaration_token1] = ACTIONS(1356), - [aux_sym_final_modifier_token1] = ACTIONS(1356), - [aux_sym_abstract_modifier_token1] = ACTIONS(1356), - [aux_sym_readonly_modifier_token1] = ACTIONS(1356), - [aux_sym_visibility_modifier_token1] = ACTIONS(1356), - [aux_sym_visibility_modifier_token2] = ACTIONS(1356), - [aux_sym_visibility_modifier_token3] = ACTIONS(1356), - [aux_sym__arrow_function_header_token1] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1354), - [aux_sym_cast_type_token1] = ACTIONS(1356), - [aux_sym_echo_statement_token1] = ACTIONS(1356), - [anon_sym_unset] = ACTIONS(1356), - [aux_sym_declare_statement_token1] = ACTIONS(1356), - [aux_sym_declare_statement_token2] = ACTIONS(1356), - [sym_float] = ACTIONS(1356), - [aux_sym_try_statement_token1] = ACTIONS(1356), - [aux_sym_goto_statement_token1] = ACTIONS(1356), - [aux_sym_continue_statement_token1] = ACTIONS(1356), - [aux_sym_break_statement_token1] = ACTIONS(1356), - [sym_integer] = ACTIONS(1356), - [aux_sym_return_statement_token1] = ACTIONS(1356), - [aux_sym_throw_expression_token1] = ACTIONS(1356), - [aux_sym_while_statement_token1] = ACTIONS(1356), - [aux_sym_while_statement_token2] = ACTIONS(1356), - [aux_sym_do_statement_token1] = ACTIONS(1356), - [aux_sym_for_statement_token1] = ACTIONS(1356), - [aux_sym_for_statement_token2] = ACTIONS(1356), - [aux_sym_foreach_statement_token1] = ACTIONS(1356), - [aux_sym_foreach_statement_token2] = ACTIONS(1356), - [aux_sym_if_statement_token1] = ACTIONS(1356), - [aux_sym_if_statement_token2] = ACTIONS(1356), - [aux_sym_else_if_clause_token1] = ACTIONS(1356), - [aux_sym_else_clause_token1] = ACTIONS(1356), - [aux_sym_match_expression_token1] = ACTIONS(1356), - [aux_sym_match_default_expression_token1] = ACTIONS(1356), - [aux_sym_switch_statement_token1] = ACTIONS(1356), - [aux_sym_switch_block_token1] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_AT] = ACTIONS(1354), - [aux_sym_clone_expression_token1] = ACTIONS(1356), - [aux_sym_print_intrinsic_token1] = ACTIONS(1356), - [aux_sym_object_creation_expression_token1] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [aux_sym__list_destructing_token1] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_self] = ACTIONS(1356), - [anon_sym_parent] = ACTIONS(1356), - [aux_sym__argument_name_token1] = ACTIONS(1356), - [aux_sym__argument_name_token2] = ACTIONS(1356), - [anon_sym_POUND_LBRACK] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [aux_sym_encapsed_string_token1] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [aux_sym_string_token1] = ACTIONS(1354), - [anon_sym_LT_LT_LT] = ACTIONS(1354), - [anon_sym_BQUOTE] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [aux_sym_yield_expression_token1] = ACTIONS(1356), - [aux_sym_include_expression_token1] = ACTIONS(1356), - [aux_sym_include_once_expression_token1] = ACTIONS(1356), - [aux_sym_require_expression_token1] = ACTIONS(1356), - [aux_sym_require_once_expression_token1] = ACTIONS(1356), + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_name] = ACTIONS(1358), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1356), + [aux_sym_function_static_declaration_token1] = ACTIONS(1358), + [aux_sym_global_declaration_token1] = ACTIONS(1358), + [aux_sym_namespace_definition_token1] = ACTIONS(1358), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1358), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1358), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1358), + [anon_sym_BSLASH] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [aux_sym_trait_declaration_token1] = ACTIONS(1358), + [aux_sym_interface_declaration_token1] = ACTIONS(1358), + [aux_sym_enum_declaration_token1] = ACTIONS(1358), + [aux_sym_enum_case_token1] = ACTIONS(1358), + [aux_sym_class_declaration_token1] = ACTIONS(1358), + [aux_sym_final_modifier_token1] = ACTIONS(1358), + [aux_sym_abstract_modifier_token1] = ACTIONS(1358), + [aux_sym_readonly_modifier_token1] = ACTIONS(1358), + [aux_sym_visibility_modifier_token1] = ACTIONS(1358), + [aux_sym_visibility_modifier_token2] = ACTIONS(1358), + [aux_sym_visibility_modifier_token3] = ACTIONS(1358), + [aux_sym__arrow_function_header_token1] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1356), + [aux_sym_cast_type_token1] = ACTIONS(1358), + [aux_sym_echo_statement_token1] = ACTIONS(1358), + [anon_sym_unset] = ACTIONS(1358), + [aux_sym_declare_statement_token1] = ACTIONS(1358), + [aux_sym_declare_statement_token2] = ACTIONS(1358), + [sym_float] = ACTIONS(1358), + [aux_sym_try_statement_token1] = ACTIONS(1358), + [aux_sym_goto_statement_token1] = ACTIONS(1358), + [aux_sym_continue_statement_token1] = ACTIONS(1358), + [aux_sym_break_statement_token1] = ACTIONS(1358), + [sym_integer] = ACTIONS(1358), + [aux_sym_return_statement_token1] = ACTIONS(1358), + [aux_sym_throw_expression_token1] = ACTIONS(1358), + [aux_sym_while_statement_token1] = ACTIONS(1358), + [aux_sym_while_statement_token2] = ACTIONS(1358), + [aux_sym_do_statement_token1] = ACTIONS(1358), + [aux_sym_for_statement_token1] = ACTIONS(1358), + [aux_sym_for_statement_token2] = ACTIONS(1358), + [aux_sym_foreach_statement_token1] = ACTIONS(1358), + [aux_sym_foreach_statement_token2] = ACTIONS(1358), + [aux_sym_if_statement_token1] = ACTIONS(1358), + [aux_sym_if_statement_token2] = ACTIONS(1358), + [aux_sym_else_if_clause_token1] = ACTIONS(1358), + [aux_sym_else_clause_token1] = ACTIONS(1358), + [aux_sym_match_expression_token1] = ACTIONS(1358), + [aux_sym_match_default_expression_token1] = ACTIONS(1358), + [aux_sym_switch_statement_token1] = ACTIONS(1358), + [aux_sym_switch_block_token1] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [aux_sym_clone_expression_token1] = ACTIONS(1358), + [aux_sym_print_intrinsic_token1] = ACTIONS(1358), + [aux_sym_object_creation_expression_token1] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [aux_sym__list_destructing_token1] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_self] = ACTIONS(1358), + [anon_sym_parent] = ACTIONS(1358), + [aux_sym__argument_name_token1] = ACTIONS(1358), + [aux_sym__argument_name_token2] = ACTIONS(1358), + [anon_sym_POUND_LBRACK] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [aux_sym_encapsed_string_token1] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [aux_sym_string_token1] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [aux_sym_yield_expression_token1] = ACTIONS(1358), + [aux_sym_include_expression_token1] = ACTIONS(1358), + [aux_sym_include_once_expression_token1] = ACTIONS(1358), + [aux_sym_require_expression_token1] = ACTIONS(1358), + [aux_sym_require_once_expression_token1] = ACTIONS(1358), [sym_comment] = ACTIONS(5), }, [513] = { [sym_text_interpolation] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_name] = ACTIONS(1360), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1358), - [aux_sym_function_static_declaration_token1] = ACTIONS(1360), - [aux_sym_global_declaration_token1] = ACTIONS(1360), - [aux_sym_namespace_definition_token1] = ACTIONS(1360), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1360), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1360), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1360), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [aux_sym_trait_declaration_token1] = ACTIONS(1360), - [aux_sym_interface_declaration_token1] = ACTIONS(1360), - [aux_sym_enum_declaration_token1] = ACTIONS(1360), - [aux_sym_enum_case_token1] = ACTIONS(1360), - [aux_sym_class_declaration_token1] = ACTIONS(1360), - [aux_sym_final_modifier_token1] = ACTIONS(1360), - [aux_sym_abstract_modifier_token1] = ACTIONS(1360), - [aux_sym_readonly_modifier_token1] = ACTIONS(1360), - [aux_sym_visibility_modifier_token1] = ACTIONS(1360), - [aux_sym_visibility_modifier_token2] = ACTIONS(1360), - [aux_sym_visibility_modifier_token3] = ACTIONS(1360), - [aux_sym__arrow_function_header_token1] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1358), - [aux_sym_cast_type_token1] = ACTIONS(1360), - [aux_sym_echo_statement_token1] = ACTIONS(1360), - [anon_sym_unset] = ACTIONS(1360), - [aux_sym_declare_statement_token1] = ACTIONS(1360), - [aux_sym_declare_statement_token2] = ACTIONS(1360), - [sym_float] = ACTIONS(1360), - [aux_sym_try_statement_token1] = ACTIONS(1360), - [aux_sym_goto_statement_token1] = ACTIONS(1360), - [aux_sym_continue_statement_token1] = ACTIONS(1360), - [aux_sym_break_statement_token1] = ACTIONS(1360), - [sym_integer] = ACTIONS(1360), - [aux_sym_return_statement_token1] = ACTIONS(1360), - [aux_sym_throw_expression_token1] = ACTIONS(1360), - [aux_sym_while_statement_token1] = ACTIONS(1360), - [aux_sym_while_statement_token2] = ACTIONS(1360), - [aux_sym_do_statement_token1] = ACTIONS(1360), - [aux_sym_for_statement_token1] = ACTIONS(1360), - [aux_sym_for_statement_token2] = ACTIONS(1360), - [aux_sym_foreach_statement_token1] = ACTIONS(1360), - [aux_sym_foreach_statement_token2] = ACTIONS(1360), - [aux_sym_if_statement_token1] = ACTIONS(1360), - [aux_sym_if_statement_token2] = ACTIONS(1360), - [aux_sym_else_if_clause_token1] = ACTIONS(1360), - [aux_sym_else_clause_token1] = ACTIONS(1360), - [aux_sym_match_expression_token1] = ACTIONS(1360), - [aux_sym_match_default_expression_token1] = ACTIONS(1360), - [aux_sym_switch_statement_token1] = ACTIONS(1360), - [aux_sym_switch_block_token1] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [aux_sym_clone_expression_token1] = ACTIONS(1360), - [aux_sym_print_intrinsic_token1] = ACTIONS(1360), - [aux_sym_object_creation_expression_token1] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [aux_sym__list_destructing_token1] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_self] = ACTIONS(1360), - [anon_sym_parent] = ACTIONS(1360), - [aux_sym__argument_name_token1] = ACTIONS(1360), - [aux_sym__argument_name_token2] = ACTIONS(1360), - [anon_sym_POUND_LBRACK] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [aux_sym_encapsed_string_token1] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [aux_sym_string_token1] = ACTIONS(1358), - [anon_sym_LT_LT_LT] = ACTIONS(1358), - [anon_sym_BQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [aux_sym_yield_expression_token1] = ACTIONS(1360), - [aux_sym_include_expression_token1] = ACTIONS(1360), - [aux_sym_include_once_expression_token1] = ACTIONS(1360), - [aux_sym_require_expression_token1] = ACTIONS(1360), - [aux_sym_require_once_expression_token1] = ACTIONS(1360), + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_name] = ACTIONS(1362), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1360), + [aux_sym_function_static_declaration_token1] = ACTIONS(1362), + [aux_sym_global_declaration_token1] = ACTIONS(1362), + [aux_sym_namespace_definition_token1] = ACTIONS(1362), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1362), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1362), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1362), + [anon_sym_BSLASH] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [aux_sym_trait_declaration_token1] = ACTIONS(1362), + [aux_sym_interface_declaration_token1] = ACTIONS(1362), + [aux_sym_enum_declaration_token1] = ACTIONS(1362), + [aux_sym_enum_case_token1] = ACTIONS(1362), + [aux_sym_class_declaration_token1] = ACTIONS(1362), + [aux_sym_final_modifier_token1] = ACTIONS(1362), + [aux_sym_abstract_modifier_token1] = ACTIONS(1362), + [aux_sym_readonly_modifier_token1] = ACTIONS(1362), + [aux_sym_visibility_modifier_token1] = ACTIONS(1362), + [aux_sym_visibility_modifier_token2] = ACTIONS(1362), + [aux_sym_visibility_modifier_token3] = ACTIONS(1362), + [aux_sym__arrow_function_header_token1] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1360), + [aux_sym_cast_type_token1] = ACTIONS(1362), + [aux_sym_echo_statement_token1] = ACTIONS(1362), + [anon_sym_unset] = ACTIONS(1362), + [aux_sym_declare_statement_token1] = ACTIONS(1362), + [aux_sym_declare_statement_token2] = ACTIONS(1362), + [sym_float] = ACTIONS(1362), + [aux_sym_try_statement_token1] = ACTIONS(1362), + [aux_sym_goto_statement_token1] = ACTIONS(1362), + [aux_sym_continue_statement_token1] = ACTIONS(1362), + [aux_sym_break_statement_token1] = ACTIONS(1362), + [sym_integer] = ACTIONS(1362), + [aux_sym_return_statement_token1] = ACTIONS(1362), + [aux_sym_throw_expression_token1] = ACTIONS(1362), + [aux_sym_while_statement_token1] = ACTIONS(1362), + [aux_sym_while_statement_token2] = ACTIONS(1362), + [aux_sym_do_statement_token1] = ACTIONS(1362), + [aux_sym_for_statement_token1] = ACTIONS(1362), + [aux_sym_for_statement_token2] = ACTIONS(1362), + [aux_sym_foreach_statement_token1] = ACTIONS(1362), + [aux_sym_foreach_statement_token2] = ACTIONS(1362), + [aux_sym_if_statement_token1] = ACTIONS(1362), + [aux_sym_if_statement_token2] = ACTIONS(1362), + [aux_sym_else_if_clause_token1] = ACTIONS(1362), + [aux_sym_else_clause_token1] = ACTIONS(1362), + [aux_sym_match_expression_token1] = ACTIONS(1362), + [aux_sym_match_default_expression_token1] = ACTIONS(1362), + [aux_sym_switch_statement_token1] = ACTIONS(1362), + [aux_sym_switch_block_token1] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1360), + [aux_sym_clone_expression_token1] = ACTIONS(1362), + [aux_sym_print_intrinsic_token1] = ACTIONS(1362), + [aux_sym_object_creation_expression_token1] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [aux_sym__list_destructing_token1] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_self] = ACTIONS(1362), + [anon_sym_parent] = ACTIONS(1362), + [aux_sym__argument_name_token1] = ACTIONS(1362), + [aux_sym__argument_name_token2] = ACTIONS(1362), + [anon_sym_POUND_LBRACK] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [aux_sym_encapsed_string_token1] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [aux_sym_string_token1] = ACTIONS(1360), + [anon_sym_LT_LT_LT] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1360), + [aux_sym_yield_expression_token1] = ACTIONS(1362), + [aux_sym_include_expression_token1] = ACTIONS(1362), + [aux_sym_include_once_expression_token1] = ACTIONS(1362), + [aux_sym_require_expression_token1] = ACTIONS(1362), + [aux_sym_require_once_expression_token1] = ACTIONS(1362), [sym_comment] = ACTIONS(5), }, [514] = { [sym_text_interpolation] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_name] = ACTIONS(1364), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1362), - [aux_sym_function_static_declaration_token1] = ACTIONS(1364), - [aux_sym_global_declaration_token1] = ACTIONS(1364), - [aux_sym_namespace_definition_token1] = ACTIONS(1364), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1364), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1364), - [anon_sym_BSLASH] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [aux_sym_trait_declaration_token1] = ACTIONS(1364), - [aux_sym_interface_declaration_token1] = ACTIONS(1364), - [aux_sym_enum_declaration_token1] = ACTIONS(1364), - [aux_sym_enum_case_token1] = ACTIONS(1364), - [aux_sym_class_declaration_token1] = ACTIONS(1364), - [aux_sym_final_modifier_token1] = ACTIONS(1364), - [aux_sym_abstract_modifier_token1] = ACTIONS(1364), - [aux_sym_readonly_modifier_token1] = ACTIONS(1364), - [aux_sym_visibility_modifier_token1] = ACTIONS(1364), - [aux_sym_visibility_modifier_token2] = ACTIONS(1364), - [aux_sym_visibility_modifier_token3] = ACTIONS(1364), - [aux_sym__arrow_function_header_token1] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1362), - [aux_sym_cast_type_token1] = ACTIONS(1364), - [aux_sym_echo_statement_token1] = ACTIONS(1364), - [anon_sym_unset] = ACTIONS(1364), - [aux_sym_declare_statement_token1] = ACTIONS(1364), - [aux_sym_declare_statement_token2] = ACTIONS(1364), - [sym_float] = ACTIONS(1364), - [aux_sym_try_statement_token1] = ACTIONS(1364), - [aux_sym_goto_statement_token1] = ACTIONS(1364), - [aux_sym_continue_statement_token1] = ACTIONS(1364), - [aux_sym_break_statement_token1] = ACTIONS(1364), - [sym_integer] = ACTIONS(1364), - [aux_sym_return_statement_token1] = ACTIONS(1364), - [aux_sym_throw_expression_token1] = ACTIONS(1364), - [aux_sym_while_statement_token1] = ACTIONS(1364), - [aux_sym_while_statement_token2] = ACTIONS(1364), - [aux_sym_do_statement_token1] = ACTIONS(1364), - [aux_sym_for_statement_token1] = ACTIONS(1364), - [aux_sym_for_statement_token2] = ACTIONS(1364), - [aux_sym_foreach_statement_token1] = ACTIONS(1364), - [aux_sym_foreach_statement_token2] = ACTIONS(1364), - [aux_sym_if_statement_token1] = ACTIONS(1364), - [aux_sym_if_statement_token2] = ACTIONS(1364), - [aux_sym_else_if_clause_token1] = ACTIONS(1364), - [aux_sym_else_clause_token1] = ACTIONS(1364), - [aux_sym_match_expression_token1] = ACTIONS(1364), - [aux_sym_match_default_expression_token1] = ACTIONS(1364), - [aux_sym_switch_statement_token1] = ACTIONS(1364), - [aux_sym_switch_block_token1] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1362), - [aux_sym_clone_expression_token1] = ACTIONS(1364), - [aux_sym_print_intrinsic_token1] = ACTIONS(1364), - [aux_sym_object_creation_expression_token1] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [aux_sym__list_destructing_token1] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_self] = ACTIONS(1364), - [anon_sym_parent] = ACTIONS(1364), - [aux_sym__argument_name_token1] = ACTIONS(1364), - [aux_sym__argument_name_token2] = ACTIONS(1364), - [anon_sym_POUND_LBRACK] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [aux_sym_encapsed_string_token1] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [aux_sym_string_token1] = ACTIONS(1362), - [anon_sym_LT_LT_LT] = ACTIONS(1362), - [anon_sym_BQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [aux_sym_yield_expression_token1] = ACTIONS(1364), - [aux_sym_include_expression_token1] = ACTIONS(1364), - [aux_sym_include_once_expression_token1] = ACTIONS(1364), - [aux_sym_require_expression_token1] = ACTIONS(1364), - [aux_sym_require_once_expression_token1] = ACTIONS(1364), + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_name] = ACTIONS(1366), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1364), + [aux_sym_function_static_declaration_token1] = ACTIONS(1366), + [aux_sym_global_declaration_token1] = ACTIONS(1366), + [aux_sym_namespace_definition_token1] = ACTIONS(1366), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1366), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1366), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1366), + [anon_sym_BSLASH] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [aux_sym_trait_declaration_token1] = ACTIONS(1366), + [aux_sym_interface_declaration_token1] = ACTIONS(1366), + [aux_sym_enum_declaration_token1] = ACTIONS(1366), + [aux_sym_enum_case_token1] = ACTIONS(1366), + [aux_sym_class_declaration_token1] = ACTIONS(1366), + [aux_sym_final_modifier_token1] = ACTIONS(1366), + [aux_sym_abstract_modifier_token1] = ACTIONS(1366), + [aux_sym_readonly_modifier_token1] = ACTIONS(1366), + [aux_sym_visibility_modifier_token1] = ACTIONS(1366), + [aux_sym_visibility_modifier_token2] = ACTIONS(1366), + [aux_sym_visibility_modifier_token3] = ACTIONS(1366), + [aux_sym__arrow_function_header_token1] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1364), + [aux_sym_cast_type_token1] = ACTIONS(1366), + [aux_sym_echo_statement_token1] = ACTIONS(1366), + [anon_sym_unset] = ACTIONS(1366), + [aux_sym_declare_statement_token1] = ACTIONS(1366), + [aux_sym_declare_statement_token2] = ACTIONS(1366), + [sym_float] = ACTIONS(1366), + [aux_sym_try_statement_token1] = ACTIONS(1366), + [aux_sym_goto_statement_token1] = ACTIONS(1366), + [aux_sym_continue_statement_token1] = ACTIONS(1366), + [aux_sym_break_statement_token1] = ACTIONS(1366), + [sym_integer] = ACTIONS(1366), + [aux_sym_return_statement_token1] = ACTIONS(1366), + [aux_sym_throw_expression_token1] = ACTIONS(1366), + [aux_sym_while_statement_token1] = ACTIONS(1366), + [aux_sym_while_statement_token2] = ACTIONS(1366), + [aux_sym_do_statement_token1] = ACTIONS(1366), + [aux_sym_for_statement_token1] = ACTIONS(1366), + [aux_sym_for_statement_token2] = ACTIONS(1366), + [aux_sym_foreach_statement_token1] = ACTIONS(1366), + [aux_sym_foreach_statement_token2] = ACTIONS(1366), + [aux_sym_if_statement_token1] = ACTIONS(1366), + [aux_sym_if_statement_token2] = ACTIONS(1366), + [aux_sym_else_if_clause_token1] = ACTIONS(1366), + [aux_sym_else_clause_token1] = ACTIONS(1366), + [aux_sym_match_expression_token1] = ACTIONS(1366), + [aux_sym_match_default_expression_token1] = ACTIONS(1366), + [aux_sym_switch_statement_token1] = ACTIONS(1366), + [aux_sym_switch_block_token1] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_AT] = ACTIONS(1364), + [aux_sym_clone_expression_token1] = ACTIONS(1366), + [aux_sym_print_intrinsic_token1] = ACTIONS(1366), + [aux_sym_object_creation_expression_token1] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [aux_sym__list_destructing_token1] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1364), + [anon_sym_self] = ACTIONS(1366), + [anon_sym_parent] = ACTIONS(1366), + [aux_sym__argument_name_token1] = ACTIONS(1366), + [aux_sym__argument_name_token2] = ACTIONS(1366), + [anon_sym_POUND_LBRACK] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [aux_sym_encapsed_string_token1] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [aux_sym_string_token1] = ACTIONS(1364), + [anon_sym_LT_LT_LT] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [aux_sym_yield_expression_token1] = ACTIONS(1366), + [aux_sym_include_expression_token1] = ACTIONS(1366), + [aux_sym_include_once_expression_token1] = ACTIONS(1366), + [aux_sym_require_expression_token1] = ACTIONS(1366), + [aux_sym_require_once_expression_token1] = ACTIONS(1366), [sym_comment] = ACTIONS(5), }, [515] = { [sym_text_interpolation] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_name] = ACTIONS(1360), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1358), - [aux_sym_function_static_declaration_token1] = ACTIONS(1360), - [aux_sym_global_declaration_token1] = ACTIONS(1360), - [aux_sym_namespace_definition_token1] = ACTIONS(1360), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1360), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1360), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1360), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [aux_sym_trait_declaration_token1] = ACTIONS(1360), - [aux_sym_interface_declaration_token1] = ACTIONS(1360), - [aux_sym_enum_declaration_token1] = ACTIONS(1360), - [aux_sym_enum_case_token1] = ACTIONS(1360), - [aux_sym_class_declaration_token1] = ACTIONS(1360), - [aux_sym_final_modifier_token1] = ACTIONS(1360), - [aux_sym_abstract_modifier_token1] = ACTIONS(1360), - [aux_sym_readonly_modifier_token1] = ACTIONS(1360), - [aux_sym_visibility_modifier_token1] = ACTIONS(1360), - [aux_sym_visibility_modifier_token2] = ACTIONS(1360), - [aux_sym_visibility_modifier_token3] = ACTIONS(1360), - [aux_sym__arrow_function_header_token1] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1358), - [aux_sym_cast_type_token1] = ACTIONS(1360), - [aux_sym_echo_statement_token1] = ACTIONS(1360), - [anon_sym_unset] = ACTIONS(1360), - [aux_sym_declare_statement_token1] = ACTIONS(1360), - [aux_sym_declare_statement_token2] = ACTIONS(1360), - [sym_float] = ACTIONS(1360), - [aux_sym_try_statement_token1] = ACTIONS(1360), - [aux_sym_goto_statement_token1] = ACTIONS(1360), - [aux_sym_continue_statement_token1] = ACTIONS(1360), - [aux_sym_break_statement_token1] = ACTIONS(1360), - [sym_integer] = ACTIONS(1360), - [aux_sym_return_statement_token1] = ACTIONS(1360), - [aux_sym_throw_expression_token1] = ACTIONS(1360), - [aux_sym_while_statement_token1] = ACTIONS(1360), - [aux_sym_while_statement_token2] = ACTIONS(1360), - [aux_sym_do_statement_token1] = ACTIONS(1360), - [aux_sym_for_statement_token1] = ACTIONS(1360), - [aux_sym_for_statement_token2] = ACTIONS(1360), - [aux_sym_foreach_statement_token1] = ACTIONS(1360), - [aux_sym_foreach_statement_token2] = ACTIONS(1360), - [aux_sym_if_statement_token1] = ACTIONS(1360), - [aux_sym_if_statement_token2] = ACTIONS(1360), - [aux_sym_else_if_clause_token1] = ACTIONS(1360), - [aux_sym_else_clause_token1] = ACTIONS(1360), - [aux_sym_match_expression_token1] = ACTIONS(1360), - [aux_sym_match_default_expression_token1] = ACTIONS(1360), - [aux_sym_switch_statement_token1] = ACTIONS(1360), - [aux_sym_switch_block_token1] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [aux_sym_clone_expression_token1] = ACTIONS(1360), - [aux_sym_print_intrinsic_token1] = ACTIONS(1360), - [aux_sym_object_creation_expression_token1] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [aux_sym__list_destructing_token1] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_self] = ACTIONS(1360), - [anon_sym_parent] = ACTIONS(1360), - [aux_sym__argument_name_token1] = ACTIONS(1360), - [aux_sym__argument_name_token2] = ACTIONS(1360), - [anon_sym_POUND_LBRACK] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [aux_sym_encapsed_string_token1] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [aux_sym_string_token1] = ACTIONS(1358), - [anon_sym_LT_LT_LT] = ACTIONS(1358), - [anon_sym_BQUOTE] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1358), - [aux_sym_yield_expression_token1] = ACTIONS(1360), - [aux_sym_include_expression_token1] = ACTIONS(1360), - [aux_sym_include_once_expression_token1] = ACTIONS(1360), - [aux_sym_require_expression_token1] = ACTIONS(1360), - [aux_sym_require_once_expression_token1] = ACTIONS(1360), + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_name] = ACTIONS(1362), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1360), + [aux_sym_function_static_declaration_token1] = ACTIONS(1362), + [aux_sym_global_declaration_token1] = ACTIONS(1362), + [aux_sym_namespace_definition_token1] = ACTIONS(1362), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1362), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1362), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1362), + [anon_sym_BSLASH] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [aux_sym_trait_declaration_token1] = ACTIONS(1362), + [aux_sym_interface_declaration_token1] = ACTIONS(1362), + [aux_sym_enum_declaration_token1] = ACTIONS(1362), + [aux_sym_enum_case_token1] = ACTIONS(1362), + [aux_sym_class_declaration_token1] = ACTIONS(1362), + [aux_sym_final_modifier_token1] = ACTIONS(1362), + [aux_sym_abstract_modifier_token1] = ACTIONS(1362), + [aux_sym_readonly_modifier_token1] = ACTIONS(1362), + [aux_sym_visibility_modifier_token1] = ACTIONS(1362), + [aux_sym_visibility_modifier_token2] = ACTIONS(1362), + [aux_sym_visibility_modifier_token3] = ACTIONS(1362), + [aux_sym__arrow_function_header_token1] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1360), + [aux_sym_cast_type_token1] = ACTIONS(1362), + [aux_sym_echo_statement_token1] = ACTIONS(1362), + [anon_sym_unset] = ACTIONS(1362), + [aux_sym_declare_statement_token1] = ACTIONS(1362), + [aux_sym_declare_statement_token2] = ACTIONS(1362), + [sym_float] = ACTIONS(1362), + [aux_sym_try_statement_token1] = ACTIONS(1362), + [aux_sym_goto_statement_token1] = ACTIONS(1362), + [aux_sym_continue_statement_token1] = ACTIONS(1362), + [aux_sym_break_statement_token1] = ACTIONS(1362), + [sym_integer] = ACTIONS(1362), + [aux_sym_return_statement_token1] = ACTIONS(1362), + [aux_sym_throw_expression_token1] = ACTIONS(1362), + [aux_sym_while_statement_token1] = ACTIONS(1362), + [aux_sym_while_statement_token2] = ACTIONS(1362), + [aux_sym_do_statement_token1] = ACTIONS(1362), + [aux_sym_for_statement_token1] = ACTIONS(1362), + [aux_sym_for_statement_token2] = ACTIONS(1362), + [aux_sym_foreach_statement_token1] = ACTIONS(1362), + [aux_sym_foreach_statement_token2] = ACTIONS(1362), + [aux_sym_if_statement_token1] = ACTIONS(1362), + [aux_sym_if_statement_token2] = ACTIONS(1362), + [aux_sym_else_if_clause_token1] = ACTIONS(1362), + [aux_sym_else_clause_token1] = ACTIONS(1362), + [aux_sym_match_expression_token1] = ACTIONS(1362), + [aux_sym_match_default_expression_token1] = ACTIONS(1362), + [aux_sym_switch_statement_token1] = ACTIONS(1362), + [aux_sym_switch_block_token1] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1360), + [aux_sym_clone_expression_token1] = ACTIONS(1362), + [aux_sym_print_intrinsic_token1] = ACTIONS(1362), + [aux_sym_object_creation_expression_token1] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [aux_sym__list_destructing_token1] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_self] = ACTIONS(1362), + [anon_sym_parent] = ACTIONS(1362), + [aux_sym__argument_name_token1] = ACTIONS(1362), + [aux_sym__argument_name_token2] = ACTIONS(1362), + [anon_sym_POUND_LBRACK] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [aux_sym_encapsed_string_token1] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [aux_sym_string_token1] = ACTIONS(1360), + [anon_sym_LT_LT_LT] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1360), + [aux_sym_yield_expression_token1] = ACTIONS(1362), + [aux_sym_include_expression_token1] = ACTIONS(1362), + [aux_sym_include_once_expression_token1] = ACTIONS(1362), + [aux_sym_require_expression_token1] = ACTIONS(1362), + [aux_sym_require_once_expression_token1] = ACTIONS(1362), [sym_comment] = ACTIONS(5), }, [516] = { [sym_text_interpolation] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_name] = ACTIONS(1368), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1366), - [aux_sym_function_static_declaration_token1] = ACTIONS(1368), - [aux_sym_global_declaration_token1] = ACTIONS(1368), - [aux_sym_namespace_definition_token1] = ACTIONS(1368), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1368), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1368), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [aux_sym_trait_declaration_token1] = ACTIONS(1368), - [aux_sym_interface_declaration_token1] = ACTIONS(1368), - [aux_sym_enum_declaration_token1] = ACTIONS(1368), - [aux_sym_enum_case_token1] = ACTIONS(1368), - [aux_sym_class_declaration_token1] = ACTIONS(1368), - [aux_sym_final_modifier_token1] = ACTIONS(1368), - [aux_sym_abstract_modifier_token1] = ACTIONS(1368), - [aux_sym_readonly_modifier_token1] = ACTIONS(1368), - [aux_sym_visibility_modifier_token1] = ACTIONS(1368), - [aux_sym_visibility_modifier_token2] = ACTIONS(1368), - [aux_sym_visibility_modifier_token3] = ACTIONS(1368), - [aux_sym__arrow_function_header_token1] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1366), - [aux_sym_cast_type_token1] = ACTIONS(1368), - [aux_sym_echo_statement_token1] = ACTIONS(1368), - [anon_sym_unset] = ACTIONS(1368), - [aux_sym_declare_statement_token1] = ACTIONS(1368), - [aux_sym_declare_statement_token2] = ACTIONS(1368), - [sym_float] = ACTIONS(1368), - [aux_sym_try_statement_token1] = ACTIONS(1368), - [aux_sym_goto_statement_token1] = ACTIONS(1368), - [aux_sym_continue_statement_token1] = ACTIONS(1368), - [aux_sym_break_statement_token1] = ACTIONS(1368), - [sym_integer] = ACTIONS(1368), - [aux_sym_return_statement_token1] = ACTIONS(1368), - [aux_sym_throw_expression_token1] = ACTIONS(1368), - [aux_sym_while_statement_token1] = ACTIONS(1368), - [aux_sym_while_statement_token2] = ACTIONS(1368), - [aux_sym_do_statement_token1] = ACTIONS(1368), - [aux_sym_for_statement_token1] = ACTIONS(1368), - [aux_sym_for_statement_token2] = ACTIONS(1368), - [aux_sym_foreach_statement_token1] = ACTIONS(1368), - [aux_sym_foreach_statement_token2] = ACTIONS(1368), - [aux_sym_if_statement_token1] = ACTIONS(1368), - [aux_sym_if_statement_token2] = ACTIONS(1368), - [aux_sym_else_if_clause_token1] = ACTIONS(1368), - [aux_sym_else_clause_token1] = ACTIONS(1368), - [aux_sym_match_expression_token1] = ACTIONS(1368), - [aux_sym_match_default_expression_token1] = ACTIONS(1368), - [aux_sym_switch_statement_token1] = ACTIONS(1368), - [aux_sym_switch_block_token1] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_AT] = ACTIONS(1366), - [aux_sym_clone_expression_token1] = ACTIONS(1368), - [aux_sym_print_intrinsic_token1] = ACTIONS(1368), - [aux_sym_object_creation_expression_token1] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [aux_sym__list_destructing_token1] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_self] = ACTIONS(1368), - [anon_sym_parent] = ACTIONS(1368), - [aux_sym__argument_name_token1] = ACTIONS(1368), - [aux_sym__argument_name_token2] = ACTIONS(1368), - [anon_sym_POUND_LBRACK] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [aux_sym_encapsed_string_token1] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [aux_sym_string_token1] = ACTIONS(1366), - [anon_sym_LT_LT_LT] = ACTIONS(1366), - [anon_sym_BQUOTE] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1366), - [aux_sym_yield_expression_token1] = ACTIONS(1368), - [aux_sym_include_expression_token1] = ACTIONS(1368), - [aux_sym_include_once_expression_token1] = ACTIONS(1368), - [aux_sym_require_expression_token1] = ACTIONS(1368), - [aux_sym_require_once_expression_token1] = ACTIONS(1368), + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_name] = ACTIONS(1370), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1368), + [aux_sym_function_static_declaration_token1] = ACTIONS(1370), + [aux_sym_global_declaration_token1] = ACTIONS(1370), + [aux_sym_namespace_definition_token1] = ACTIONS(1370), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1370), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1370), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1370), + [anon_sym_BSLASH] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [aux_sym_trait_declaration_token1] = ACTIONS(1370), + [aux_sym_interface_declaration_token1] = ACTIONS(1370), + [aux_sym_enum_declaration_token1] = ACTIONS(1370), + [aux_sym_enum_case_token1] = ACTIONS(1370), + [aux_sym_class_declaration_token1] = ACTIONS(1370), + [aux_sym_final_modifier_token1] = ACTIONS(1370), + [aux_sym_abstract_modifier_token1] = ACTIONS(1370), + [aux_sym_readonly_modifier_token1] = ACTIONS(1370), + [aux_sym_visibility_modifier_token1] = ACTIONS(1370), + [aux_sym_visibility_modifier_token2] = ACTIONS(1370), + [aux_sym_visibility_modifier_token3] = ACTIONS(1370), + [aux_sym__arrow_function_header_token1] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1368), + [aux_sym_cast_type_token1] = ACTIONS(1370), + [aux_sym_echo_statement_token1] = ACTIONS(1370), + [anon_sym_unset] = ACTIONS(1370), + [aux_sym_declare_statement_token1] = ACTIONS(1370), + [aux_sym_declare_statement_token2] = ACTIONS(1370), + [sym_float] = ACTIONS(1370), + [aux_sym_try_statement_token1] = ACTIONS(1370), + [aux_sym_goto_statement_token1] = ACTIONS(1370), + [aux_sym_continue_statement_token1] = ACTIONS(1370), + [aux_sym_break_statement_token1] = ACTIONS(1370), + [sym_integer] = ACTIONS(1370), + [aux_sym_return_statement_token1] = ACTIONS(1370), + [aux_sym_throw_expression_token1] = ACTIONS(1370), + [aux_sym_while_statement_token1] = ACTIONS(1370), + [aux_sym_while_statement_token2] = ACTIONS(1370), + [aux_sym_do_statement_token1] = ACTIONS(1370), + [aux_sym_for_statement_token1] = ACTIONS(1370), + [aux_sym_for_statement_token2] = ACTIONS(1370), + [aux_sym_foreach_statement_token1] = ACTIONS(1370), + [aux_sym_foreach_statement_token2] = ACTIONS(1370), + [aux_sym_if_statement_token1] = ACTIONS(1370), + [aux_sym_if_statement_token2] = ACTIONS(1370), + [aux_sym_else_if_clause_token1] = ACTIONS(1370), + [aux_sym_else_clause_token1] = ACTIONS(1370), + [aux_sym_match_expression_token1] = ACTIONS(1370), + [aux_sym_match_default_expression_token1] = ACTIONS(1370), + [aux_sym_switch_statement_token1] = ACTIONS(1370), + [aux_sym_switch_block_token1] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_AT] = ACTIONS(1368), + [aux_sym_clone_expression_token1] = ACTIONS(1370), + [aux_sym_print_intrinsic_token1] = ACTIONS(1370), + [aux_sym_object_creation_expression_token1] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [aux_sym__list_destructing_token1] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_self] = ACTIONS(1370), + [anon_sym_parent] = ACTIONS(1370), + [aux_sym__argument_name_token1] = ACTIONS(1370), + [aux_sym__argument_name_token2] = ACTIONS(1370), + [anon_sym_POUND_LBRACK] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [aux_sym_encapsed_string_token1] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [aux_sym_string_token1] = ACTIONS(1368), + [anon_sym_LT_LT_LT] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [aux_sym_yield_expression_token1] = ACTIONS(1370), + [aux_sym_include_expression_token1] = ACTIONS(1370), + [aux_sym_include_once_expression_token1] = ACTIONS(1370), + [aux_sym_require_expression_token1] = ACTIONS(1370), + [aux_sym_require_once_expression_token1] = ACTIONS(1370), [sym_comment] = ACTIONS(5), }, [517] = { [sym_text_interpolation] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_name] = ACTIONS(1372), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1370), - [aux_sym_function_static_declaration_token1] = ACTIONS(1372), - [aux_sym_global_declaration_token1] = ACTIONS(1372), - [aux_sym_namespace_definition_token1] = ACTIONS(1372), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1372), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1372), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1372), - [anon_sym_BSLASH] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [aux_sym_trait_declaration_token1] = ACTIONS(1372), - [aux_sym_interface_declaration_token1] = ACTIONS(1372), - [aux_sym_enum_declaration_token1] = ACTIONS(1372), - [aux_sym_enum_case_token1] = ACTIONS(1372), - [aux_sym_class_declaration_token1] = ACTIONS(1372), - [aux_sym_final_modifier_token1] = ACTIONS(1372), - [aux_sym_abstract_modifier_token1] = ACTIONS(1372), - [aux_sym_readonly_modifier_token1] = ACTIONS(1372), - [aux_sym_visibility_modifier_token1] = ACTIONS(1372), - [aux_sym_visibility_modifier_token2] = ACTIONS(1372), - [aux_sym_visibility_modifier_token3] = ACTIONS(1372), - [aux_sym__arrow_function_header_token1] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1370), - [aux_sym_cast_type_token1] = ACTIONS(1372), - [aux_sym_echo_statement_token1] = ACTIONS(1372), - [anon_sym_unset] = ACTIONS(1372), - [aux_sym_declare_statement_token1] = ACTIONS(1372), - [aux_sym_declare_statement_token2] = ACTIONS(1372), - [sym_float] = ACTIONS(1372), - [aux_sym_try_statement_token1] = ACTIONS(1372), - [aux_sym_goto_statement_token1] = ACTIONS(1372), - [aux_sym_continue_statement_token1] = ACTIONS(1372), - [aux_sym_break_statement_token1] = ACTIONS(1372), - [sym_integer] = ACTIONS(1372), - [aux_sym_return_statement_token1] = ACTIONS(1372), - [aux_sym_throw_expression_token1] = ACTIONS(1372), - [aux_sym_while_statement_token1] = ACTIONS(1372), - [aux_sym_while_statement_token2] = ACTIONS(1372), - [aux_sym_do_statement_token1] = ACTIONS(1372), - [aux_sym_for_statement_token1] = ACTIONS(1372), - [aux_sym_for_statement_token2] = ACTIONS(1372), - [aux_sym_foreach_statement_token1] = ACTIONS(1372), - [aux_sym_foreach_statement_token2] = ACTIONS(1372), - [aux_sym_if_statement_token1] = ACTIONS(1372), - [aux_sym_if_statement_token2] = ACTIONS(1372), - [aux_sym_else_if_clause_token1] = ACTIONS(1372), - [aux_sym_else_clause_token1] = ACTIONS(1372), - [aux_sym_match_expression_token1] = ACTIONS(1372), - [aux_sym_match_default_expression_token1] = ACTIONS(1372), - [aux_sym_switch_statement_token1] = ACTIONS(1372), - [aux_sym_switch_block_token1] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_AT] = ACTIONS(1370), - [aux_sym_clone_expression_token1] = ACTIONS(1372), - [aux_sym_print_intrinsic_token1] = ACTIONS(1372), - [aux_sym_object_creation_expression_token1] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [aux_sym__list_destructing_token1] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_self] = ACTIONS(1372), - [anon_sym_parent] = ACTIONS(1372), - [aux_sym__argument_name_token1] = ACTIONS(1372), - [aux_sym__argument_name_token2] = ACTIONS(1372), - [anon_sym_POUND_LBRACK] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [aux_sym_encapsed_string_token1] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [aux_sym_string_token1] = ACTIONS(1370), - [anon_sym_LT_LT_LT] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [aux_sym_yield_expression_token1] = ACTIONS(1372), - [aux_sym_include_expression_token1] = ACTIONS(1372), - [aux_sym_include_once_expression_token1] = ACTIONS(1372), - [aux_sym_require_expression_token1] = ACTIONS(1372), - [aux_sym_require_once_expression_token1] = ACTIONS(1372), + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_name] = ACTIONS(1374), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1372), + [aux_sym_function_static_declaration_token1] = ACTIONS(1374), + [aux_sym_global_declaration_token1] = ACTIONS(1374), + [aux_sym_namespace_definition_token1] = ACTIONS(1374), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1374), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1374), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1374), + [anon_sym_BSLASH] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [aux_sym_trait_declaration_token1] = ACTIONS(1374), + [aux_sym_interface_declaration_token1] = ACTIONS(1374), + [aux_sym_enum_declaration_token1] = ACTIONS(1374), + [aux_sym_enum_case_token1] = ACTIONS(1374), + [aux_sym_class_declaration_token1] = ACTIONS(1374), + [aux_sym_final_modifier_token1] = ACTIONS(1374), + [aux_sym_abstract_modifier_token1] = ACTIONS(1374), + [aux_sym_readonly_modifier_token1] = ACTIONS(1374), + [aux_sym_visibility_modifier_token1] = ACTIONS(1374), + [aux_sym_visibility_modifier_token2] = ACTIONS(1374), + [aux_sym_visibility_modifier_token3] = ACTIONS(1374), + [aux_sym__arrow_function_header_token1] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1372), + [aux_sym_cast_type_token1] = ACTIONS(1374), + [aux_sym_echo_statement_token1] = ACTIONS(1374), + [anon_sym_unset] = ACTIONS(1374), + [aux_sym_declare_statement_token1] = ACTIONS(1374), + [aux_sym_declare_statement_token2] = ACTIONS(1374), + [sym_float] = ACTIONS(1374), + [aux_sym_try_statement_token1] = ACTIONS(1374), + [aux_sym_goto_statement_token1] = ACTIONS(1374), + [aux_sym_continue_statement_token1] = ACTIONS(1374), + [aux_sym_break_statement_token1] = ACTIONS(1374), + [sym_integer] = ACTIONS(1374), + [aux_sym_return_statement_token1] = ACTIONS(1374), + [aux_sym_throw_expression_token1] = ACTIONS(1374), + [aux_sym_while_statement_token1] = ACTIONS(1374), + [aux_sym_while_statement_token2] = ACTIONS(1374), + [aux_sym_do_statement_token1] = ACTIONS(1374), + [aux_sym_for_statement_token1] = ACTIONS(1374), + [aux_sym_for_statement_token2] = ACTIONS(1374), + [aux_sym_foreach_statement_token1] = ACTIONS(1374), + [aux_sym_foreach_statement_token2] = ACTIONS(1374), + [aux_sym_if_statement_token1] = ACTIONS(1374), + [aux_sym_if_statement_token2] = ACTIONS(1374), + [aux_sym_else_if_clause_token1] = ACTIONS(1374), + [aux_sym_else_clause_token1] = ACTIONS(1374), + [aux_sym_match_expression_token1] = ACTIONS(1374), + [aux_sym_match_default_expression_token1] = ACTIONS(1374), + [aux_sym_switch_statement_token1] = ACTIONS(1374), + [aux_sym_switch_block_token1] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_AT] = ACTIONS(1372), + [aux_sym_clone_expression_token1] = ACTIONS(1374), + [aux_sym_print_intrinsic_token1] = ACTIONS(1374), + [aux_sym_object_creation_expression_token1] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [aux_sym__list_destructing_token1] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_self] = ACTIONS(1374), + [anon_sym_parent] = ACTIONS(1374), + [aux_sym__argument_name_token1] = ACTIONS(1374), + [aux_sym__argument_name_token2] = ACTIONS(1374), + [anon_sym_POUND_LBRACK] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [aux_sym_encapsed_string_token1] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [aux_sym_string_token1] = ACTIONS(1372), + [anon_sym_LT_LT_LT] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1372), + [aux_sym_yield_expression_token1] = ACTIONS(1374), + [aux_sym_include_expression_token1] = ACTIONS(1374), + [aux_sym_include_once_expression_token1] = ACTIONS(1374), + [aux_sym_require_expression_token1] = ACTIONS(1374), + [aux_sym_require_once_expression_token1] = ACTIONS(1374), [sym_comment] = ACTIONS(5), }, [518] = { [sym_text_interpolation] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_name] = ACTIONS(1376), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1374), - [aux_sym_function_static_declaration_token1] = ACTIONS(1376), - [aux_sym_global_declaration_token1] = ACTIONS(1376), - [aux_sym_namespace_definition_token1] = ACTIONS(1376), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1376), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1376), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1376), - [anon_sym_BSLASH] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [aux_sym_trait_declaration_token1] = ACTIONS(1376), - [aux_sym_interface_declaration_token1] = ACTIONS(1376), - [aux_sym_enum_declaration_token1] = ACTIONS(1376), - [aux_sym_enum_case_token1] = ACTIONS(1376), - [aux_sym_class_declaration_token1] = ACTIONS(1376), - [aux_sym_final_modifier_token1] = ACTIONS(1376), - [aux_sym_abstract_modifier_token1] = ACTIONS(1376), - [aux_sym_readonly_modifier_token1] = ACTIONS(1376), - [aux_sym_visibility_modifier_token1] = ACTIONS(1376), - [aux_sym_visibility_modifier_token2] = ACTIONS(1376), - [aux_sym_visibility_modifier_token3] = ACTIONS(1376), - [aux_sym__arrow_function_header_token1] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1374), - [aux_sym_cast_type_token1] = ACTIONS(1376), - [aux_sym_echo_statement_token1] = ACTIONS(1376), - [anon_sym_unset] = ACTIONS(1376), - [aux_sym_declare_statement_token1] = ACTIONS(1376), - [aux_sym_declare_statement_token2] = ACTIONS(1376), - [sym_float] = ACTIONS(1376), - [aux_sym_try_statement_token1] = ACTIONS(1376), - [aux_sym_goto_statement_token1] = ACTIONS(1376), - [aux_sym_continue_statement_token1] = ACTIONS(1376), - [aux_sym_break_statement_token1] = ACTIONS(1376), - [sym_integer] = ACTIONS(1376), - [aux_sym_return_statement_token1] = ACTIONS(1376), - [aux_sym_throw_expression_token1] = ACTIONS(1376), - [aux_sym_while_statement_token1] = ACTIONS(1376), - [aux_sym_while_statement_token2] = ACTIONS(1376), - [aux_sym_do_statement_token1] = ACTIONS(1376), - [aux_sym_for_statement_token1] = ACTIONS(1376), - [aux_sym_for_statement_token2] = ACTIONS(1376), - [aux_sym_foreach_statement_token1] = ACTIONS(1376), - [aux_sym_foreach_statement_token2] = ACTIONS(1376), - [aux_sym_if_statement_token1] = ACTIONS(1376), - [aux_sym_if_statement_token2] = ACTIONS(1376), - [aux_sym_else_if_clause_token1] = ACTIONS(1376), - [aux_sym_else_clause_token1] = ACTIONS(1376), - [aux_sym_match_expression_token1] = ACTIONS(1376), - [aux_sym_match_default_expression_token1] = ACTIONS(1376), - [aux_sym_switch_statement_token1] = ACTIONS(1376), - [aux_sym_switch_block_token1] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_AT] = ACTIONS(1374), - [aux_sym_clone_expression_token1] = ACTIONS(1376), - [aux_sym_print_intrinsic_token1] = ACTIONS(1376), - [aux_sym_object_creation_expression_token1] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [aux_sym__list_destructing_token1] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_self] = ACTIONS(1376), - [anon_sym_parent] = ACTIONS(1376), - [aux_sym__argument_name_token1] = ACTIONS(1376), - [aux_sym__argument_name_token2] = ACTIONS(1376), - [anon_sym_POUND_LBRACK] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [aux_sym_encapsed_string_token1] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [aux_sym_string_token1] = ACTIONS(1374), - [anon_sym_LT_LT_LT] = ACTIONS(1374), - [anon_sym_BQUOTE] = ACTIONS(1374), - [anon_sym_DOLLAR] = ACTIONS(1374), - [aux_sym_yield_expression_token1] = ACTIONS(1376), - [aux_sym_include_expression_token1] = ACTIONS(1376), - [aux_sym_include_once_expression_token1] = ACTIONS(1376), - [aux_sym_require_expression_token1] = ACTIONS(1376), - [aux_sym_require_once_expression_token1] = ACTIONS(1376), + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_name] = ACTIONS(1378), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1376), + [aux_sym_function_static_declaration_token1] = ACTIONS(1378), + [aux_sym_global_declaration_token1] = ACTIONS(1378), + [aux_sym_namespace_definition_token1] = ACTIONS(1378), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1378), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1378), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1378), + [anon_sym_BSLASH] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [aux_sym_trait_declaration_token1] = ACTIONS(1378), + [aux_sym_interface_declaration_token1] = ACTIONS(1378), + [aux_sym_enum_declaration_token1] = ACTIONS(1378), + [aux_sym_enum_case_token1] = ACTIONS(1378), + [aux_sym_class_declaration_token1] = ACTIONS(1378), + [aux_sym_final_modifier_token1] = ACTIONS(1378), + [aux_sym_abstract_modifier_token1] = ACTIONS(1378), + [aux_sym_readonly_modifier_token1] = ACTIONS(1378), + [aux_sym_visibility_modifier_token1] = ACTIONS(1378), + [aux_sym_visibility_modifier_token2] = ACTIONS(1378), + [aux_sym_visibility_modifier_token3] = ACTIONS(1378), + [aux_sym__arrow_function_header_token1] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1376), + [aux_sym_cast_type_token1] = ACTIONS(1378), + [aux_sym_echo_statement_token1] = ACTIONS(1378), + [anon_sym_unset] = ACTIONS(1378), + [aux_sym_declare_statement_token1] = ACTIONS(1378), + [aux_sym_declare_statement_token2] = ACTIONS(1378), + [sym_float] = ACTIONS(1378), + [aux_sym_try_statement_token1] = ACTIONS(1378), + [aux_sym_goto_statement_token1] = ACTIONS(1378), + [aux_sym_continue_statement_token1] = ACTIONS(1378), + [aux_sym_break_statement_token1] = ACTIONS(1378), + [sym_integer] = ACTIONS(1378), + [aux_sym_return_statement_token1] = ACTIONS(1378), + [aux_sym_throw_expression_token1] = ACTIONS(1378), + [aux_sym_while_statement_token1] = ACTIONS(1378), + [aux_sym_while_statement_token2] = ACTIONS(1378), + [aux_sym_do_statement_token1] = ACTIONS(1378), + [aux_sym_for_statement_token1] = ACTIONS(1378), + [aux_sym_for_statement_token2] = ACTIONS(1378), + [aux_sym_foreach_statement_token1] = ACTIONS(1378), + [aux_sym_foreach_statement_token2] = ACTIONS(1378), + [aux_sym_if_statement_token1] = ACTIONS(1378), + [aux_sym_if_statement_token2] = ACTIONS(1378), + [aux_sym_else_if_clause_token1] = ACTIONS(1378), + [aux_sym_else_clause_token1] = ACTIONS(1378), + [aux_sym_match_expression_token1] = ACTIONS(1378), + [aux_sym_match_default_expression_token1] = ACTIONS(1378), + [aux_sym_switch_statement_token1] = ACTIONS(1378), + [aux_sym_switch_block_token1] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_AT] = ACTIONS(1376), + [aux_sym_clone_expression_token1] = ACTIONS(1378), + [aux_sym_print_intrinsic_token1] = ACTIONS(1378), + [aux_sym_object_creation_expression_token1] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [aux_sym__list_destructing_token1] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_self] = ACTIONS(1378), + [anon_sym_parent] = ACTIONS(1378), + [aux_sym__argument_name_token1] = ACTIONS(1378), + [aux_sym__argument_name_token2] = ACTIONS(1378), + [anon_sym_POUND_LBRACK] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [aux_sym_encapsed_string_token1] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [aux_sym_string_token1] = ACTIONS(1376), + [anon_sym_LT_LT_LT] = ACTIONS(1376), + [anon_sym_BQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR] = ACTIONS(1376), + [aux_sym_yield_expression_token1] = ACTIONS(1378), + [aux_sym_include_expression_token1] = ACTIONS(1378), + [aux_sym_include_once_expression_token1] = ACTIONS(1378), + [aux_sym_require_expression_token1] = ACTIONS(1378), + [aux_sym_require_once_expression_token1] = ACTIONS(1378), [sym_comment] = ACTIONS(5), }, [519] = { [sym_text_interpolation] = STATE(519), - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_name] = ACTIONS(1380), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1378), - [aux_sym_function_static_declaration_token1] = ACTIONS(1380), - [aux_sym_global_declaration_token1] = ACTIONS(1380), - [aux_sym_namespace_definition_token1] = ACTIONS(1380), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1380), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1380), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [aux_sym_trait_declaration_token1] = ACTIONS(1380), - [aux_sym_interface_declaration_token1] = ACTIONS(1380), - [aux_sym_enum_declaration_token1] = ACTIONS(1380), - [aux_sym_enum_case_token1] = ACTIONS(1380), - [aux_sym_class_declaration_token1] = ACTIONS(1380), - [aux_sym_final_modifier_token1] = ACTIONS(1380), - [aux_sym_abstract_modifier_token1] = ACTIONS(1380), - [aux_sym_readonly_modifier_token1] = ACTIONS(1380), - [aux_sym_visibility_modifier_token1] = ACTIONS(1380), - [aux_sym_visibility_modifier_token2] = ACTIONS(1380), - [aux_sym_visibility_modifier_token3] = ACTIONS(1380), - [aux_sym__arrow_function_header_token1] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1378), - [aux_sym_cast_type_token1] = ACTIONS(1380), - [aux_sym_echo_statement_token1] = ACTIONS(1380), - [anon_sym_unset] = ACTIONS(1380), - [aux_sym_declare_statement_token1] = ACTIONS(1380), - [aux_sym_declare_statement_token2] = ACTIONS(1380), - [sym_float] = ACTIONS(1380), - [aux_sym_try_statement_token1] = ACTIONS(1380), - [aux_sym_goto_statement_token1] = ACTIONS(1380), - [aux_sym_continue_statement_token1] = ACTIONS(1380), - [aux_sym_break_statement_token1] = ACTIONS(1380), - [sym_integer] = ACTIONS(1380), - [aux_sym_return_statement_token1] = ACTIONS(1380), - [aux_sym_throw_expression_token1] = ACTIONS(1380), - [aux_sym_while_statement_token1] = ACTIONS(1380), - [aux_sym_while_statement_token2] = ACTIONS(1380), - [aux_sym_do_statement_token1] = ACTIONS(1380), - [aux_sym_for_statement_token1] = ACTIONS(1380), - [aux_sym_for_statement_token2] = ACTIONS(1380), - [aux_sym_foreach_statement_token1] = ACTIONS(1380), - [aux_sym_foreach_statement_token2] = ACTIONS(1380), - [aux_sym_if_statement_token1] = ACTIONS(1380), - [aux_sym_if_statement_token2] = ACTIONS(1380), - [aux_sym_else_if_clause_token1] = ACTIONS(1380), - [aux_sym_else_clause_token1] = ACTIONS(1380), - [aux_sym_match_expression_token1] = ACTIONS(1380), - [aux_sym_match_default_expression_token1] = ACTIONS(1380), - [aux_sym_switch_statement_token1] = ACTIONS(1380), - [aux_sym_switch_block_token1] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_AT] = ACTIONS(1378), - [aux_sym_clone_expression_token1] = ACTIONS(1380), - [aux_sym_print_intrinsic_token1] = ACTIONS(1380), - [aux_sym_object_creation_expression_token1] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [aux_sym__list_destructing_token1] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_self] = ACTIONS(1380), - [anon_sym_parent] = ACTIONS(1380), - [aux_sym__argument_name_token1] = ACTIONS(1380), - [aux_sym__argument_name_token2] = ACTIONS(1380), - [anon_sym_POUND_LBRACK] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [aux_sym_encapsed_string_token1] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [aux_sym_string_token1] = ACTIONS(1378), - [anon_sym_LT_LT_LT] = ACTIONS(1378), - [anon_sym_BQUOTE] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [aux_sym_yield_expression_token1] = ACTIONS(1380), - [aux_sym_include_expression_token1] = ACTIONS(1380), - [aux_sym_include_once_expression_token1] = ACTIONS(1380), - [aux_sym_require_expression_token1] = ACTIONS(1380), - [aux_sym_require_once_expression_token1] = ACTIONS(1380), + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_name] = ACTIONS(1382), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1380), + [aux_sym_function_static_declaration_token1] = ACTIONS(1382), + [aux_sym_global_declaration_token1] = ACTIONS(1382), + [aux_sym_namespace_definition_token1] = ACTIONS(1382), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1382), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1382), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1382), + [anon_sym_BSLASH] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [aux_sym_trait_declaration_token1] = ACTIONS(1382), + [aux_sym_interface_declaration_token1] = ACTIONS(1382), + [aux_sym_enum_declaration_token1] = ACTIONS(1382), + [aux_sym_enum_case_token1] = ACTIONS(1382), + [aux_sym_class_declaration_token1] = ACTIONS(1382), + [aux_sym_final_modifier_token1] = ACTIONS(1382), + [aux_sym_abstract_modifier_token1] = ACTIONS(1382), + [aux_sym_readonly_modifier_token1] = ACTIONS(1382), + [aux_sym_visibility_modifier_token1] = ACTIONS(1382), + [aux_sym_visibility_modifier_token2] = ACTIONS(1382), + [aux_sym_visibility_modifier_token3] = ACTIONS(1382), + [aux_sym__arrow_function_header_token1] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1380), + [aux_sym_cast_type_token1] = ACTIONS(1382), + [aux_sym_echo_statement_token1] = ACTIONS(1382), + [anon_sym_unset] = ACTIONS(1382), + [aux_sym_declare_statement_token1] = ACTIONS(1382), + [aux_sym_declare_statement_token2] = ACTIONS(1382), + [sym_float] = ACTIONS(1382), + [aux_sym_try_statement_token1] = ACTIONS(1382), + [aux_sym_goto_statement_token1] = ACTIONS(1382), + [aux_sym_continue_statement_token1] = ACTIONS(1382), + [aux_sym_break_statement_token1] = ACTIONS(1382), + [sym_integer] = ACTIONS(1382), + [aux_sym_return_statement_token1] = ACTIONS(1382), + [aux_sym_throw_expression_token1] = ACTIONS(1382), + [aux_sym_while_statement_token1] = ACTIONS(1382), + [aux_sym_while_statement_token2] = ACTIONS(1382), + [aux_sym_do_statement_token1] = ACTIONS(1382), + [aux_sym_for_statement_token1] = ACTIONS(1382), + [aux_sym_for_statement_token2] = ACTIONS(1382), + [aux_sym_foreach_statement_token1] = ACTIONS(1382), + [aux_sym_foreach_statement_token2] = ACTIONS(1382), + [aux_sym_if_statement_token1] = ACTIONS(1382), + [aux_sym_if_statement_token2] = ACTIONS(1382), + [aux_sym_else_if_clause_token1] = ACTIONS(1382), + [aux_sym_else_clause_token1] = ACTIONS(1382), + [aux_sym_match_expression_token1] = ACTIONS(1382), + [aux_sym_match_default_expression_token1] = ACTIONS(1382), + [aux_sym_switch_statement_token1] = ACTIONS(1382), + [aux_sym_switch_block_token1] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_AT] = ACTIONS(1380), + [aux_sym_clone_expression_token1] = ACTIONS(1382), + [aux_sym_print_intrinsic_token1] = ACTIONS(1382), + [aux_sym_object_creation_expression_token1] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [aux_sym__list_destructing_token1] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_self] = ACTIONS(1382), + [anon_sym_parent] = ACTIONS(1382), + [aux_sym__argument_name_token1] = ACTIONS(1382), + [aux_sym__argument_name_token2] = ACTIONS(1382), + [anon_sym_POUND_LBRACK] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [aux_sym_encapsed_string_token1] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [aux_sym_string_token1] = ACTIONS(1380), + [anon_sym_LT_LT_LT] = ACTIONS(1380), + [anon_sym_BQUOTE] = ACTIONS(1380), + [anon_sym_DOLLAR] = ACTIONS(1380), + [aux_sym_yield_expression_token1] = ACTIONS(1382), + [aux_sym_include_expression_token1] = ACTIONS(1382), + [aux_sym_include_once_expression_token1] = ACTIONS(1382), + [aux_sym_require_expression_token1] = ACTIONS(1382), + [aux_sym_require_once_expression_token1] = ACTIONS(1382), [sym_comment] = ACTIONS(5), }, [520] = { @@ -73334,738 +73291,738 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_include_once_expression] = STATE(906), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(851), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(853), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), [sym_comment] = ACTIONS(5), }, [521] = { [sym_text_interpolation] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_name] = ACTIONS(1384), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1382), - [aux_sym_function_static_declaration_token1] = ACTIONS(1384), - [aux_sym_global_declaration_token1] = ACTIONS(1384), - [aux_sym_namespace_definition_token1] = ACTIONS(1384), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1384), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1384), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1384), - [anon_sym_BSLASH] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [aux_sym_trait_declaration_token1] = ACTIONS(1384), - [aux_sym_interface_declaration_token1] = ACTIONS(1384), - [aux_sym_enum_declaration_token1] = ACTIONS(1384), - [aux_sym_enum_case_token1] = ACTIONS(1384), - [aux_sym_class_declaration_token1] = ACTIONS(1384), - [aux_sym_final_modifier_token1] = ACTIONS(1384), - [aux_sym_abstract_modifier_token1] = ACTIONS(1384), - [aux_sym_readonly_modifier_token1] = ACTIONS(1384), - [aux_sym_visibility_modifier_token1] = ACTIONS(1384), - [aux_sym_visibility_modifier_token2] = ACTIONS(1384), - [aux_sym_visibility_modifier_token3] = ACTIONS(1384), - [aux_sym__arrow_function_header_token1] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1382), - [aux_sym_cast_type_token1] = ACTIONS(1384), - [aux_sym_echo_statement_token1] = ACTIONS(1384), - [anon_sym_unset] = ACTIONS(1384), - [aux_sym_declare_statement_token1] = ACTIONS(1384), - [aux_sym_declare_statement_token2] = ACTIONS(1384), - [sym_float] = ACTIONS(1384), - [aux_sym_try_statement_token1] = ACTIONS(1384), - [aux_sym_goto_statement_token1] = ACTIONS(1384), - [aux_sym_continue_statement_token1] = ACTIONS(1384), - [aux_sym_break_statement_token1] = ACTIONS(1384), - [sym_integer] = ACTIONS(1384), - [aux_sym_return_statement_token1] = ACTIONS(1384), - [aux_sym_throw_expression_token1] = ACTIONS(1384), - [aux_sym_while_statement_token1] = ACTIONS(1384), - [aux_sym_while_statement_token2] = ACTIONS(1384), - [aux_sym_do_statement_token1] = ACTIONS(1384), - [aux_sym_for_statement_token1] = ACTIONS(1384), - [aux_sym_for_statement_token2] = ACTIONS(1384), - [aux_sym_foreach_statement_token1] = ACTIONS(1384), - [aux_sym_foreach_statement_token2] = ACTIONS(1384), - [aux_sym_if_statement_token1] = ACTIONS(1384), - [aux_sym_if_statement_token2] = ACTIONS(1384), - [aux_sym_else_if_clause_token1] = ACTIONS(1384), - [aux_sym_else_clause_token1] = ACTIONS(1384), - [aux_sym_match_expression_token1] = ACTIONS(1384), - [aux_sym_match_default_expression_token1] = ACTIONS(1384), - [aux_sym_switch_statement_token1] = ACTIONS(1384), - [aux_sym_switch_block_token1] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(1382), - [aux_sym_clone_expression_token1] = ACTIONS(1384), - [aux_sym_print_intrinsic_token1] = ACTIONS(1384), - [aux_sym_object_creation_expression_token1] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [aux_sym__list_destructing_token1] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_self] = ACTIONS(1384), - [anon_sym_parent] = ACTIONS(1384), - [aux_sym__argument_name_token1] = ACTIONS(1384), - [aux_sym__argument_name_token2] = ACTIONS(1384), - [anon_sym_POUND_LBRACK] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [aux_sym_encapsed_string_token1] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [aux_sym_string_token1] = ACTIONS(1382), - [anon_sym_LT_LT_LT] = ACTIONS(1382), - [anon_sym_BQUOTE] = ACTIONS(1382), - [anon_sym_DOLLAR] = ACTIONS(1382), - [aux_sym_yield_expression_token1] = ACTIONS(1384), - [aux_sym_include_expression_token1] = ACTIONS(1384), - [aux_sym_include_once_expression_token1] = ACTIONS(1384), - [aux_sym_require_expression_token1] = ACTIONS(1384), - [aux_sym_require_once_expression_token1] = ACTIONS(1384), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_name] = ACTIONS(1386), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1384), + [aux_sym_function_static_declaration_token1] = ACTIONS(1386), + [aux_sym_global_declaration_token1] = ACTIONS(1386), + [aux_sym_namespace_definition_token1] = ACTIONS(1386), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1386), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1386), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1386), + [anon_sym_BSLASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [aux_sym_trait_declaration_token1] = ACTIONS(1386), + [aux_sym_interface_declaration_token1] = ACTIONS(1386), + [aux_sym_enum_declaration_token1] = ACTIONS(1386), + [aux_sym_enum_case_token1] = ACTIONS(1386), + [aux_sym_class_declaration_token1] = ACTIONS(1386), + [aux_sym_final_modifier_token1] = ACTIONS(1386), + [aux_sym_abstract_modifier_token1] = ACTIONS(1386), + [aux_sym_readonly_modifier_token1] = ACTIONS(1386), + [aux_sym_visibility_modifier_token1] = ACTIONS(1386), + [aux_sym_visibility_modifier_token2] = ACTIONS(1386), + [aux_sym_visibility_modifier_token3] = ACTIONS(1386), + [aux_sym__arrow_function_header_token1] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1384), + [aux_sym_cast_type_token1] = ACTIONS(1386), + [aux_sym_echo_statement_token1] = ACTIONS(1386), + [anon_sym_unset] = ACTIONS(1386), + [aux_sym_declare_statement_token1] = ACTIONS(1386), + [aux_sym_declare_statement_token2] = ACTIONS(1386), + [sym_float] = ACTIONS(1386), + [aux_sym_try_statement_token1] = ACTIONS(1386), + [aux_sym_goto_statement_token1] = ACTIONS(1386), + [aux_sym_continue_statement_token1] = ACTIONS(1386), + [aux_sym_break_statement_token1] = ACTIONS(1386), + [sym_integer] = ACTIONS(1386), + [aux_sym_return_statement_token1] = ACTIONS(1386), + [aux_sym_throw_expression_token1] = ACTIONS(1386), + [aux_sym_while_statement_token1] = ACTIONS(1386), + [aux_sym_while_statement_token2] = ACTIONS(1386), + [aux_sym_do_statement_token1] = ACTIONS(1386), + [aux_sym_for_statement_token1] = ACTIONS(1386), + [aux_sym_for_statement_token2] = ACTIONS(1386), + [aux_sym_foreach_statement_token1] = ACTIONS(1386), + [aux_sym_foreach_statement_token2] = ACTIONS(1386), + [aux_sym_if_statement_token1] = ACTIONS(1386), + [aux_sym_if_statement_token2] = ACTIONS(1386), + [aux_sym_else_if_clause_token1] = ACTIONS(1386), + [aux_sym_else_clause_token1] = ACTIONS(1386), + [aux_sym_match_expression_token1] = ACTIONS(1386), + [aux_sym_match_default_expression_token1] = ACTIONS(1386), + [aux_sym_switch_statement_token1] = ACTIONS(1386), + [aux_sym_switch_block_token1] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1384), + [aux_sym_clone_expression_token1] = ACTIONS(1386), + [aux_sym_print_intrinsic_token1] = ACTIONS(1386), + [aux_sym_object_creation_expression_token1] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [aux_sym__list_destructing_token1] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_self] = ACTIONS(1386), + [anon_sym_parent] = ACTIONS(1386), + [aux_sym__argument_name_token1] = ACTIONS(1386), + [aux_sym__argument_name_token2] = ACTIONS(1386), + [anon_sym_POUND_LBRACK] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [aux_sym_encapsed_string_token1] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [aux_sym_string_token1] = ACTIONS(1384), + [anon_sym_LT_LT_LT] = ACTIONS(1384), + [anon_sym_BQUOTE] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1384), + [aux_sym_yield_expression_token1] = ACTIONS(1386), + [aux_sym_include_expression_token1] = ACTIONS(1386), + [aux_sym_include_once_expression_token1] = ACTIONS(1386), + [aux_sym_require_expression_token1] = ACTIONS(1386), + [aux_sym_require_once_expression_token1] = ACTIONS(1386), [sym_comment] = ACTIONS(5), }, [522] = { [sym_text_interpolation] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_name] = ACTIONS(1388), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1386), - [aux_sym_function_static_declaration_token1] = ACTIONS(1388), - [aux_sym_global_declaration_token1] = ACTIONS(1388), - [aux_sym_namespace_definition_token1] = ACTIONS(1388), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1388), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1388), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1388), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [aux_sym_trait_declaration_token1] = ACTIONS(1388), - [aux_sym_interface_declaration_token1] = ACTIONS(1388), - [aux_sym_enum_declaration_token1] = ACTIONS(1388), - [aux_sym_enum_case_token1] = ACTIONS(1388), - [aux_sym_class_declaration_token1] = ACTIONS(1388), - [aux_sym_final_modifier_token1] = ACTIONS(1388), - [aux_sym_abstract_modifier_token1] = ACTIONS(1388), - [aux_sym_readonly_modifier_token1] = ACTIONS(1388), - [aux_sym_visibility_modifier_token1] = ACTIONS(1388), - [aux_sym_visibility_modifier_token2] = ACTIONS(1388), - [aux_sym_visibility_modifier_token3] = ACTIONS(1388), - [aux_sym__arrow_function_header_token1] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1386), - [aux_sym_cast_type_token1] = ACTIONS(1388), - [aux_sym_echo_statement_token1] = ACTIONS(1388), - [anon_sym_unset] = ACTIONS(1388), - [aux_sym_declare_statement_token1] = ACTIONS(1388), - [aux_sym_declare_statement_token2] = ACTIONS(1388), - [sym_float] = ACTIONS(1388), - [aux_sym_try_statement_token1] = ACTIONS(1388), - [aux_sym_goto_statement_token1] = ACTIONS(1388), - [aux_sym_continue_statement_token1] = ACTIONS(1388), - [aux_sym_break_statement_token1] = ACTIONS(1388), - [sym_integer] = ACTIONS(1388), - [aux_sym_return_statement_token1] = ACTIONS(1388), - [aux_sym_throw_expression_token1] = ACTIONS(1388), - [aux_sym_while_statement_token1] = ACTIONS(1388), - [aux_sym_while_statement_token2] = ACTIONS(1388), - [aux_sym_do_statement_token1] = ACTIONS(1388), - [aux_sym_for_statement_token1] = ACTIONS(1388), - [aux_sym_for_statement_token2] = ACTIONS(1388), - [aux_sym_foreach_statement_token1] = ACTIONS(1388), - [aux_sym_foreach_statement_token2] = ACTIONS(1388), - [aux_sym_if_statement_token1] = ACTIONS(1388), - [aux_sym_if_statement_token2] = ACTIONS(1388), - [aux_sym_else_if_clause_token1] = ACTIONS(1388), - [aux_sym_else_clause_token1] = ACTIONS(1388), - [aux_sym_match_expression_token1] = ACTIONS(1388), - [aux_sym_match_default_expression_token1] = ACTIONS(1388), - [aux_sym_switch_statement_token1] = ACTIONS(1388), - [aux_sym_switch_block_token1] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1386), - [aux_sym_clone_expression_token1] = ACTIONS(1388), - [aux_sym_print_intrinsic_token1] = ACTIONS(1388), - [aux_sym_object_creation_expression_token1] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [aux_sym__list_destructing_token1] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_self] = ACTIONS(1388), - [anon_sym_parent] = ACTIONS(1388), - [aux_sym__argument_name_token1] = ACTIONS(1388), - [aux_sym__argument_name_token2] = ACTIONS(1388), - [anon_sym_POUND_LBRACK] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [aux_sym_encapsed_string_token1] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [aux_sym_string_token1] = ACTIONS(1386), - [anon_sym_LT_LT_LT] = ACTIONS(1386), - [anon_sym_BQUOTE] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1386), - [aux_sym_yield_expression_token1] = ACTIONS(1388), - [aux_sym_include_expression_token1] = ACTIONS(1388), - [aux_sym_include_once_expression_token1] = ACTIONS(1388), - [aux_sym_require_expression_token1] = ACTIONS(1388), - [aux_sym_require_once_expression_token1] = ACTIONS(1388), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_name] = ACTIONS(1390), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1388), + [aux_sym_function_static_declaration_token1] = ACTIONS(1390), + [aux_sym_global_declaration_token1] = ACTIONS(1390), + [aux_sym_namespace_definition_token1] = ACTIONS(1390), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1390), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1390), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1390), + [anon_sym_BSLASH] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [aux_sym_trait_declaration_token1] = ACTIONS(1390), + [aux_sym_interface_declaration_token1] = ACTIONS(1390), + [aux_sym_enum_declaration_token1] = ACTIONS(1390), + [aux_sym_enum_case_token1] = ACTIONS(1390), + [aux_sym_class_declaration_token1] = ACTIONS(1390), + [aux_sym_final_modifier_token1] = ACTIONS(1390), + [aux_sym_abstract_modifier_token1] = ACTIONS(1390), + [aux_sym_readonly_modifier_token1] = ACTIONS(1390), + [aux_sym_visibility_modifier_token1] = ACTIONS(1390), + [aux_sym_visibility_modifier_token2] = ACTIONS(1390), + [aux_sym_visibility_modifier_token3] = ACTIONS(1390), + [aux_sym__arrow_function_header_token1] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1388), + [aux_sym_cast_type_token1] = ACTIONS(1390), + [aux_sym_echo_statement_token1] = ACTIONS(1390), + [anon_sym_unset] = ACTIONS(1390), + [aux_sym_declare_statement_token1] = ACTIONS(1390), + [aux_sym_declare_statement_token2] = ACTIONS(1390), + [sym_float] = ACTIONS(1390), + [aux_sym_try_statement_token1] = ACTIONS(1390), + [aux_sym_goto_statement_token1] = ACTIONS(1390), + [aux_sym_continue_statement_token1] = ACTIONS(1390), + [aux_sym_break_statement_token1] = ACTIONS(1390), + [sym_integer] = ACTIONS(1390), + [aux_sym_return_statement_token1] = ACTIONS(1390), + [aux_sym_throw_expression_token1] = ACTIONS(1390), + [aux_sym_while_statement_token1] = ACTIONS(1390), + [aux_sym_while_statement_token2] = ACTIONS(1390), + [aux_sym_do_statement_token1] = ACTIONS(1390), + [aux_sym_for_statement_token1] = ACTIONS(1390), + [aux_sym_for_statement_token2] = ACTIONS(1390), + [aux_sym_foreach_statement_token1] = ACTIONS(1390), + [aux_sym_foreach_statement_token2] = ACTIONS(1390), + [aux_sym_if_statement_token1] = ACTIONS(1390), + [aux_sym_if_statement_token2] = ACTIONS(1390), + [aux_sym_else_if_clause_token1] = ACTIONS(1390), + [aux_sym_else_clause_token1] = ACTIONS(1390), + [aux_sym_match_expression_token1] = ACTIONS(1390), + [aux_sym_match_default_expression_token1] = ACTIONS(1390), + [aux_sym_switch_statement_token1] = ACTIONS(1390), + [aux_sym_switch_block_token1] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [aux_sym_clone_expression_token1] = ACTIONS(1390), + [aux_sym_print_intrinsic_token1] = ACTIONS(1390), + [aux_sym_object_creation_expression_token1] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [aux_sym__list_destructing_token1] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_self] = ACTIONS(1390), + [anon_sym_parent] = ACTIONS(1390), + [aux_sym__argument_name_token1] = ACTIONS(1390), + [aux_sym__argument_name_token2] = ACTIONS(1390), + [anon_sym_POUND_LBRACK] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [aux_sym_encapsed_string_token1] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [aux_sym_string_token1] = ACTIONS(1388), + [anon_sym_LT_LT_LT] = ACTIONS(1388), + [anon_sym_BQUOTE] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(1388), + [aux_sym_yield_expression_token1] = ACTIONS(1390), + [aux_sym_include_expression_token1] = ACTIONS(1390), + [aux_sym_include_once_expression_token1] = ACTIONS(1390), + [aux_sym_require_expression_token1] = ACTIONS(1390), + [aux_sym_require_once_expression_token1] = ACTIONS(1390), [sym_comment] = ACTIONS(5), }, [523] = { [sym_text_interpolation] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_name] = ACTIONS(1392), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1390), - [aux_sym_function_static_declaration_token1] = ACTIONS(1392), - [aux_sym_global_declaration_token1] = ACTIONS(1392), - [aux_sym_namespace_definition_token1] = ACTIONS(1392), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1392), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1392), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1392), - [anon_sym_BSLASH] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [aux_sym_trait_declaration_token1] = ACTIONS(1392), - [aux_sym_interface_declaration_token1] = ACTIONS(1392), - [aux_sym_enum_declaration_token1] = ACTIONS(1392), - [aux_sym_enum_case_token1] = ACTIONS(1392), - [aux_sym_class_declaration_token1] = ACTIONS(1392), - [aux_sym_final_modifier_token1] = ACTIONS(1392), - [aux_sym_abstract_modifier_token1] = ACTIONS(1392), - [aux_sym_readonly_modifier_token1] = ACTIONS(1392), - [aux_sym_visibility_modifier_token1] = ACTIONS(1392), - [aux_sym_visibility_modifier_token2] = ACTIONS(1392), - [aux_sym_visibility_modifier_token3] = ACTIONS(1392), - [aux_sym__arrow_function_header_token1] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1390), - [aux_sym_cast_type_token1] = ACTIONS(1392), - [aux_sym_echo_statement_token1] = ACTIONS(1392), - [anon_sym_unset] = ACTIONS(1392), - [aux_sym_declare_statement_token1] = ACTIONS(1392), - [aux_sym_declare_statement_token2] = ACTIONS(1392), - [sym_float] = ACTIONS(1392), - [aux_sym_try_statement_token1] = ACTIONS(1392), - [aux_sym_goto_statement_token1] = ACTIONS(1392), - [aux_sym_continue_statement_token1] = ACTIONS(1392), - [aux_sym_break_statement_token1] = ACTIONS(1392), - [sym_integer] = ACTIONS(1392), - [aux_sym_return_statement_token1] = ACTIONS(1392), - [aux_sym_throw_expression_token1] = ACTIONS(1392), - [aux_sym_while_statement_token1] = ACTIONS(1392), - [aux_sym_while_statement_token2] = ACTIONS(1392), - [aux_sym_do_statement_token1] = ACTIONS(1392), - [aux_sym_for_statement_token1] = ACTIONS(1392), - [aux_sym_for_statement_token2] = ACTIONS(1392), - [aux_sym_foreach_statement_token1] = ACTIONS(1392), - [aux_sym_foreach_statement_token2] = ACTIONS(1392), - [aux_sym_if_statement_token1] = ACTIONS(1392), - [aux_sym_if_statement_token2] = ACTIONS(1392), - [aux_sym_else_if_clause_token1] = ACTIONS(1392), - [aux_sym_else_clause_token1] = ACTIONS(1392), - [aux_sym_match_expression_token1] = ACTIONS(1392), - [aux_sym_match_default_expression_token1] = ACTIONS(1392), - [aux_sym_switch_statement_token1] = ACTIONS(1392), - [aux_sym_switch_block_token1] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1390), - [aux_sym_clone_expression_token1] = ACTIONS(1392), - [aux_sym_print_intrinsic_token1] = ACTIONS(1392), - [aux_sym_object_creation_expression_token1] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [aux_sym__list_destructing_token1] = ACTIONS(1392), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_self] = ACTIONS(1392), - [anon_sym_parent] = ACTIONS(1392), - [aux_sym__argument_name_token1] = ACTIONS(1392), - [aux_sym__argument_name_token2] = ACTIONS(1392), - [anon_sym_POUND_LBRACK] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [aux_sym_encapsed_string_token1] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [aux_sym_string_token1] = ACTIONS(1390), - [anon_sym_LT_LT_LT] = ACTIONS(1390), - [anon_sym_BQUOTE] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1390), - [aux_sym_yield_expression_token1] = ACTIONS(1392), - [aux_sym_include_expression_token1] = ACTIONS(1392), - [aux_sym_include_once_expression_token1] = ACTIONS(1392), - [aux_sym_require_expression_token1] = ACTIONS(1392), - [aux_sym_require_once_expression_token1] = ACTIONS(1392), + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_name] = ACTIONS(1394), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1392), + [aux_sym_function_static_declaration_token1] = ACTIONS(1394), + [aux_sym_global_declaration_token1] = ACTIONS(1394), + [aux_sym_namespace_definition_token1] = ACTIONS(1394), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1394), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1394), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1394), + [anon_sym_BSLASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [aux_sym_trait_declaration_token1] = ACTIONS(1394), + [aux_sym_interface_declaration_token1] = ACTIONS(1394), + [aux_sym_enum_declaration_token1] = ACTIONS(1394), + [aux_sym_enum_case_token1] = ACTIONS(1394), + [aux_sym_class_declaration_token1] = ACTIONS(1394), + [aux_sym_final_modifier_token1] = ACTIONS(1394), + [aux_sym_abstract_modifier_token1] = ACTIONS(1394), + [aux_sym_readonly_modifier_token1] = ACTIONS(1394), + [aux_sym_visibility_modifier_token1] = ACTIONS(1394), + [aux_sym_visibility_modifier_token2] = ACTIONS(1394), + [aux_sym_visibility_modifier_token3] = ACTIONS(1394), + [aux_sym__arrow_function_header_token1] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1392), + [aux_sym_cast_type_token1] = ACTIONS(1394), + [aux_sym_echo_statement_token1] = ACTIONS(1394), + [anon_sym_unset] = ACTIONS(1394), + [aux_sym_declare_statement_token1] = ACTIONS(1394), + [aux_sym_declare_statement_token2] = ACTIONS(1394), + [sym_float] = ACTIONS(1394), + [aux_sym_try_statement_token1] = ACTIONS(1394), + [aux_sym_goto_statement_token1] = ACTIONS(1394), + [aux_sym_continue_statement_token1] = ACTIONS(1394), + [aux_sym_break_statement_token1] = ACTIONS(1394), + [sym_integer] = ACTIONS(1394), + [aux_sym_return_statement_token1] = ACTIONS(1394), + [aux_sym_throw_expression_token1] = ACTIONS(1394), + [aux_sym_while_statement_token1] = ACTIONS(1394), + [aux_sym_while_statement_token2] = ACTIONS(1394), + [aux_sym_do_statement_token1] = ACTIONS(1394), + [aux_sym_for_statement_token1] = ACTIONS(1394), + [aux_sym_for_statement_token2] = ACTIONS(1394), + [aux_sym_foreach_statement_token1] = ACTIONS(1394), + [aux_sym_foreach_statement_token2] = ACTIONS(1394), + [aux_sym_if_statement_token1] = ACTIONS(1394), + [aux_sym_if_statement_token2] = ACTIONS(1394), + [aux_sym_else_if_clause_token1] = ACTIONS(1394), + [aux_sym_else_clause_token1] = ACTIONS(1394), + [aux_sym_match_expression_token1] = ACTIONS(1394), + [aux_sym_match_default_expression_token1] = ACTIONS(1394), + [aux_sym_switch_statement_token1] = ACTIONS(1394), + [aux_sym_switch_block_token1] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), + [aux_sym_clone_expression_token1] = ACTIONS(1394), + [aux_sym_print_intrinsic_token1] = ACTIONS(1394), + [aux_sym_object_creation_expression_token1] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [aux_sym__list_destructing_token1] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_self] = ACTIONS(1394), + [anon_sym_parent] = ACTIONS(1394), + [aux_sym__argument_name_token1] = ACTIONS(1394), + [aux_sym__argument_name_token2] = ACTIONS(1394), + [anon_sym_POUND_LBRACK] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [aux_sym_encapsed_string_token1] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [aux_sym_string_token1] = ACTIONS(1392), + [anon_sym_LT_LT_LT] = ACTIONS(1392), + [anon_sym_BQUOTE] = ACTIONS(1392), + [anon_sym_DOLLAR] = ACTIONS(1392), + [aux_sym_yield_expression_token1] = ACTIONS(1394), + [aux_sym_include_expression_token1] = ACTIONS(1394), + [aux_sym_include_once_expression_token1] = ACTIONS(1394), + [aux_sym_require_expression_token1] = ACTIONS(1394), + [aux_sym_require_once_expression_token1] = ACTIONS(1394), [sym_comment] = ACTIONS(5), }, [524] = { [sym_text_interpolation] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_name] = ACTIONS(1396), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1394), - [aux_sym_function_static_declaration_token1] = ACTIONS(1396), - [aux_sym_global_declaration_token1] = ACTIONS(1396), - [aux_sym_namespace_definition_token1] = ACTIONS(1396), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1396), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1396), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1396), - [anon_sym_BSLASH] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [aux_sym_trait_declaration_token1] = ACTIONS(1396), - [aux_sym_interface_declaration_token1] = ACTIONS(1396), - [aux_sym_enum_declaration_token1] = ACTIONS(1396), - [aux_sym_enum_case_token1] = ACTIONS(1396), - [aux_sym_class_declaration_token1] = ACTIONS(1396), - [aux_sym_final_modifier_token1] = ACTIONS(1396), - [aux_sym_abstract_modifier_token1] = ACTIONS(1396), - [aux_sym_readonly_modifier_token1] = ACTIONS(1396), - [aux_sym_visibility_modifier_token1] = ACTIONS(1396), - [aux_sym_visibility_modifier_token2] = ACTIONS(1396), - [aux_sym_visibility_modifier_token3] = ACTIONS(1396), - [aux_sym__arrow_function_header_token1] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1394), - [aux_sym_cast_type_token1] = ACTIONS(1396), - [aux_sym_echo_statement_token1] = ACTIONS(1396), - [anon_sym_unset] = ACTIONS(1396), - [aux_sym_declare_statement_token1] = ACTIONS(1396), - [aux_sym_declare_statement_token2] = ACTIONS(1396), - [sym_float] = ACTIONS(1396), - [aux_sym_try_statement_token1] = ACTIONS(1396), - [aux_sym_goto_statement_token1] = ACTIONS(1396), - [aux_sym_continue_statement_token1] = ACTIONS(1396), - [aux_sym_break_statement_token1] = ACTIONS(1396), - [sym_integer] = ACTIONS(1396), - [aux_sym_return_statement_token1] = ACTIONS(1396), - [aux_sym_throw_expression_token1] = ACTIONS(1396), - [aux_sym_while_statement_token1] = ACTIONS(1396), - [aux_sym_while_statement_token2] = ACTIONS(1396), - [aux_sym_do_statement_token1] = ACTIONS(1396), - [aux_sym_for_statement_token1] = ACTIONS(1396), - [aux_sym_for_statement_token2] = ACTIONS(1396), - [aux_sym_foreach_statement_token1] = ACTIONS(1396), - [aux_sym_foreach_statement_token2] = ACTIONS(1396), - [aux_sym_if_statement_token1] = ACTIONS(1396), - [aux_sym_if_statement_token2] = ACTIONS(1396), - [aux_sym_else_if_clause_token1] = ACTIONS(1396), - [aux_sym_else_clause_token1] = ACTIONS(1396), - [aux_sym_match_expression_token1] = ACTIONS(1396), - [aux_sym_match_default_expression_token1] = ACTIONS(1396), - [aux_sym_switch_statement_token1] = ACTIONS(1396), - [aux_sym_switch_block_token1] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), - [aux_sym_clone_expression_token1] = ACTIONS(1396), - [aux_sym_print_intrinsic_token1] = ACTIONS(1396), - [aux_sym_object_creation_expression_token1] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [aux_sym__list_destructing_token1] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_self] = ACTIONS(1396), - [anon_sym_parent] = ACTIONS(1396), - [aux_sym__argument_name_token1] = ACTIONS(1396), - [aux_sym__argument_name_token2] = ACTIONS(1396), - [anon_sym_POUND_LBRACK] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [aux_sym_encapsed_string_token1] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [aux_sym_string_token1] = ACTIONS(1394), - [anon_sym_LT_LT_LT] = ACTIONS(1394), - [anon_sym_BQUOTE] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(1394), - [aux_sym_yield_expression_token1] = ACTIONS(1396), - [aux_sym_include_expression_token1] = ACTIONS(1396), - [aux_sym_include_once_expression_token1] = ACTIONS(1396), - [aux_sym_require_expression_token1] = ACTIONS(1396), - [aux_sym_require_once_expression_token1] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_name] = ACTIONS(1398), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1396), + [aux_sym_function_static_declaration_token1] = ACTIONS(1398), + [aux_sym_global_declaration_token1] = ACTIONS(1398), + [aux_sym_namespace_definition_token1] = ACTIONS(1398), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1398), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1398), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1398), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [aux_sym_trait_declaration_token1] = ACTIONS(1398), + [aux_sym_interface_declaration_token1] = ACTIONS(1398), + [aux_sym_enum_declaration_token1] = ACTIONS(1398), + [aux_sym_enum_case_token1] = ACTIONS(1398), + [aux_sym_class_declaration_token1] = ACTIONS(1398), + [aux_sym_final_modifier_token1] = ACTIONS(1398), + [aux_sym_abstract_modifier_token1] = ACTIONS(1398), + [aux_sym_readonly_modifier_token1] = ACTIONS(1398), + [aux_sym_visibility_modifier_token1] = ACTIONS(1398), + [aux_sym_visibility_modifier_token2] = ACTIONS(1398), + [aux_sym_visibility_modifier_token3] = ACTIONS(1398), + [aux_sym__arrow_function_header_token1] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1396), + [aux_sym_cast_type_token1] = ACTIONS(1398), + [aux_sym_echo_statement_token1] = ACTIONS(1398), + [anon_sym_unset] = ACTIONS(1398), + [aux_sym_declare_statement_token1] = ACTIONS(1398), + [aux_sym_declare_statement_token2] = ACTIONS(1398), + [sym_float] = ACTIONS(1398), + [aux_sym_try_statement_token1] = ACTIONS(1398), + [aux_sym_goto_statement_token1] = ACTIONS(1398), + [aux_sym_continue_statement_token1] = ACTIONS(1398), + [aux_sym_break_statement_token1] = ACTIONS(1398), + [sym_integer] = ACTIONS(1398), + [aux_sym_return_statement_token1] = ACTIONS(1398), + [aux_sym_throw_expression_token1] = ACTIONS(1398), + [aux_sym_while_statement_token1] = ACTIONS(1398), + [aux_sym_while_statement_token2] = ACTIONS(1398), + [aux_sym_do_statement_token1] = ACTIONS(1398), + [aux_sym_for_statement_token1] = ACTIONS(1398), + [aux_sym_for_statement_token2] = ACTIONS(1398), + [aux_sym_foreach_statement_token1] = ACTIONS(1398), + [aux_sym_foreach_statement_token2] = ACTIONS(1398), + [aux_sym_if_statement_token1] = ACTIONS(1398), + [aux_sym_if_statement_token2] = ACTIONS(1398), + [aux_sym_else_if_clause_token1] = ACTIONS(1398), + [aux_sym_else_clause_token1] = ACTIONS(1398), + [aux_sym_match_expression_token1] = ACTIONS(1398), + [aux_sym_match_default_expression_token1] = ACTIONS(1398), + [aux_sym_switch_statement_token1] = ACTIONS(1398), + [aux_sym_switch_block_token1] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [aux_sym_clone_expression_token1] = ACTIONS(1398), + [aux_sym_print_intrinsic_token1] = ACTIONS(1398), + [aux_sym_object_creation_expression_token1] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [aux_sym__list_destructing_token1] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_self] = ACTIONS(1398), + [anon_sym_parent] = ACTIONS(1398), + [aux_sym__argument_name_token1] = ACTIONS(1398), + [aux_sym__argument_name_token2] = ACTIONS(1398), + [anon_sym_POUND_LBRACK] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [aux_sym_encapsed_string_token1] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [aux_sym_string_token1] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [aux_sym_yield_expression_token1] = ACTIONS(1398), + [aux_sym_include_expression_token1] = ACTIONS(1398), + [aux_sym_include_once_expression_token1] = ACTIONS(1398), + [aux_sym_require_expression_token1] = ACTIONS(1398), + [aux_sym_require_once_expression_token1] = ACTIONS(1398), [sym_comment] = ACTIONS(5), }, [525] = { [sym_text_interpolation] = STATE(525), - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_name] = ACTIONS(1400), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1398), - [aux_sym_function_static_declaration_token1] = ACTIONS(1400), - [aux_sym_global_declaration_token1] = ACTIONS(1400), - [aux_sym_namespace_definition_token1] = ACTIONS(1400), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1400), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1400), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1400), - [anon_sym_BSLASH] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [aux_sym_trait_declaration_token1] = ACTIONS(1400), - [aux_sym_interface_declaration_token1] = ACTIONS(1400), - [aux_sym_enum_declaration_token1] = ACTIONS(1400), - [aux_sym_enum_case_token1] = ACTIONS(1400), - [aux_sym_class_declaration_token1] = ACTIONS(1400), - [aux_sym_final_modifier_token1] = ACTIONS(1400), - [aux_sym_abstract_modifier_token1] = ACTIONS(1400), - [aux_sym_readonly_modifier_token1] = ACTIONS(1400), - [aux_sym_visibility_modifier_token1] = ACTIONS(1400), - [aux_sym_visibility_modifier_token2] = ACTIONS(1400), - [aux_sym_visibility_modifier_token3] = ACTIONS(1400), - [aux_sym__arrow_function_header_token1] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [aux_sym_cast_type_token1] = ACTIONS(1400), - [aux_sym_echo_statement_token1] = ACTIONS(1400), - [anon_sym_unset] = ACTIONS(1400), - [aux_sym_declare_statement_token1] = ACTIONS(1400), - [aux_sym_declare_statement_token2] = ACTIONS(1400), - [sym_float] = ACTIONS(1400), - [aux_sym_try_statement_token1] = ACTIONS(1400), - [aux_sym_goto_statement_token1] = ACTIONS(1400), - [aux_sym_continue_statement_token1] = ACTIONS(1400), - [aux_sym_break_statement_token1] = ACTIONS(1400), - [sym_integer] = ACTIONS(1400), - [aux_sym_return_statement_token1] = ACTIONS(1400), - [aux_sym_throw_expression_token1] = ACTIONS(1400), - [aux_sym_while_statement_token1] = ACTIONS(1400), - [aux_sym_while_statement_token2] = ACTIONS(1400), - [aux_sym_do_statement_token1] = ACTIONS(1400), - [aux_sym_for_statement_token1] = ACTIONS(1400), - [aux_sym_for_statement_token2] = ACTIONS(1400), - [aux_sym_foreach_statement_token1] = ACTIONS(1400), - [aux_sym_foreach_statement_token2] = ACTIONS(1400), - [aux_sym_if_statement_token1] = ACTIONS(1400), - [aux_sym_if_statement_token2] = ACTIONS(1400), - [aux_sym_else_if_clause_token1] = ACTIONS(1400), - [aux_sym_else_clause_token1] = ACTIONS(1400), - [aux_sym_match_expression_token1] = ACTIONS(1400), - [aux_sym_match_default_expression_token1] = ACTIONS(1400), - [aux_sym_switch_statement_token1] = ACTIONS(1400), - [aux_sym_switch_block_token1] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1398), - [aux_sym_clone_expression_token1] = ACTIONS(1400), - [aux_sym_print_intrinsic_token1] = ACTIONS(1400), - [aux_sym_object_creation_expression_token1] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [aux_sym__list_destructing_token1] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_self] = ACTIONS(1400), - [anon_sym_parent] = ACTIONS(1400), - [aux_sym__argument_name_token1] = ACTIONS(1400), - [aux_sym__argument_name_token2] = ACTIONS(1400), - [anon_sym_POUND_LBRACK] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [aux_sym_encapsed_string_token1] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [aux_sym_string_token1] = ACTIONS(1398), - [anon_sym_LT_LT_LT] = ACTIONS(1398), - [anon_sym_BQUOTE] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1398), - [aux_sym_yield_expression_token1] = ACTIONS(1400), - [aux_sym_include_expression_token1] = ACTIONS(1400), - [aux_sym_include_once_expression_token1] = ACTIONS(1400), - [aux_sym_require_expression_token1] = ACTIONS(1400), - [aux_sym_require_once_expression_token1] = ACTIONS(1400), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_name] = ACTIONS(1402), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1400), + [aux_sym_function_static_declaration_token1] = ACTIONS(1402), + [aux_sym_global_declaration_token1] = ACTIONS(1402), + [aux_sym_namespace_definition_token1] = ACTIONS(1402), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1402), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1402), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1402), + [anon_sym_BSLASH] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [aux_sym_trait_declaration_token1] = ACTIONS(1402), + [aux_sym_interface_declaration_token1] = ACTIONS(1402), + [aux_sym_enum_declaration_token1] = ACTIONS(1402), + [aux_sym_enum_case_token1] = ACTIONS(1402), + [aux_sym_class_declaration_token1] = ACTIONS(1402), + [aux_sym_final_modifier_token1] = ACTIONS(1402), + [aux_sym_abstract_modifier_token1] = ACTIONS(1402), + [aux_sym_readonly_modifier_token1] = ACTIONS(1402), + [aux_sym_visibility_modifier_token1] = ACTIONS(1402), + [aux_sym_visibility_modifier_token2] = ACTIONS(1402), + [aux_sym_visibility_modifier_token3] = ACTIONS(1402), + [aux_sym__arrow_function_header_token1] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1400), + [aux_sym_cast_type_token1] = ACTIONS(1402), + [aux_sym_echo_statement_token1] = ACTIONS(1402), + [anon_sym_unset] = ACTIONS(1402), + [aux_sym_declare_statement_token1] = ACTIONS(1402), + [aux_sym_declare_statement_token2] = ACTIONS(1402), + [sym_float] = ACTIONS(1402), + [aux_sym_try_statement_token1] = ACTIONS(1402), + [aux_sym_goto_statement_token1] = ACTIONS(1402), + [aux_sym_continue_statement_token1] = ACTIONS(1402), + [aux_sym_break_statement_token1] = ACTIONS(1402), + [sym_integer] = ACTIONS(1402), + [aux_sym_return_statement_token1] = ACTIONS(1402), + [aux_sym_throw_expression_token1] = ACTIONS(1402), + [aux_sym_while_statement_token1] = ACTIONS(1402), + [aux_sym_while_statement_token2] = ACTIONS(1402), + [aux_sym_do_statement_token1] = ACTIONS(1402), + [aux_sym_for_statement_token1] = ACTIONS(1402), + [aux_sym_for_statement_token2] = ACTIONS(1402), + [aux_sym_foreach_statement_token1] = ACTIONS(1402), + [aux_sym_foreach_statement_token2] = ACTIONS(1402), + [aux_sym_if_statement_token1] = ACTIONS(1402), + [aux_sym_if_statement_token2] = ACTIONS(1402), + [aux_sym_else_if_clause_token1] = ACTIONS(1402), + [aux_sym_else_clause_token1] = ACTIONS(1402), + [aux_sym_match_expression_token1] = ACTIONS(1402), + [aux_sym_match_default_expression_token1] = ACTIONS(1402), + [aux_sym_switch_statement_token1] = ACTIONS(1402), + [aux_sym_switch_block_token1] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [aux_sym_clone_expression_token1] = ACTIONS(1402), + [aux_sym_print_intrinsic_token1] = ACTIONS(1402), + [aux_sym_object_creation_expression_token1] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [aux_sym__list_destructing_token1] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_self] = ACTIONS(1402), + [anon_sym_parent] = ACTIONS(1402), + [aux_sym__argument_name_token1] = ACTIONS(1402), + [aux_sym__argument_name_token2] = ACTIONS(1402), + [anon_sym_POUND_LBRACK] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [aux_sym_encapsed_string_token1] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [aux_sym_string_token1] = ACTIONS(1400), + [anon_sym_LT_LT_LT] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [aux_sym_yield_expression_token1] = ACTIONS(1402), + [aux_sym_include_expression_token1] = ACTIONS(1402), + [aux_sym_include_once_expression_token1] = ACTIONS(1402), + [aux_sym_require_expression_token1] = ACTIONS(1402), + [aux_sym_require_once_expression_token1] = ACTIONS(1402), [sym_comment] = ACTIONS(5), }, [526] = { [sym_text_interpolation] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_name] = ACTIONS(1380), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1378), - [aux_sym_function_static_declaration_token1] = ACTIONS(1380), - [aux_sym_global_declaration_token1] = ACTIONS(1380), - [aux_sym_namespace_definition_token1] = ACTIONS(1380), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1380), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1380), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [aux_sym_trait_declaration_token1] = ACTIONS(1380), - [aux_sym_interface_declaration_token1] = ACTIONS(1380), - [aux_sym_enum_declaration_token1] = ACTIONS(1380), - [aux_sym_enum_case_token1] = ACTIONS(1380), - [aux_sym_class_declaration_token1] = ACTIONS(1380), - [aux_sym_final_modifier_token1] = ACTIONS(1380), - [aux_sym_abstract_modifier_token1] = ACTIONS(1380), - [aux_sym_readonly_modifier_token1] = ACTIONS(1380), - [aux_sym_visibility_modifier_token1] = ACTIONS(1380), - [aux_sym_visibility_modifier_token2] = ACTIONS(1380), - [aux_sym_visibility_modifier_token3] = ACTIONS(1380), - [aux_sym__arrow_function_header_token1] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1378), - [aux_sym_cast_type_token1] = ACTIONS(1380), - [aux_sym_echo_statement_token1] = ACTIONS(1380), - [anon_sym_unset] = ACTIONS(1380), - [aux_sym_declare_statement_token1] = ACTIONS(1380), - [aux_sym_declare_statement_token2] = ACTIONS(1380), - [sym_float] = ACTIONS(1380), - [aux_sym_try_statement_token1] = ACTIONS(1380), - [aux_sym_goto_statement_token1] = ACTIONS(1380), - [aux_sym_continue_statement_token1] = ACTIONS(1380), - [aux_sym_break_statement_token1] = ACTIONS(1380), - [sym_integer] = ACTIONS(1380), - [aux_sym_return_statement_token1] = ACTIONS(1380), - [aux_sym_throw_expression_token1] = ACTIONS(1380), - [aux_sym_while_statement_token1] = ACTIONS(1380), - [aux_sym_while_statement_token2] = ACTIONS(1380), - [aux_sym_do_statement_token1] = ACTIONS(1380), - [aux_sym_for_statement_token1] = ACTIONS(1380), - [aux_sym_for_statement_token2] = ACTIONS(1380), - [aux_sym_foreach_statement_token1] = ACTIONS(1380), - [aux_sym_foreach_statement_token2] = ACTIONS(1380), - [aux_sym_if_statement_token1] = ACTIONS(1380), - [aux_sym_if_statement_token2] = ACTIONS(1380), - [aux_sym_else_if_clause_token1] = ACTIONS(1380), - [aux_sym_else_clause_token1] = ACTIONS(1380), - [aux_sym_match_expression_token1] = ACTIONS(1380), - [aux_sym_match_default_expression_token1] = ACTIONS(1380), - [aux_sym_switch_statement_token1] = ACTIONS(1380), - [aux_sym_switch_block_token1] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_AT] = ACTIONS(1378), - [aux_sym_clone_expression_token1] = ACTIONS(1380), - [aux_sym_print_intrinsic_token1] = ACTIONS(1380), - [aux_sym_object_creation_expression_token1] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [aux_sym__list_destructing_token1] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_self] = ACTIONS(1380), - [anon_sym_parent] = ACTIONS(1380), - [aux_sym__argument_name_token1] = ACTIONS(1380), - [aux_sym__argument_name_token2] = ACTIONS(1380), - [anon_sym_POUND_LBRACK] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [aux_sym_encapsed_string_token1] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [aux_sym_string_token1] = ACTIONS(1378), - [anon_sym_LT_LT_LT] = ACTIONS(1378), - [anon_sym_BQUOTE] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1378), - [aux_sym_yield_expression_token1] = ACTIONS(1380), - [aux_sym_include_expression_token1] = ACTIONS(1380), - [aux_sym_include_once_expression_token1] = ACTIONS(1380), - [aux_sym_require_expression_token1] = ACTIONS(1380), - [aux_sym_require_once_expression_token1] = ACTIONS(1380), + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_name] = ACTIONS(1382), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1380), + [aux_sym_function_static_declaration_token1] = ACTIONS(1382), + [aux_sym_global_declaration_token1] = ACTIONS(1382), + [aux_sym_namespace_definition_token1] = ACTIONS(1382), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1382), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1382), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1382), + [anon_sym_BSLASH] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [aux_sym_trait_declaration_token1] = ACTIONS(1382), + [aux_sym_interface_declaration_token1] = ACTIONS(1382), + [aux_sym_enum_declaration_token1] = ACTIONS(1382), + [aux_sym_enum_case_token1] = ACTIONS(1382), + [aux_sym_class_declaration_token1] = ACTIONS(1382), + [aux_sym_final_modifier_token1] = ACTIONS(1382), + [aux_sym_abstract_modifier_token1] = ACTIONS(1382), + [aux_sym_readonly_modifier_token1] = ACTIONS(1382), + [aux_sym_visibility_modifier_token1] = ACTIONS(1382), + [aux_sym_visibility_modifier_token2] = ACTIONS(1382), + [aux_sym_visibility_modifier_token3] = ACTIONS(1382), + [aux_sym__arrow_function_header_token1] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1380), + [aux_sym_cast_type_token1] = ACTIONS(1382), + [aux_sym_echo_statement_token1] = ACTIONS(1382), + [anon_sym_unset] = ACTIONS(1382), + [aux_sym_declare_statement_token1] = ACTIONS(1382), + [aux_sym_declare_statement_token2] = ACTIONS(1382), + [sym_float] = ACTIONS(1382), + [aux_sym_try_statement_token1] = ACTIONS(1382), + [aux_sym_goto_statement_token1] = ACTIONS(1382), + [aux_sym_continue_statement_token1] = ACTIONS(1382), + [aux_sym_break_statement_token1] = ACTIONS(1382), + [sym_integer] = ACTIONS(1382), + [aux_sym_return_statement_token1] = ACTIONS(1382), + [aux_sym_throw_expression_token1] = ACTIONS(1382), + [aux_sym_while_statement_token1] = ACTIONS(1382), + [aux_sym_while_statement_token2] = ACTIONS(1382), + [aux_sym_do_statement_token1] = ACTIONS(1382), + [aux_sym_for_statement_token1] = ACTIONS(1382), + [aux_sym_for_statement_token2] = ACTIONS(1382), + [aux_sym_foreach_statement_token1] = ACTIONS(1382), + [aux_sym_foreach_statement_token2] = ACTIONS(1382), + [aux_sym_if_statement_token1] = ACTIONS(1382), + [aux_sym_if_statement_token2] = ACTIONS(1382), + [aux_sym_else_if_clause_token1] = ACTIONS(1382), + [aux_sym_else_clause_token1] = ACTIONS(1382), + [aux_sym_match_expression_token1] = ACTIONS(1382), + [aux_sym_match_default_expression_token1] = ACTIONS(1382), + [aux_sym_switch_statement_token1] = ACTIONS(1382), + [aux_sym_switch_block_token1] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_AT] = ACTIONS(1380), + [aux_sym_clone_expression_token1] = ACTIONS(1382), + [aux_sym_print_intrinsic_token1] = ACTIONS(1382), + [aux_sym_object_creation_expression_token1] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [aux_sym__list_destructing_token1] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_self] = ACTIONS(1382), + [anon_sym_parent] = ACTIONS(1382), + [aux_sym__argument_name_token1] = ACTIONS(1382), + [aux_sym__argument_name_token2] = ACTIONS(1382), + [anon_sym_POUND_LBRACK] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [aux_sym_encapsed_string_token1] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [aux_sym_string_token1] = ACTIONS(1380), + [anon_sym_LT_LT_LT] = ACTIONS(1380), + [anon_sym_BQUOTE] = ACTIONS(1380), + [anon_sym_DOLLAR] = ACTIONS(1380), + [aux_sym_yield_expression_token1] = ACTIONS(1382), + [aux_sym_include_expression_token1] = ACTIONS(1382), + [aux_sym_include_once_expression_token1] = ACTIONS(1382), + [aux_sym_require_expression_token1] = ACTIONS(1382), + [aux_sym_require_once_expression_token1] = ACTIONS(1382), [sym_comment] = ACTIONS(5), }, [527] = { [sym_text_interpolation] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(1402), - [sym_name] = ACTIONS(1404), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1402), - [aux_sym_function_static_declaration_token1] = ACTIONS(1404), - [aux_sym_global_declaration_token1] = ACTIONS(1404), - [aux_sym_namespace_definition_token1] = ACTIONS(1404), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1404), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1404), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1404), - [anon_sym_BSLASH] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [aux_sym_trait_declaration_token1] = ACTIONS(1404), - [aux_sym_interface_declaration_token1] = ACTIONS(1404), - [aux_sym_enum_declaration_token1] = ACTIONS(1404), - [aux_sym_enum_case_token1] = ACTIONS(1404), - [aux_sym_class_declaration_token1] = ACTIONS(1404), - [aux_sym_final_modifier_token1] = ACTIONS(1404), - [aux_sym_abstract_modifier_token1] = ACTIONS(1404), - [aux_sym_readonly_modifier_token1] = ACTIONS(1404), - [aux_sym_visibility_modifier_token1] = ACTIONS(1404), - [aux_sym_visibility_modifier_token2] = ACTIONS(1404), - [aux_sym_visibility_modifier_token3] = ACTIONS(1404), - [aux_sym__arrow_function_header_token1] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1402), - [aux_sym_cast_type_token1] = ACTIONS(1404), - [aux_sym_echo_statement_token1] = ACTIONS(1404), - [anon_sym_unset] = ACTIONS(1404), - [aux_sym_declare_statement_token1] = ACTIONS(1404), - [aux_sym_declare_statement_token2] = ACTIONS(1404), - [sym_float] = ACTIONS(1404), - [aux_sym_try_statement_token1] = ACTIONS(1404), - [aux_sym_goto_statement_token1] = ACTIONS(1404), - [aux_sym_continue_statement_token1] = ACTIONS(1404), - [aux_sym_break_statement_token1] = ACTIONS(1404), - [sym_integer] = ACTIONS(1404), - [aux_sym_return_statement_token1] = ACTIONS(1404), - [aux_sym_throw_expression_token1] = ACTIONS(1404), - [aux_sym_while_statement_token1] = ACTIONS(1404), - [aux_sym_while_statement_token2] = ACTIONS(1404), - [aux_sym_do_statement_token1] = ACTIONS(1404), - [aux_sym_for_statement_token1] = ACTIONS(1404), - [aux_sym_for_statement_token2] = ACTIONS(1404), - [aux_sym_foreach_statement_token1] = ACTIONS(1404), - [aux_sym_foreach_statement_token2] = ACTIONS(1404), - [aux_sym_if_statement_token1] = ACTIONS(1404), - [aux_sym_if_statement_token2] = ACTIONS(1404), - [aux_sym_else_if_clause_token1] = ACTIONS(1404), - [aux_sym_else_clause_token1] = ACTIONS(1404), - [aux_sym_match_expression_token1] = ACTIONS(1404), - [aux_sym_match_default_expression_token1] = ACTIONS(1404), - [aux_sym_switch_statement_token1] = ACTIONS(1404), - [aux_sym_switch_block_token1] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1402), - [aux_sym_clone_expression_token1] = ACTIONS(1404), - [aux_sym_print_intrinsic_token1] = ACTIONS(1404), - [aux_sym_object_creation_expression_token1] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1402), - [aux_sym__list_destructing_token1] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_self] = ACTIONS(1404), - [anon_sym_parent] = ACTIONS(1404), - [aux_sym__argument_name_token1] = ACTIONS(1404), - [aux_sym__argument_name_token2] = ACTIONS(1404), - [anon_sym_POUND_LBRACK] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [aux_sym_encapsed_string_token1] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1402), - [aux_sym_string_token1] = ACTIONS(1402), - [anon_sym_LT_LT_LT] = ACTIONS(1402), - [anon_sym_BQUOTE] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1402), - [aux_sym_yield_expression_token1] = ACTIONS(1404), - [aux_sym_include_expression_token1] = ACTIONS(1404), - [aux_sym_include_once_expression_token1] = ACTIONS(1404), - [aux_sym_require_expression_token1] = ACTIONS(1404), - [aux_sym_require_once_expression_token1] = ACTIONS(1404), + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_name] = ACTIONS(1406), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1404), + [aux_sym_function_static_declaration_token1] = ACTIONS(1406), + [aux_sym_global_declaration_token1] = ACTIONS(1406), + [aux_sym_namespace_definition_token1] = ACTIONS(1406), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1406), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1406), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1406), + [anon_sym_BSLASH] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [aux_sym_trait_declaration_token1] = ACTIONS(1406), + [aux_sym_interface_declaration_token1] = ACTIONS(1406), + [aux_sym_enum_declaration_token1] = ACTIONS(1406), + [aux_sym_enum_case_token1] = ACTIONS(1406), + [aux_sym_class_declaration_token1] = ACTIONS(1406), + [aux_sym_final_modifier_token1] = ACTIONS(1406), + [aux_sym_abstract_modifier_token1] = ACTIONS(1406), + [aux_sym_readonly_modifier_token1] = ACTIONS(1406), + [aux_sym_visibility_modifier_token1] = ACTIONS(1406), + [aux_sym_visibility_modifier_token2] = ACTIONS(1406), + [aux_sym_visibility_modifier_token3] = ACTIONS(1406), + [aux_sym__arrow_function_header_token1] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1404), + [aux_sym_cast_type_token1] = ACTIONS(1406), + [aux_sym_echo_statement_token1] = ACTIONS(1406), + [anon_sym_unset] = ACTIONS(1406), + [aux_sym_declare_statement_token1] = ACTIONS(1406), + [aux_sym_declare_statement_token2] = ACTIONS(1406), + [sym_float] = ACTIONS(1406), + [aux_sym_try_statement_token1] = ACTIONS(1406), + [aux_sym_goto_statement_token1] = ACTIONS(1406), + [aux_sym_continue_statement_token1] = ACTIONS(1406), + [aux_sym_break_statement_token1] = ACTIONS(1406), + [sym_integer] = ACTIONS(1406), + [aux_sym_return_statement_token1] = ACTIONS(1406), + [aux_sym_throw_expression_token1] = ACTIONS(1406), + [aux_sym_while_statement_token1] = ACTIONS(1406), + [aux_sym_while_statement_token2] = ACTIONS(1406), + [aux_sym_do_statement_token1] = ACTIONS(1406), + [aux_sym_for_statement_token1] = ACTIONS(1406), + [aux_sym_for_statement_token2] = ACTIONS(1406), + [aux_sym_foreach_statement_token1] = ACTIONS(1406), + [aux_sym_foreach_statement_token2] = ACTIONS(1406), + [aux_sym_if_statement_token1] = ACTIONS(1406), + [aux_sym_if_statement_token2] = ACTIONS(1406), + [aux_sym_else_if_clause_token1] = ACTIONS(1406), + [aux_sym_else_clause_token1] = ACTIONS(1406), + [aux_sym_match_expression_token1] = ACTIONS(1406), + [aux_sym_match_default_expression_token1] = ACTIONS(1406), + [aux_sym_switch_statement_token1] = ACTIONS(1406), + [aux_sym_switch_block_token1] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_AT] = ACTIONS(1404), + [aux_sym_clone_expression_token1] = ACTIONS(1406), + [aux_sym_print_intrinsic_token1] = ACTIONS(1406), + [aux_sym_object_creation_expression_token1] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [aux_sym__list_destructing_token1] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1404), + [anon_sym_self] = ACTIONS(1406), + [anon_sym_parent] = ACTIONS(1406), + [aux_sym__argument_name_token1] = ACTIONS(1406), + [aux_sym__argument_name_token2] = ACTIONS(1406), + [anon_sym_POUND_LBRACK] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [aux_sym_encapsed_string_token1] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [aux_sym_string_token1] = ACTIONS(1404), + [anon_sym_LT_LT_LT] = ACTIONS(1404), + [anon_sym_BQUOTE] = ACTIONS(1404), + [anon_sym_DOLLAR] = ACTIONS(1404), + [aux_sym_yield_expression_token1] = ACTIONS(1406), + [aux_sym_include_expression_token1] = ACTIONS(1406), + [aux_sym_include_once_expression_token1] = ACTIONS(1406), + [aux_sym_require_expression_token1] = ACTIONS(1406), + [aux_sym_require_once_expression_token1] = ACTIONS(1406), [sym_comment] = ACTIONS(5), }, [528] = { [sym_text_interpolation] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1406), - [sym_name] = ACTIONS(1408), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1406), - [aux_sym_function_static_declaration_token1] = ACTIONS(1408), - [aux_sym_global_declaration_token1] = ACTIONS(1408), - [aux_sym_namespace_definition_token1] = ACTIONS(1408), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1408), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1408), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1408), - [anon_sym_BSLASH] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [aux_sym_trait_declaration_token1] = ACTIONS(1408), - [aux_sym_interface_declaration_token1] = ACTIONS(1408), - [aux_sym_enum_declaration_token1] = ACTIONS(1408), - [aux_sym_enum_case_token1] = ACTIONS(1408), - [aux_sym_class_declaration_token1] = ACTIONS(1408), - [aux_sym_final_modifier_token1] = ACTIONS(1408), - [aux_sym_abstract_modifier_token1] = ACTIONS(1408), - [aux_sym_readonly_modifier_token1] = ACTIONS(1408), - [aux_sym_visibility_modifier_token1] = ACTIONS(1408), - [aux_sym_visibility_modifier_token2] = ACTIONS(1408), - [aux_sym_visibility_modifier_token3] = ACTIONS(1408), - [aux_sym__arrow_function_header_token1] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1406), - [aux_sym_cast_type_token1] = ACTIONS(1408), - [aux_sym_echo_statement_token1] = ACTIONS(1408), - [anon_sym_unset] = ACTIONS(1408), - [aux_sym_declare_statement_token1] = ACTIONS(1408), - [aux_sym_declare_statement_token2] = ACTIONS(1408), - [sym_float] = ACTIONS(1408), - [aux_sym_try_statement_token1] = ACTIONS(1408), - [aux_sym_goto_statement_token1] = ACTIONS(1408), - [aux_sym_continue_statement_token1] = ACTIONS(1408), - [aux_sym_break_statement_token1] = ACTIONS(1408), - [sym_integer] = ACTIONS(1408), - [aux_sym_return_statement_token1] = ACTIONS(1408), - [aux_sym_throw_expression_token1] = ACTIONS(1408), - [aux_sym_while_statement_token1] = ACTIONS(1408), - [aux_sym_while_statement_token2] = ACTIONS(1408), - [aux_sym_do_statement_token1] = ACTIONS(1408), - [aux_sym_for_statement_token1] = ACTIONS(1408), - [aux_sym_for_statement_token2] = ACTIONS(1408), - [aux_sym_foreach_statement_token1] = ACTIONS(1408), - [aux_sym_foreach_statement_token2] = ACTIONS(1408), - [aux_sym_if_statement_token1] = ACTIONS(1408), - [aux_sym_if_statement_token2] = ACTIONS(1408), - [aux_sym_else_if_clause_token1] = ACTIONS(1408), - [aux_sym_else_clause_token1] = ACTIONS(1408), - [aux_sym_match_expression_token1] = ACTIONS(1408), - [aux_sym_match_default_expression_token1] = ACTIONS(1408), - [aux_sym_switch_statement_token1] = ACTIONS(1408), - [aux_sym_switch_block_token1] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1406), - [aux_sym_clone_expression_token1] = ACTIONS(1408), - [aux_sym_print_intrinsic_token1] = ACTIONS(1408), - [aux_sym_object_creation_expression_token1] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [aux_sym__list_destructing_token1] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_self] = ACTIONS(1408), - [anon_sym_parent] = ACTIONS(1408), - [aux_sym__argument_name_token1] = ACTIONS(1408), - [aux_sym__argument_name_token2] = ACTIONS(1408), - [anon_sym_POUND_LBRACK] = ACTIONS(1406), - [anon_sym_SQUOTE] = ACTIONS(1406), - [aux_sym_encapsed_string_token1] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [aux_sym_string_token1] = ACTIONS(1406), - [anon_sym_LT_LT_LT] = ACTIONS(1406), - [anon_sym_BQUOTE] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [aux_sym_yield_expression_token1] = ACTIONS(1408), - [aux_sym_include_expression_token1] = ACTIONS(1408), - [aux_sym_include_once_expression_token1] = ACTIONS(1408), - [aux_sym_require_expression_token1] = ACTIONS(1408), - [aux_sym_require_once_expression_token1] = ACTIONS(1408), + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_name] = ACTIONS(1410), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1408), + [aux_sym_function_static_declaration_token1] = ACTIONS(1410), + [aux_sym_global_declaration_token1] = ACTIONS(1410), + [aux_sym_namespace_definition_token1] = ACTIONS(1410), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1410), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1410), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1410), + [anon_sym_BSLASH] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [aux_sym_trait_declaration_token1] = ACTIONS(1410), + [aux_sym_interface_declaration_token1] = ACTIONS(1410), + [aux_sym_enum_declaration_token1] = ACTIONS(1410), + [aux_sym_enum_case_token1] = ACTIONS(1410), + [aux_sym_class_declaration_token1] = ACTIONS(1410), + [aux_sym_final_modifier_token1] = ACTIONS(1410), + [aux_sym_abstract_modifier_token1] = ACTIONS(1410), + [aux_sym_readonly_modifier_token1] = ACTIONS(1410), + [aux_sym_visibility_modifier_token1] = ACTIONS(1410), + [aux_sym_visibility_modifier_token2] = ACTIONS(1410), + [aux_sym_visibility_modifier_token3] = ACTIONS(1410), + [aux_sym__arrow_function_header_token1] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1408), + [aux_sym_cast_type_token1] = ACTIONS(1410), + [aux_sym_echo_statement_token1] = ACTIONS(1410), + [anon_sym_unset] = ACTIONS(1410), + [aux_sym_declare_statement_token1] = ACTIONS(1410), + [aux_sym_declare_statement_token2] = ACTIONS(1410), + [sym_float] = ACTIONS(1410), + [aux_sym_try_statement_token1] = ACTIONS(1410), + [aux_sym_goto_statement_token1] = ACTIONS(1410), + [aux_sym_continue_statement_token1] = ACTIONS(1410), + [aux_sym_break_statement_token1] = ACTIONS(1410), + [sym_integer] = ACTIONS(1410), + [aux_sym_return_statement_token1] = ACTIONS(1410), + [aux_sym_throw_expression_token1] = ACTIONS(1410), + [aux_sym_while_statement_token1] = ACTIONS(1410), + [aux_sym_while_statement_token2] = ACTIONS(1410), + [aux_sym_do_statement_token1] = ACTIONS(1410), + [aux_sym_for_statement_token1] = ACTIONS(1410), + [aux_sym_for_statement_token2] = ACTIONS(1410), + [aux_sym_foreach_statement_token1] = ACTIONS(1410), + [aux_sym_foreach_statement_token2] = ACTIONS(1410), + [aux_sym_if_statement_token1] = ACTIONS(1410), + [aux_sym_if_statement_token2] = ACTIONS(1410), + [aux_sym_else_if_clause_token1] = ACTIONS(1410), + [aux_sym_else_clause_token1] = ACTIONS(1410), + [aux_sym_match_expression_token1] = ACTIONS(1410), + [aux_sym_match_default_expression_token1] = ACTIONS(1410), + [aux_sym_switch_statement_token1] = ACTIONS(1410), + [aux_sym_switch_block_token1] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_AT] = ACTIONS(1408), + [aux_sym_clone_expression_token1] = ACTIONS(1410), + [aux_sym_print_intrinsic_token1] = ACTIONS(1410), + [aux_sym_object_creation_expression_token1] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [aux_sym__list_destructing_token1] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_self] = ACTIONS(1410), + [anon_sym_parent] = ACTIONS(1410), + [aux_sym__argument_name_token1] = ACTIONS(1410), + [aux_sym__argument_name_token2] = ACTIONS(1410), + [anon_sym_POUND_LBRACK] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [aux_sym_encapsed_string_token1] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [aux_sym_string_token1] = ACTIONS(1408), + [anon_sym_LT_LT_LT] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1408), + [aux_sym_yield_expression_token1] = ACTIONS(1410), + [aux_sym_include_expression_token1] = ACTIONS(1410), + [aux_sym_include_once_expression_token1] = ACTIONS(1410), + [aux_sym_require_expression_token1] = ACTIONS(1410), + [aux_sym_require_once_expression_token1] = ACTIONS(1410), [sym_comment] = ACTIONS(5), }, [529] = { @@ -74117,2043 +74074,2043 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_include_once_expression] = STATE(906), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(667), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [aux_sym_clone_expression_token1] = ACTIONS(679), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(689), - [aux_sym_include_once_expression_token1] = ACTIONS(691), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(669), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(677), + [aux_sym_clone_expression_token1] = ACTIONS(681), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_include_expression_token1] = ACTIONS(691), + [aux_sym_include_once_expression_token1] = ACTIONS(693), [sym_comment] = ACTIONS(5), }, [530] = { [sym_text_interpolation] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_name] = ACTIONS(1412), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1410), - [aux_sym_function_static_declaration_token1] = ACTIONS(1412), - [aux_sym_global_declaration_token1] = ACTIONS(1412), - [aux_sym_namespace_definition_token1] = ACTIONS(1412), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1412), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1412), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1412), - [anon_sym_BSLASH] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [aux_sym_trait_declaration_token1] = ACTIONS(1412), - [aux_sym_interface_declaration_token1] = ACTIONS(1412), - [aux_sym_enum_declaration_token1] = ACTIONS(1412), - [aux_sym_enum_case_token1] = ACTIONS(1412), - [aux_sym_class_declaration_token1] = ACTIONS(1412), - [aux_sym_final_modifier_token1] = ACTIONS(1412), - [aux_sym_abstract_modifier_token1] = ACTIONS(1412), - [aux_sym_readonly_modifier_token1] = ACTIONS(1412), - [aux_sym_visibility_modifier_token1] = ACTIONS(1412), - [aux_sym_visibility_modifier_token2] = ACTIONS(1412), - [aux_sym_visibility_modifier_token3] = ACTIONS(1412), - [aux_sym__arrow_function_header_token1] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1410), - [aux_sym_cast_type_token1] = ACTIONS(1412), - [aux_sym_echo_statement_token1] = ACTIONS(1412), - [anon_sym_unset] = ACTIONS(1412), - [aux_sym_declare_statement_token1] = ACTIONS(1412), - [aux_sym_declare_statement_token2] = ACTIONS(1412), - [sym_float] = ACTIONS(1412), - [aux_sym_try_statement_token1] = ACTIONS(1412), - [aux_sym_goto_statement_token1] = ACTIONS(1412), - [aux_sym_continue_statement_token1] = ACTIONS(1412), - [aux_sym_break_statement_token1] = ACTIONS(1412), - [sym_integer] = ACTIONS(1412), - [aux_sym_return_statement_token1] = ACTIONS(1412), - [aux_sym_throw_expression_token1] = ACTIONS(1412), - [aux_sym_while_statement_token1] = ACTIONS(1412), - [aux_sym_while_statement_token2] = ACTIONS(1412), - [aux_sym_do_statement_token1] = ACTIONS(1412), - [aux_sym_for_statement_token1] = ACTIONS(1412), - [aux_sym_for_statement_token2] = ACTIONS(1412), - [aux_sym_foreach_statement_token1] = ACTIONS(1412), - [aux_sym_foreach_statement_token2] = ACTIONS(1412), - [aux_sym_if_statement_token1] = ACTIONS(1412), - [aux_sym_if_statement_token2] = ACTIONS(1412), - [aux_sym_else_if_clause_token1] = ACTIONS(1412), - [aux_sym_else_clause_token1] = ACTIONS(1412), - [aux_sym_match_expression_token1] = ACTIONS(1412), - [aux_sym_match_default_expression_token1] = ACTIONS(1412), - [aux_sym_switch_statement_token1] = ACTIONS(1412), - [aux_sym_switch_block_token1] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1410), - [aux_sym_clone_expression_token1] = ACTIONS(1412), - [aux_sym_print_intrinsic_token1] = ACTIONS(1412), - [aux_sym_object_creation_expression_token1] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [aux_sym__list_destructing_token1] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_self] = ACTIONS(1412), - [anon_sym_parent] = ACTIONS(1412), - [aux_sym__argument_name_token1] = ACTIONS(1412), - [aux_sym__argument_name_token2] = ACTIONS(1412), - [anon_sym_POUND_LBRACK] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [aux_sym_encapsed_string_token1] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [aux_sym_string_token1] = ACTIONS(1410), - [anon_sym_LT_LT_LT] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [aux_sym_yield_expression_token1] = ACTIONS(1412), - [aux_sym_include_expression_token1] = ACTIONS(1412), - [aux_sym_include_once_expression_token1] = ACTIONS(1412), - [aux_sym_require_expression_token1] = ACTIONS(1412), - [aux_sym_require_once_expression_token1] = ACTIONS(1412), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_name] = ACTIONS(1414), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1412), + [aux_sym_function_static_declaration_token1] = ACTIONS(1414), + [aux_sym_global_declaration_token1] = ACTIONS(1414), + [aux_sym_namespace_definition_token1] = ACTIONS(1414), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1414), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1414), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [aux_sym_trait_declaration_token1] = ACTIONS(1414), + [aux_sym_interface_declaration_token1] = ACTIONS(1414), + [aux_sym_enum_declaration_token1] = ACTIONS(1414), + [aux_sym_enum_case_token1] = ACTIONS(1414), + [aux_sym_class_declaration_token1] = ACTIONS(1414), + [aux_sym_final_modifier_token1] = ACTIONS(1414), + [aux_sym_abstract_modifier_token1] = ACTIONS(1414), + [aux_sym_readonly_modifier_token1] = ACTIONS(1414), + [aux_sym_visibility_modifier_token1] = ACTIONS(1414), + [aux_sym_visibility_modifier_token2] = ACTIONS(1414), + [aux_sym_visibility_modifier_token3] = ACTIONS(1414), + [aux_sym__arrow_function_header_token1] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1412), + [aux_sym_cast_type_token1] = ACTIONS(1414), + [aux_sym_echo_statement_token1] = ACTIONS(1414), + [anon_sym_unset] = ACTIONS(1414), + [aux_sym_declare_statement_token1] = ACTIONS(1414), + [aux_sym_declare_statement_token2] = ACTIONS(1414), + [sym_float] = ACTIONS(1414), + [aux_sym_try_statement_token1] = ACTIONS(1414), + [aux_sym_goto_statement_token1] = ACTIONS(1414), + [aux_sym_continue_statement_token1] = ACTIONS(1414), + [aux_sym_break_statement_token1] = ACTIONS(1414), + [sym_integer] = ACTIONS(1414), + [aux_sym_return_statement_token1] = ACTIONS(1414), + [aux_sym_throw_expression_token1] = ACTIONS(1414), + [aux_sym_while_statement_token1] = ACTIONS(1414), + [aux_sym_while_statement_token2] = ACTIONS(1414), + [aux_sym_do_statement_token1] = ACTIONS(1414), + [aux_sym_for_statement_token1] = ACTIONS(1414), + [aux_sym_for_statement_token2] = ACTIONS(1414), + [aux_sym_foreach_statement_token1] = ACTIONS(1414), + [aux_sym_foreach_statement_token2] = ACTIONS(1414), + [aux_sym_if_statement_token1] = ACTIONS(1414), + [aux_sym_if_statement_token2] = ACTIONS(1414), + [aux_sym_else_if_clause_token1] = ACTIONS(1414), + [aux_sym_else_clause_token1] = ACTIONS(1414), + [aux_sym_match_expression_token1] = ACTIONS(1414), + [aux_sym_match_default_expression_token1] = ACTIONS(1414), + [aux_sym_switch_statement_token1] = ACTIONS(1414), + [aux_sym_switch_block_token1] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1412), + [aux_sym_clone_expression_token1] = ACTIONS(1414), + [aux_sym_print_intrinsic_token1] = ACTIONS(1414), + [aux_sym_object_creation_expression_token1] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [aux_sym__list_destructing_token1] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_self] = ACTIONS(1414), + [anon_sym_parent] = ACTIONS(1414), + [aux_sym__argument_name_token1] = ACTIONS(1414), + [aux_sym__argument_name_token2] = ACTIONS(1414), + [anon_sym_POUND_LBRACK] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [aux_sym_encapsed_string_token1] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [aux_sym_string_token1] = ACTIONS(1412), + [anon_sym_LT_LT_LT] = ACTIONS(1412), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1412), + [aux_sym_yield_expression_token1] = ACTIONS(1414), + [aux_sym_include_expression_token1] = ACTIONS(1414), + [aux_sym_include_once_expression_token1] = ACTIONS(1414), + [aux_sym_require_expression_token1] = ACTIONS(1414), + [aux_sym_require_once_expression_token1] = ACTIONS(1414), [sym_comment] = ACTIONS(5), }, [531] = { [sym_text_interpolation] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_name] = ACTIONS(1416), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1414), - [aux_sym_function_static_declaration_token1] = ACTIONS(1416), - [aux_sym_global_declaration_token1] = ACTIONS(1416), - [aux_sym_namespace_definition_token1] = ACTIONS(1416), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1416), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1416), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1416), - [anon_sym_BSLASH] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [aux_sym_trait_declaration_token1] = ACTIONS(1416), - [aux_sym_interface_declaration_token1] = ACTIONS(1416), - [aux_sym_enum_declaration_token1] = ACTIONS(1416), - [aux_sym_enum_case_token1] = ACTIONS(1416), - [aux_sym_class_declaration_token1] = ACTIONS(1416), - [aux_sym_final_modifier_token1] = ACTIONS(1416), - [aux_sym_abstract_modifier_token1] = ACTIONS(1416), - [aux_sym_readonly_modifier_token1] = ACTIONS(1416), - [aux_sym_visibility_modifier_token1] = ACTIONS(1416), - [aux_sym_visibility_modifier_token2] = ACTIONS(1416), - [aux_sym_visibility_modifier_token3] = ACTIONS(1416), - [aux_sym__arrow_function_header_token1] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1414), - [aux_sym_cast_type_token1] = ACTIONS(1416), - [aux_sym_echo_statement_token1] = ACTIONS(1416), - [anon_sym_unset] = ACTIONS(1416), - [aux_sym_declare_statement_token1] = ACTIONS(1416), - [aux_sym_declare_statement_token2] = ACTIONS(1416), - [sym_float] = ACTIONS(1416), - [aux_sym_try_statement_token1] = ACTIONS(1416), - [aux_sym_goto_statement_token1] = ACTIONS(1416), - [aux_sym_continue_statement_token1] = ACTIONS(1416), - [aux_sym_break_statement_token1] = ACTIONS(1416), - [sym_integer] = ACTIONS(1416), - [aux_sym_return_statement_token1] = ACTIONS(1416), - [aux_sym_throw_expression_token1] = ACTIONS(1416), - [aux_sym_while_statement_token1] = ACTIONS(1416), - [aux_sym_while_statement_token2] = ACTIONS(1416), - [aux_sym_do_statement_token1] = ACTIONS(1416), - [aux_sym_for_statement_token1] = ACTIONS(1416), - [aux_sym_for_statement_token2] = ACTIONS(1416), - [aux_sym_foreach_statement_token1] = ACTIONS(1416), - [aux_sym_foreach_statement_token2] = ACTIONS(1416), - [aux_sym_if_statement_token1] = ACTIONS(1416), - [aux_sym_if_statement_token2] = ACTIONS(1416), - [aux_sym_else_if_clause_token1] = ACTIONS(1416), - [aux_sym_else_clause_token1] = ACTIONS(1416), - [aux_sym_match_expression_token1] = ACTIONS(1416), - [aux_sym_match_default_expression_token1] = ACTIONS(1416), - [aux_sym_switch_statement_token1] = ACTIONS(1416), - [aux_sym_switch_block_token1] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1414), - [aux_sym_clone_expression_token1] = ACTIONS(1416), - [aux_sym_print_intrinsic_token1] = ACTIONS(1416), - [aux_sym_object_creation_expression_token1] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [aux_sym__list_destructing_token1] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_self] = ACTIONS(1416), - [anon_sym_parent] = ACTIONS(1416), - [aux_sym__argument_name_token1] = ACTIONS(1416), - [aux_sym__argument_name_token2] = ACTIONS(1416), - [anon_sym_POUND_LBRACK] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [aux_sym_encapsed_string_token1] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [aux_sym_string_token1] = ACTIONS(1414), - [anon_sym_LT_LT_LT] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [aux_sym_yield_expression_token1] = ACTIONS(1416), - [aux_sym_include_expression_token1] = ACTIONS(1416), - [aux_sym_include_once_expression_token1] = ACTIONS(1416), - [aux_sym_require_expression_token1] = ACTIONS(1416), - [aux_sym_require_once_expression_token1] = ACTIONS(1416), + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_name] = ACTIONS(1418), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1416), + [aux_sym_function_static_declaration_token1] = ACTIONS(1418), + [aux_sym_global_declaration_token1] = ACTIONS(1418), + [aux_sym_namespace_definition_token1] = ACTIONS(1418), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1418), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1418), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1418), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [aux_sym_trait_declaration_token1] = ACTIONS(1418), + [aux_sym_interface_declaration_token1] = ACTIONS(1418), + [aux_sym_enum_declaration_token1] = ACTIONS(1418), + [aux_sym_enum_case_token1] = ACTIONS(1418), + [aux_sym_class_declaration_token1] = ACTIONS(1418), + [aux_sym_final_modifier_token1] = ACTIONS(1418), + [aux_sym_abstract_modifier_token1] = ACTIONS(1418), + [aux_sym_readonly_modifier_token1] = ACTIONS(1418), + [aux_sym_visibility_modifier_token1] = ACTIONS(1418), + [aux_sym_visibility_modifier_token2] = ACTIONS(1418), + [aux_sym_visibility_modifier_token3] = ACTIONS(1418), + [aux_sym__arrow_function_header_token1] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1416), + [aux_sym_cast_type_token1] = ACTIONS(1418), + [aux_sym_echo_statement_token1] = ACTIONS(1418), + [anon_sym_unset] = ACTIONS(1418), + [aux_sym_declare_statement_token1] = ACTIONS(1418), + [aux_sym_declare_statement_token2] = ACTIONS(1418), + [sym_float] = ACTIONS(1418), + [aux_sym_try_statement_token1] = ACTIONS(1418), + [aux_sym_goto_statement_token1] = ACTIONS(1418), + [aux_sym_continue_statement_token1] = ACTIONS(1418), + [aux_sym_break_statement_token1] = ACTIONS(1418), + [sym_integer] = ACTIONS(1418), + [aux_sym_return_statement_token1] = ACTIONS(1418), + [aux_sym_throw_expression_token1] = ACTIONS(1418), + [aux_sym_while_statement_token1] = ACTIONS(1418), + [aux_sym_while_statement_token2] = ACTIONS(1418), + [aux_sym_do_statement_token1] = ACTIONS(1418), + [aux_sym_for_statement_token1] = ACTIONS(1418), + [aux_sym_for_statement_token2] = ACTIONS(1418), + [aux_sym_foreach_statement_token1] = ACTIONS(1418), + [aux_sym_foreach_statement_token2] = ACTIONS(1418), + [aux_sym_if_statement_token1] = ACTIONS(1418), + [aux_sym_if_statement_token2] = ACTIONS(1418), + [aux_sym_else_if_clause_token1] = ACTIONS(1418), + [aux_sym_else_clause_token1] = ACTIONS(1418), + [aux_sym_match_expression_token1] = ACTIONS(1418), + [aux_sym_match_default_expression_token1] = ACTIONS(1418), + [aux_sym_switch_statement_token1] = ACTIONS(1418), + [aux_sym_switch_block_token1] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [aux_sym_clone_expression_token1] = ACTIONS(1418), + [aux_sym_print_intrinsic_token1] = ACTIONS(1418), + [aux_sym_object_creation_expression_token1] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [aux_sym__list_destructing_token1] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_self] = ACTIONS(1418), + [anon_sym_parent] = ACTIONS(1418), + [aux_sym__argument_name_token1] = ACTIONS(1418), + [aux_sym__argument_name_token2] = ACTIONS(1418), + [anon_sym_POUND_LBRACK] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [aux_sym_encapsed_string_token1] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [aux_sym_string_token1] = ACTIONS(1416), + [anon_sym_LT_LT_LT] = ACTIONS(1416), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1416), + [aux_sym_yield_expression_token1] = ACTIONS(1418), + [aux_sym_include_expression_token1] = ACTIONS(1418), + [aux_sym_include_once_expression_token1] = ACTIONS(1418), + [aux_sym_require_expression_token1] = ACTIONS(1418), + [aux_sym_require_once_expression_token1] = ACTIONS(1418), [sym_comment] = ACTIONS(5), }, [532] = { [sym_text_interpolation] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1418), - [sym_name] = ACTIONS(1420), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1418), - [aux_sym_function_static_declaration_token1] = ACTIONS(1420), - [aux_sym_global_declaration_token1] = ACTIONS(1420), - [aux_sym_namespace_definition_token1] = ACTIONS(1420), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1420), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1420), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1420), - [anon_sym_BSLASH] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [aux_sym_trait_declaration_token1] = ACTIONS(1420), - [aux_sym_interface_declaration_token1] = ACTIONS(1420), - [aux_sym_enum_declaration_token1] = ACTIONS(1420), - [aux_sym_enum_case_token1] = ACTIONS(1420), - [aux_sym_class_declaration_token1] = ACTIONS(1420), - [aux_sym_final_modifier_token1] = ACTIONS(1420), - [aux_sym_abstract_modifier_token1] = ACTIONS(1420), - [aux_sym_readonly_modifier_token1] = ACTIONS(1420), - [aux_sym_visibility_modifier_token1] = ACTIONS(1420), - [aux_sym_visibility_modifier_token2] = ACTIONS(1420), - [aux_sym_visibility_modifier_token3] = ACTIONS(1420), - [aux_sym__arrow_function_header_token1] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1418), - [aux_sym_cast_type_token1] = ACTIONS(1420), - [aux_sym_echo_statement_token1] = ACTIONS(1420), - [anon_sym_unset] = ACTIONS(1420), - [aux_sym_declare_statement_token1] = ACTIONS(1420), - [aux_sym_declare_statement_token2] = ACTIONS(1420), - [sym_float] = ACTIONS(1420), - [aux_sym_try_statement_token1] = ACTIONS(1420), - [aux_sym_goto_statement_token1] = ACTIONS(1420), - [aux_sym_continue_statement_token1] = ACTIONS(1420), - [aux_sym_break_statement_token1] = ACTIONS(1420), - [sym_integer] = ACTIONS(1420), - [aux_sym_return_statement_token1] = ACTIONS(1420), - [aux_sym_throw_expression_token1] = ACTIONS(1420), - [aux_sym_while_statement_token1] = ACTIONS(1420), - [aux_sym_while_statement_token2] = ACTIONS(1420), - [aux_sym_do_statement_token1] = ACTIONS(1420), - [aux_sym_for_statement_token1] = ACTIONS(1420), - [aux_sym_for_statement_token2] = ACTIONS(1420), - [aux_sym_foreach_statement_token1] = ACTIONS(1420), - [aux_sym_foreach_statement_token2] = ACTIONS(1420), - [aux_sym_if_statement_token1] = ACTIONS(1420), - [aux_sym_if_statement_token2] = ACTIONS(1420), - [aux_sym_else_if_clause_token1] = ACTIONS(1420), - [aux_sym_else_clause_token1] = ACTIONS(1420), - [aux_sym_match_expression_token1] = ACTIONS(1420), - [aux_sym_match_default_expression_token1] = ACTIONS(1420), - [aux_sym_switch_statement_token1] = ACTIONS(1420), - [aux_sym_switch_block_token1] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(1418), - [aux_sym_clone_expression_token1] = ACTIONS(1420), - [aux_sym_print_intrinsic_token1] = ACTIONS(1420), - [aux_sym_object_creation_expression_token1] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [aux_sym__list_destructing_token1] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_self] = ACTIONS(1420), - [anon_sym_parent] = ACTIONS(1420), - [aux_sym__argument_name_token1] = ACTIONS(1420), - [aux_sym__argument_name_token2] = ACTIONS(1420), - [anon_sym_POUND_LBRACK] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [aux_sym_encapsed_string_token1] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [aux_sym_string_token1] = ACTIONS(1418), - [anon_sym_LT_LT_LT] = ACTIONS(1418), - [anon_sym_BQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [aux_sym_yield_expression_token1] = ACTIONS(1420), - [aux_sym_include_expression_token1] = ACTIONS(1420), - [aux_sym_include_once_expression_token1] = ACTIONS(1420), - [aux_sym_require_expression_token1] = ACTIONS(1420), - [aux_sym_require_once_expression_token1] = ACTIONS(1420), + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_name] = ACTIONS(1422), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1420), + [aux_sym_function_static_declaration_token1] = ACTIONS(1422), + [aux_sym_global_declaration_token1] = ACTIONS(1422), + [aux_sym_namespace_definition_token1] = ACTIONS(1422), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1422), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1422), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1422), + [anon_sym_BSLASH] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [aux_sym_trait_declaration_token1] = ACTIONS(1422), + [aux_sym_interface_declaration_token1] = ACTIONS(1422), + [aux_sym_enum_declaration_token1] = ACTIONS(1422), + [aux_sym_enum_case_token1] = ACTIONS(1422), + [aux_sym_class_declaration_token1] = ACTIONS(1422), + [aux_sym_final_modifier_token1] = ACTIONS(1422), + [aux_sym_abstract_modifier_token1] = ACTIONS(1422), + [aux_sym_readonly_modifier_token1] = ACTIONS(1422), + [aux_sym_visibility_modifier_token1] = ACTIONS(1422), + [aux_sym_visibility_modifier_token2] = ACTIONS(1422), + [aux_sym_visibility_modifier_token3] = ACTIONS(1422), + [aux_sym__arrow_function_header_token1] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1420), + [aux_sym_cast_type_token1] = ACTIONS(1422), + [aux_sym_echo_statement_token1] = ACTIONS(1422), + [anon_sym_unset] = ACTIONS(1422), + [aux_sym_declare_statement_token1] = ACTIONS(1422), + [aux_sym_declare_statement_token2] = ACTIONS(1422), + [sym_float] = ACTIONS(1422), + [aux_sym_try_statement_token1] = ACTIONS(1422), + [aux_sym_goto_statement_token1] = ACTIONS(1422), + [aux_sym_continue_statement_token1] = ACTIONS(1422), + [aux_sym_break_statement_token1] = ACTIONS(1422), + [sym_integer] = ACTIONS(1422), + [aux_sym_return_statement_token1] = ACTIONS(1422), + [aux_sym_throw_expression_token1] = ACTIONS(1422), + [aux_sym_while_statement_token1] = ACTIONS(1422), + [aux_sym_while_statement_token2] = ACTIONS(1422), + [aux_sym_do_statement_token1] = ACTIONS(1422), + [aux_sym_for_statement_token1] = ACTIONS(1422), + [aux_sym_for_statement_token2] = ACTIONS(1422), + [aux_sym_foreach_statement_token1] = ACTIONS(1422), + [aux_sym_foreach_statement_token2] = ACTIONS(1422), + [aux_sym_if_statement_token1] = ACTIONS(1422), + [aux_sym_if_statement_token2] = ACTIONS(1422), + [aux_sym_else_if_clause_token1] = ACTIONS(1422), + [aux_sym_else_clause_token1] = ACTIONS(1422), + [aux_sym_match_expression_token1] = ACTIONS(1422), + [aux_sym_match_default_expression_token1] = ACTIONS(1422), + [aux_sym_switch_statement_token1] = ACTIONS(1422), + [aux_sym_switch_block_token1] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_AT] = ACTIONS(1420), + [aux_sym_clone_expression_token1] = ACTIONS(1422), + [aux_sym_print_intrinsic_token1] = ACTIONS(1422), + [aux_sym_object_creation_expression_token1] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [aux_sym__list_destructing_token1] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_self] = ACTIONS(1422), + [anon_sym_parent] = ACTIONS(1422), + [aux_sym__argument_name_token1] = ACTIONS(1422), + [aux_sym__argument_name_token2] = ACTIONS(1422), + [anon_sym_POUND_LBRACK] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [aux_sym_encapsed_string_token1] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [aux_sym_string_token1] = ACTIONS(1420), + [anon_sym_LT_LT_LT] = ACTIONS(1420), + [anon_sym_BQUOTE] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(1420), + [aux_sym_yield_expression_token1] = ACTIONS(1422), + [aux_sym_include_expression_token1] = ACTIONS(1422), + [aux_sym_include_once_expression_token1] = ACTIONS(1422), + [aux_sym_require_expression_token1] = ACTIONS(1422), + [aux_sym_require_once_expression_token1] = ACTIONS(1422), [sym_comment] = ACTIONS(5), }, [533] = { [sym_text_interpolation] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_name] = ACTIONS(1424), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1422), - [aux_sym_function_static_declaration_token1] = ACTIONS(1424), - [aux_sym_global_declaration_token1] = ACTIONS(1424), - [aux_sym_namespace_definition_token1] = ACTIONS(1424), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1424), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1424), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1424), - [anon_sym_BSLASH] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [aux_sym_trait_declaration_token1] = ACTIONS(1424), - [aux_sym_interface_declaration_token1] = ACTIONS(1424), - [aux_sym_enum_declaration_token1] = ACTIONS(1424), - [aux_sym_enum_case_token1] = ACTIONS(1424), - [aux_sym_class_declaration_token1] = ACTIONS(1424), - [aux_sym_final_modifier_token1] = ACTIONS(1424), - [aux_sym_abstract_modifier_token1] = ACTIONS(1424), - [aux_sym_readonly_modifier_token1] = ACTIONS(1424), - [aux_sym_visibility_modifier_token1] = ACTIONS(1424), - [aux_sym_visibility_modifier_token2] = ACTIONS(1424), - [aux_sym_visibility_modifier_token3] = ACTIONS(1424), - [aux_sym__arrow_function_header_token1] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1422), - [aux_sym_cast_type_token1] = ACTIONS(1424), - [aux_sym_echo_statement_token1] = ACTIONS(1424), - [anon_sym_unset] = ACTIONS(1424), - [aux_sym_declare_statement_token1] = ACTIONS(1424), - [aux_sym_declare_statement_token2] = ACTIONS(1424), - [sym_float] = ACTIONS(1424), - [aux_sym_try_statement_token1] = ACTIONS(1424), - [aux_sym_goto_statement_token1] = ACTIONS(1424), - [aux_sym_continue_statement_token1] = ACTIONS(1424), - [aux_sym_break_statement_token1] = ACTIONS(1424), - [sym_integer] = ACTIONS(1424), - [aux_sym_return_statement_token1] = ACTIONS(1424), - [aux_sym_throw_expression_token1] = ACTIONS(1424), - [aux_sym_while_statement_token1] = ACTIONS(1424), - [aux_sym_while_statement_token2] = ACTIONS(1424), - [aux_sym_do_statement_token1] = ACTIONS(1424), - [aux_sym_for_statement_token1] = ACTIONS(1424), - [aux_sym_for_statement_token2] = ACTIONS(1424), - [aux_sym_foreach_statement_token1] = ACTIONS(1424), - [aux_sym_foreach_statement_token2] = ACTIONS(1424), - [aux_sym_if_statement_token1] = ACTIONS(1424), - [aux_sym_if_statement_token2] = ACTIONS(1424), - [aux_sym_else_if_clause_token1] = ACTIONS(1424), - [aux_sym_else_clause_token1] = ACTIONS(1424), - [aux_sym_match_expression_token1] = ACTIONS(1424), - [aux_sym_match_default_expression_token1] = ACTIONS(1424), - [aux_sym_switch_statement_token1] = ACTIONS(1424), - [aux_sym_switch_block_token1] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_AT] = ACTIONS(1422), - [aux_sym_clone_expression_token1] = ACTIONS(1424), - [aux_sym_print_intrinsic_token1] = ACTIONS(1424), - [aux_sym_object_creation_expression_token1] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [aux_sym__list_destructing_token1] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_self] = ACTIONS(1424), - [anon_sym_parent] = ACTIONS(1424), - [aux_sym__argument_name_token1] = ACTIONS(1424), - [aux_sym__argument_name_token2] = ACTIONS(1424), - [anon_sym_POUND_LBRACK] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [aux_sym_encapsed_string_token1] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1422), - [anon_sym_LT_LT_LT] = ACTIONS(1422), - [anon_sym_BQUOTE] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1422), - [aux_sym_yield_expression_token1] = ACTIONS(1424), - [aux_sym_include_expression_token1] = ACTIONS(1424), - [aux_sym_include_once_expression_token1] = ACTIONS(1424), - [aux_sym_require_expression_token1] = ACTIONS(1424), - [aux_sym_require_once_expression_token1] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_name] = ACTIONS(1426), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1424), + [aux_sym_function_static_declaration_token1] = ACTIONS(1426), + [aux_sym_global_declaration_token1] = ACTIONS(1426), + [aux_sym_namespace_definition_token1] = ACTIONS(1426), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1426), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1426), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [aux_sym_trait_declaration_token1] = ACTIONS(1426), + [aux_sym_interface_declaration_token1] = ACTIONS(1426), + [aux_sym_enum_declaration_token1] = ACTIONS(1426), + [aux_sym_enum_case_token1] = ACTIONS(1426), + [aux_sym_class_declaration_token1] = ACTIONS(1426), + [aux_sym_final_modifier_token1] = ACTIONS(1426), + [aux_sym_abstract_modifier_token1] = ACTIONS(1426), + [aux_sym_readonly_modifier_token1] = ACTIONS(1426), + [aux_sym_visibility_modifier_token1] = ACTIONS(1426), + [aux_sym_visibility_modifier_token2] = ACTIONS(1426), + [aux_sym_visibility_modifier_token3] = ACTIONS(1426), + [aux_sym__arrow_function_header_token1] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1424), + [aux_sym_cast_type_token1] = ACTIONS(1426), + [aux_sym_echo_statement_token1] = ACTIONS(1426), + [anon_sym_unset] = ACTIONS(1426), + [aux_sym_declare_statement_token1] = ACTIONS(1426), + [aux_sym_declare_statement_token2] = ACTIONS(1426), + [sym_float] = ACTIONS(1426), + [aux_sym_try_statement_token1] = ACTIONS(1426), + [aux_sym_goto_statement_token1] = ACTIONS(1426), + [aux_sym_continue_statement_token1] = ACTIONS(1426), + [aux_sym_break_statement_token1] = ACTIONS(1426), + [sym_integer] = ACTIONS(1426), + [aux_sym_return_statement_token1] = ACTIONS(1426), + [aux_sym_throw_expression_token1] = ACTIONS(1426), + [aux_sym_while_statement_token1] = ACTIONS(1426), + [aux_sym_while_statement_token2] = ACTIONS(1426), + [aux_sym_do_statement_token1] = ACTIONS(1426), + [aux_sym_for_statement_token1] = ACTIONS(1426), + [aux_sym_for_statement_token2] = ACTIONS(1426), + [aux_sym_foreach_statement_token1] = ACTIONS(1426), + [aux_sym_foreach_statement_token2] = ACTIONS(1426), + [aux_sym_if_statement_token1] = ACTIONS(1426), + [aux_sym_if_statement_token2] = ACTIONS(1426), + [aux_sym_else_if_clause_token1] = ACTIONS(1426), + [aux_sym_else_clause_token1] = ACTIONS(1426), + [aux_sym_match_expression_token1] = ACTIONS(1426), + [aux_sym_match_default_expression_token1] = ACTIONS(1426), + [aux_sym_switch_statement_token1] = ACTIONS(1426), + [aux_sym_switch_block_token1] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [aux_sym_clone_expression_token1] = ACTIONS(1426), + [aux_sym_print_intrinsic_token1] = ACTIONS(1426), + [aux_sym_object_creation_expression_token1] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [aux_sym__list_destructing_token1] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_self] = ACTIONS(1426), + [anon_sym_parent] = ACTIONS(1426), + [aux_sym__argument_name_token1] = ACTIONS(1426), + [aux_sym__argument_name_token2] = ACTIONS(1426), + [anon_sym_POUND_LBRACK] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [aux_sym_encapsed_string_token1] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [aux_sym_string_token1] = ACTIONS(1424), + [anon_sym_LT_LT_LT] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [aux_sym_yield_expression_token1] = ACTIONS(1426), + [aux_sym_include_expression_token1] = ACTIONS(1426), + [aux_sym_include_once_expression_token1] = ACTIONS(1426), + [aux_sym_require_expression_token1] = ACTIONS(1426), + [aux_sym_require_once_expression_token1] = ACTIONS(1426), [sym_comment] = ACTIONS(5), }, [534] = { [sym_text_interpolation] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_name] = ACTIONS(1428), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1426), - [aux_sym_function_static_declaration_token1] = ACTIONS(1428), - [aux_sym_global_declaration_token1] = ACTIONS(1428), - [aux_sym_namespace_definition_token1] = ACTIONS(1428), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1428), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1428), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1428), - [anon_sym_BSLASH] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [aux_sym_trait_declaration_token1] = ACTIONS(1428), - [aux_sym_interface_declaration_token1] = ACTIONS(1428), - [aux_sym_enum_declaration_token1] = ACTIONS(1428), - [aux_sym_enum_case_token1] = ACTIONS(1428), - [aux_sym_class_declaration_token1] = ACTIONS(1428), - [aux_sym_final_modifier_token1] = ACTIONS(1428), - [aux_sym_abstract_modifier_token1] = ACTIONS(1428), - [aux_sym_readonly_modifier_token1] = ACTIONS(1428), - [aux_sym_visibility_modifier_token1] = ACTIONS(1428), - [aux_sym_visibility_modifier_token2] = ACTIONS(1428), - [aux_sym_visibility_modifier_token3] = ACTIONS(1428), - [aux_sym__arrow_function_header_token1] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1426), - [aux_sym_cast_type_token1] = ACTIONS(1428), - [aux_sym_echo_statement_token1] = ACTIONS(1428), - [anon_sym_unset] = ACTIONS(1428), - [aux_sym_declare_statement_token1] = ACTIONS(1428), - [aux_sym_declare_statement_token2] = ACTIONS(1428), - [sym_float] = ACTIONS(1428), - [aux_sym_try_statement_token1] = ACTIONS(1428), - [aux_sym_goto_statement_token1] = ACTIONS(1428), - [aux_sym_continue_statement_token1] = ACTIONS(1428), - [aux_sym_break_statement_token1] = ACTIONS(1428), - [sym_integer] = ACTIONS(1428), - [aux_sym_return_statement_token1] = ACTIONS(1428), - [aux_sym_throw_expression_token1] = ACTIONS(1428), - [aux_sym_while_statement_token1] = ACTIONS(1428), - [aux_sym_while_statement_token2] = ACTIONS(1428), - [aux_sym_do_statement_token1] = ACTIONS(1428), - [aux_sym_for_statement_token1] = ACTIONS(1428), - [aux_sym_for_statement_token2] = ACTIONS(1428), - [aux_sym_foreach_statement_token1] = ACTIONS(1428), - [aux_sym_foreach_statement_token2] = ACTIONS(1428), - [aux_sym_if_statement_token1] = ACTIONS(1428), - [aux_sym_if_statement_token2] = ACTIONS(1428), - [aux_sym_else_if_clause_token1] = ACTIONS(1428), - [aux_sym_else_clause_token1] = ACTIONS(1428), - [aux_sym_match_expression_token1] = ACTIONS(1428), - [aux_sym_match_default_expression_token1] = ACTIONS(1428), - [aux_sym_switch_statement_token1] = ACTIONS(1428), - [aux_sym_switch_block_token1] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1426), - [aux_sym_clone_expression_token1] = ACTIONS(1428), - [aux_sym_print_intrinsic_token1] = ACTIONS(1428), - [aux_sym_object_creation_expression_token1] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [aux_sym__list_destructing_token1] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_self] = ACTIONS(1428), - [anon_sym_parent] = ACTIONS(1428), - [aux_sym__argument_name_token1] = ACTIONS(1428), - [aux_sym__argument_name_token2] = ACTIONS(1428), - [anon_sym_POUND_LBRACK] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [aux_sym_encapsed_string_token1] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [aux_sym_string_token1] = ACTIONS(1426), - [anon_sym_LT_LT_LT] = ACTIONS(1426), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [aux_sym_yield_expression_token1] = ACTIONS(1428), - [aux_sym_include_expression_token1] = ACTIONS(1428), - [aux_sym_include_once_expression_token1] = ACTIONS(1428), - [aux_sym_require_expression_token1] = ACTIONS(1428), - [aux_sym_require_once_expression_token1] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_name] = ACTIONS(1430), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1428), + [aux_sym_function_static_declaration_token1] = ACTIONS(1430), + [aux_sym_global_declaration_token1] = ACTIONS(1430), + [aux_sym_namespace_definition_token1] = ACTIONS(1430), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1430), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1430), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1430), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [aux_sym_trait_declaration_token1] = ACTIONS(1430), + [aux_sym_interface_declaration_token1] = ACTIONS(1430), + [aux_sym_enum_declaration_token1] = ACTIONS(1430), + [aux_sym_enum_case_token1] = ACTIONS(1430), + [aux_sym_class_declaration_token1] = ACTIONS(1430), + [aux_sym_final_modifier_token1] = ACTIONS(1430), + [aux_sym_abstract_modifier_token1] = ACTIONS(1430), + [aux_sym_readonly_modifier_token1] = ACTIONS(1430), + [aux_sym_visibility_modifier_token1] = ACTIONS(1430), + [aux_sym_visibility_modifier_token2] = ACTIONS(1430), + [aux_sym_visibility_modifier_token3] = ACTIONS(1430), + [aux_sym__arrow_function_header_token1] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1428), + [aux_sym_cast_type_token1] = ACTIONS(1430), + [aux_sym_echo_statement_token1] = ACTIONS(1430), + [anon_sym_unset] = ACTIONS(1430), + [aux_sym_declare_statement_token1] = ACTIONS(1430), + [aux_sym_declare_statement_token2] = ACTIONS(1430), + [sym_float] = ACTIONS(1430), + [aux_sym_try_statement_token1] = ACTIONS(1430), + [aux_sym_goto_statement_token1] = ACTIONS(1430), + [aux_sym_continue_statement_token1] = ACTIONS(1430), + [aux_sym_break_statement_token1] = ACTIONS(1430), + [sym_integer] = ACTIONS(1430), + [aux_sym_return_statement_token1] = ACTIONS(1430), + [aux_sym_throw_expression_token1] = ACTIONS(1430), + [aux_sym_while_statement_token1] = ACTIONS(1430), + [aux_sym_while_statement_token2] = ACTIONS(1430), + [aux_sym_do_statement_token1] = ACTIONS(1430), + [aux_sym_for_statement_token1] = ACTIONS(1430), + [aux_sym_for_statement_token2] = ACTIONS(1430), + [aux_sym_foreach_statement_token1] = ACTIONS(1430), + [aux_sym_foreach_statement_token2] = ACTIONS(1430), + [aux_sym_if_statement_token1] = ACTIONS(1430), + [aux_sym_if_statement_token2] = ACTIONS(1430), + [aux_sym_else_if_clause_token1] = ACTIONS(1430), + [aux_sym_else_clause_token1] = ACTIONS(1430), + [aux_sym_match_expression_token1] = ACTIONS(1430), + [aux_sym_match_default_expression_token1] = ACTIONS(1430), + [aux_sym_switch_statement_token1] = ACTIONS(1430), + [aux_sym_switch_block_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [aux_sym_clone_expression_token1] = ACTIONS(1430), + [aux_sym_print_intrinsic_token1] = ACTIONS(1430), + [aux_sym_object_creation_expression_token1] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [aux_sym__list_destructing_token1] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_self] = ACTIONS(1430), + [anon_sym_parent] = ACTIONS(1430), + [aux_sym__argument_name_token1] = ACTIONS(1430), + [aux_sym__argument_name_token2] = ACTIONS(1430), + [anon_sym_POUND_LBRACK] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [aux_sym_encapsed_string_token1] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [aux_sym_string_token1] = ACTIONS(1428), + [anon_sym_LT_LT_LT] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [aux_sym_yield_expression_token1] = ACTIONS(1430), + [aux_sym_include_expression_token1] = ACTIONS(1430), + [aux_sym_include_once_expression_token1] = ACTIONS(1430), + [aux_sym_require_expression_token1] = ACTIONS(1430), + [aux_sym_require_once_expression_token1] = ACTIONS(1430), [sym_comment] = ACTIONS(5), }, [535] = { [sym_text_interpolation] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_name] = ACTIONS(1432), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1430), - [aux_sym_function_static_declaration_token1] = ACTIONS(1432), - [aux_sym_global_declaration_token1] = ACTIONS(1432), - [aux_sym_namespace_definition_token1] = ACTIONS(1432), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1432), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1432), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1432), - [anon_sym_BSLASH] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [aux_sym_trait_declaration_token1] = ACTIONS(1432), - [aux_sym_interface_declaration_token1] = ACTIONS(1432), - [aux_sym_enum_declaration_token1] = ACTIONS(1432), - [aux_sym_enum_case_token1] = ACTIONS(1432), - [aux_sym_class_declaration_token1] = ACTIONS(1432), - [aux_sym_final_modifier_token1] = ACTIONS(1432), - [aux_sym_abstract_modifier_token1] = ACTIONS(1432), - [aux_sym_readonly_modifier_token1] = ACTIONS(1432), - [aux_sym_visibility_modifier_token1] = ACTIONS(1432), - [aux_sym_visibility_modifier_token2] = ACTIONS(1432), - [aux_sym_visibility_modifier_token3] = ACTIONS(1432), - [aux_sym__arrow_function_header_token1] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [aux_sym_cast_type_token1] = ACTIONS(1432), - [aux_sym_echo_statement_token1] = ACTIONS(1432), - [anon_sym_unset] = ACTIONS(1432), - [aux_sym_declare_statement_token1] = ACTIONS(1432), - [aux_sym_declare_statement_token2] = ACTIONS(1432), - [sym_float] = ACTIONS(1432), - [aux_sym_try_statement_token1] = ACTIONS(1432), - [aux_sym_goto_statement_token1] = ACTIONS(1432), - [aux_sym_continue_statement_token1] = ACTIONS(1432), - [aux_sym_break_statement_token1] = ACTIONS(1432), - [sym_integer] = ACTIONS(1432), - [aux_sym_return_statement_token1] = ACTIONS(1432), - [aux_sym_throw_expression_token1] = ACTIONS(1432), - [aux_sym_while_statement_token1] = ACTIONS(1432), - [aux_sym_while_statement_token2] = ACTIONS(1432), - [aux_sym_do_statement_token1] = ACTIONS(1432), - [aux_sym_for_statement_token1] = ACTIONS(1432), - [aux_sym_for_statement_token2] = ACTIONS(1432), - [aux_sym_foreach_statement_token1] = ACTIONS(1432), - [aux_sym_foreach_statement_token2] = ACTIONS(1432), - [aux_sym_if_statement_token1] = ACTIONS(1432), - [aux_sym_if_statement_token2] = ACTIONS(1432), - [aux_sym_else_if_clause_token1] = ACTIONS(1432), - [aux_sym_else_clause_token1] = ACTIONS(1432), - [aux_sym_match_expression_token1] = ACTIONS(1432), - [aux_sym_match_default_expression_token1] = ACTIONS(1432), - [aux_sym_switch_statement_token1] = ACTIONS(1432), - [aux_sym_switch_block_token1] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_AT] = ACTIONS(1430), - [aux_sym_clone_expression_token1] = ACTIONS(1432), - [aux_sym_print_intrinsic_token1] = ACTIONS(1432), - [aux_sym_object_creation_expression_token1] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [aux_sym__list_destructing_token1] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_self] = ACTIONS(1432), - [anon_sym_parent] = ACTIONS(1432), - [aux_sym__argument_name_token1] = ACTIONS(1432), - [aux_sym__argument_name_token2] = ACTIONS(1432), - [anon_sym_POUND_LBRACK] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [aux_sym_encapsed_string_token1] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [aux_sym_string_token1] = ACTIONS(1430), - [anon_sym_LT_LT_LT] = ACTIONS(1430), - [anon_sym_BQUOTE] = ACTIONS(1430), - [anon_sym_DOLLAR] = ACTIONS(1430), - [aux_sym_yield_expression_token1] = ACTIONS(1432), - [aux_sym_include_expression_token1] = ACTIONS(1432), - [aux_sym_include_once_expression_token1] = ACTIONS(1432), - [aux_sym_require_expression_token1] = ACTIONS(1432), - [aux_sym_require_once_expression_token1] = ACTIONS(1432), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_name] = ACTIONS(1434), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1432), + [aux_sym_function_static_declaration_token1] = ACTIONS(1434), + [aux_sym_global_declaration_token1] = ACTIONS(1434), + [aux_sym_namespace_definition_token1] = ACTIONS(1434), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1434), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1434), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1434), + [anon_sym_BSLASH] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [aux_sym_trait_declaration_token1] = ACTIONS(1434), + [aux_sym_interface_declaration_token1] = ACTIONS(1434), + [aux_sym_enum_declaration_token1] = ACTIONS(1434), + [aux_sym_enum_case_token1] = ACTIONS(1434), + [aux_sym_class_declaration_token1] = ACTIONS(1434), + [aux_sym_final_modifier_token1] = ACTIONS(1434), + [aux_sym_abstract_modifier_token1] = ACTIONS(1434), + [aux_sym_readonly_modifier_token1] = ACTIONS(1434), + [aux_sym_visibility_modifier_token1] = ACTIONS(1434), + [aux_sym_visibility_modifier_token2] = ACTIONS(1434), + [aux_sym_visibility_modifier_token3] = ACTIONS(1434), + [aux_sym__arrow_function_header_token1] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1432), + [aux_sym_cast_type_token1] = ACTIONS(1434), + [aux_sym_echo_statement_token1] = ACTIONS(1434), + [anon_sym_unset] = ACTIONS(1434), + [aux_sym_declare_statement_token1] = ACTIONS(1434), + [aux_sym_declare_statement_token2] = ACTIONS(1434), + [sym_float] = ACTIONS(1434), + [aux_sym_try_statement_token1] = ACTIONS(1434), + [aux_sym_goto_statement_token1] = ACTIONS(1434), + [aux_sym_continue_statement_token1] = ACTIONS(1434), + [aux_sym_break_statement_token1] = ACTIONS(1434), + [sym_integer] = ACTIONS(1434), + [aux_sym_return_statement_token1] = ACTIONS(1434), + [aux_sym_throw_expression_token1] = ACTIONS(1434), + [aux_sym_while_statement_token1] = ACTIONS(1434), + [aux_sym_while_statement_token2] = ACTIONS(1434), + [aux_sym_do_statement_token1] = ACTIONS(1434), + [aux_sym_for_statement_token1] = ACTIONS(1434), + [aux_sym_for_statement_token2] = ACTIONS(1434), + [aux_sym_foreach_statement_token1] = ACTIONS(1434), + [aux_sym_foreach_statement_token2] = ACTIONS(1434), + [aux_sym_if_statement_token1] = ACTIONS(1434), + [aux_sym_if_statement_token2] = ACTIONS(1434), + [aux_sym_else_if_clause_token1] = ACTIONS(1434), + [aux_sym_else_clause_token1] = ACTIONS(1434), + [aux_sym_match_expression_token1] = ACTIONS(1434), + [aux_sym_match_default_expression_token1] = ACTIONS(1434), + [aux_sym_switch_statement_token1] = ACTIONS(1434), + [aux_sym_switch_block_token1] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1432), + [aux_sym_clone_expression_token1] = ACTIONS(1434), + [aux_sym_print_intrinsic_token1] = ACTIONS(1434), + [aux_sym_object_creation_expression_token1] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [aux_sym__list_destructing_token1] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_self] = ACTIONS(1434), + [anon_sym_parent] = ACTIONS(1434), + [aux_sym__argument_name_token1] = ACTIONS(1434), + [aux_sym__argument_name_token2] = ACTIONS(1434), + [anon_sym_POUND_LBRACK] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [aux_sym_encapsed_string_token1] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [aux_sym_string_token1] = ACTIONS(1432), + [anon_sym_LT_LT_LT] = ACTIONS(1432), + [anon_sym_BQUOTE] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1432), + [aux_sym_yield_expression_token1] = ACTIONS(1434), + [aux_sym_include_expression_token1] = ACTIONS(1434), + [aux_sym_include_once_expression_token1] = ACTIONS(1434), + [aux_sym_require_expression_token1] = ACTIONS(1434), + [aux_sym_require_once_expression_token1] = ACTIONS(1434), [sym_comment] = ACTIONS(5), }, [536] = { [sym_text_interpolation] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_name] = ACTIONS(1436), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1434), - [aux_sym_function_static_declaration_token1] = ACTIONS(1436), - [aux_sym_global_declaration_token1] = ACTIONS(1436), - [aux_sym_namespace_definition_token1] = ACTIONS(1436), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1436), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1436), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1436), - [anon_sym_BSLASH] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [aux_sym_trait_declaration_token1] = ACTIONS(1436), - [aux_sym_interface_declaration_token1] = ACTIONS(1436), - [aux_sym_enum_declaration_token1] = ACTIONS(1436), - [aux_sym_enum_case_token1] = ACTIONS(1436), - [aux_sym_class_declaration_token1] = ACTIONS(1436), - [aux_sym_final_modifier_token1] = ACTIONS(1436), - [aux_sym_abstract_modifier_token1] = ACTIONS(1436), - [aux_sym_readonly_modifier_token1] = ACTIONS(1436), - [aux_sym_visibility_modifier_token1] = ACTIONS(1436), - [aux_sym_visibility_modifier_token2] = ACTIONS(1436), - [aux_sym_visibility_modifier_token3] = ACTIONS(1436), - [aux_sym__arrow_function_header_token1] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1434), - [aux_sym_cast_type_token1] = ACTIONS(1436), - [aux_sym_echo_statement_token1] = ACTIONS(1436), - [anon_sym_unset] = ACTIONS(1436), - [aux_sym_declare_statement_token1] = ACTIONS(1436), - [aux_sym_declare_statement_token2] = ACTIONS(1436), - [sym_float] = ACTIONS(1436), - [aux_sym_try_statement_token1] = ACTIONS(1436), - [aux_sym_goto_statement_token1] = ACTIONS(1436), - [aux_sym_continue_statement_token1] = ACTIONS(1436), - [aux_sym_break_statement_token1] = ACTIONS(1436), - [sym_integer] = ACTIONS(1436), - [aux_sym_return_statement_token1] = ACTIONS(1436), - [aux_sym_throw_expression_token1] = ACTIONS(1436), - [aux_sym_while_statement_token1] = ACTIONS(1436), - [aux_sym_while_statement_token2] = ACTIONS(1436), - [aux_sym_do_statement_token1] = ACTIONS(1436), - [aux_sym_for_statement_token1] = ACTIONS(1436), - [aux_sym_for_statement_token2] = ACTIONS(1436), - [aux_sym_foreach_statement_token1] = ACTIONS(1436), - [aux_sym_foreach_statement_token2] = ACTIONS(1436), - [aux_sym_if_statement_token1] = ACTIONS(1436), - [aux_sym_if_statement_token2] = ACTIONS(1436), - [aux_sym_else_if_clause_token1] = ACTIONS(1436), - [aux_sym_else_clause_token1] = ACTIONS(1436), - [aux_sym_match_expression_token1] = ACTIONS(1436), - [aux_sym_match_default_expression_token1] = ACTIONS(1436), - [aux_sym_switch_statement_token1] = ACTIONS(1436), - [aux_sym_switch_block_token1] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_AT] = ACTIONS(1434), - [aux_sym_clone_expression_token1] = ACTIONS(1436), - [aux_sym_print_intrinsic_token1] = ACTIONS(1436), - [aux_sym_object_creation_expression_token1] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [aux_sym__list_destructing_token1] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_self] = ACTIONS(1436), - [anon_sym_parent] = ACTIONS(1436), - [aux_sym__argument_name_token1] = ACTIONS(1436), - [aux_sym__argument_name_token2] = ACTIONS(1436), - [anon_sym_POUND_LBRACK] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [aux_sym_encapsed_string_token1] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [aux_sym_string_token1] = ACTIONS(1434), - [anon_sym_LT_LT_LT] = ACTIONS(1434), - [anon_sym_BQUOTE] = ACTIONS(1434), - [anon_sym_DOLLAR] = ACTIONS(1434), - [aux_sym_yield_expression_token1] = ACTIONS(1436), - [aux_sym_include_expression_token1] = ACTIONS(1436), - [aux_sym_include_once_expression_token1] = ACTIONS(1436), - [aux_sym_require_expression_token1] = ACTIONS(1436), - [aux_sym_require_once_expression_token1] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_name] = ACTIONS(1438), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1436), + [aux_sym_function_static_declaration_token1] = ACTIONS(1438), + [aux_sym_global_declaration_token1] = ACTIONS(1438), + [aux_sym_namespace_definition_token1] = ACTIONS(1438), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1438), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1438), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [aux_sym_trait_declaration_token1] = ACTIONS(1438), + [aux_sym_interface_declaration_token1] = ACTIONS(1438), + [aux_sym_enum_declaration_token1] = ACTIONS(1438), + [aux_sym_enum_case_token1] = ACTIONS(1438), + [aux_sym_class_declaration_token1] = ACTIONS(1438), + [aux_sym_final_modifier_token1] = ACTIONS(1438), + [aux_sym_abstract_modifier_token1] = ACTIONS(1438), + [aux_sym_readonly_modifier_token1] = ACTIONS(1438), + [aux_sym_visibility_modifier_token1] = ACTIONS(1438), + [aux_sym_visibility_modifier_token2] = ACTIONS(1438), + [aux_sym_visibility_modifier_token3] = ACTIONS(1438), + [aux_sym__arrow_function_header_token1] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1436), + [aux_sym_cast_type_token1] = ACTIONS(1438), + [aux_sym_echo_statement_token1] = ACTIONS(1438), + [anon_sym_unset] = ACTIONS(1438), + [aux_sym_declare_statement_token1] = ACTIONS(1438), + [aux_sym_declare_statement_token2] = ACTIONS(1438), + [sym_float] = ACTIONS(1438), + [aux_sym_try_statement_token1] = ACTIONS(1438), + [aux_sym_goto_statement_token1] = ACTIONS(1438), + [aux_sym_continue_statement_token1] = ACTIONS(1438), + [aux_sym_break_statement_token1] = ACTIONS(1438), + [sym_integer] = ACTIONS(1438), + [aux_sym_return_statement_token1] = ACTIONS(1438), + [aux_sym_throw_expression_token1] = ACTIONS(1438), + [aux_sym_while_statement_token1] = ACTIONS(1438), + [aux_sym_while_statement_token2] = ACTIONS(1438), + [aux_sym_do_statement_token1] = ACTIONS(1438), + [aux_sym_for_statement_token1] = ACTIONS(1438), + [aux_sym_for_statement_token2] = ACTIONS(1438), + [aux_sym_foreach_statement_token1] = ACTIONS(1438), + [aux_sym_foreach_statement_token2] = ACTIONS(1438), + [aux_sym_if_statement_token1] = ACTIONS(1438), + [aux_sym_if_statement_token2] = ACTIONS(1438), + [aux_sym_else_if_clause_token1] = ACTIONS(1438), + [aux_sym_else_clause_token1] = ACTIONS(1438), + [aux_sym_match_expression_token1] = ACTIONS(1438), + [aux_sym_match_default_expression_token1] = ACTIONS(1438), + [aux_sym_switch_statement_token1] = ACTIONS(1438), + [aux_sym_switch_block_token1] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1436), + [aux_sym_clone_expression_token1] = ACTIONS(1438), + [aux_sym_print_intrinsic_token1] = ACTIONS(1438), + [aux_sym_object_creation_expression_token1] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [aux_sym__list_destructing_token1] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_self] = ACTIONS(1438), + [anon_sym_parent] = ACTIONS(1438), + [aux_sym__argument_name_token1] = ACTIONS(1438), + [aux_sym__argument_name_token2] = ACTIONS(1438), + [anon_sym_POUND_LBRACK] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [aux_sym_encapsed_string_token1] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [aux_sym_string_token1] = ACTIONS(1436), + [anon_sym_LT_LT_LT] = ACTIONS(1436), + [anon_sym_BQUOTE] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1436), + [aux_sym_yield_expression_token1] = ACTIONS(1438), + [aux_sym_include_expression_token1] = ACTIONS(1438), + [aux_sym_include_once_expression_token1] = ACTIONS(1438), + [aux_sym_require_expression_token1] = ACTIONS(1438), + [aux_sym_require_once_expression_token1] = ACTIONS(1438), [sym_comment] = ACTIONS(5), }, [537] = { [sym_text_interpolation] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_name] = ACTIONS(1440), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1438), - [aux_sym_function_static_declaration_token1] = ACTIONS(1440), - [aux_sym_global_declaration_token1] = ACTIONS(1440), - [aux_sym_namespace_definition_token1] = ACTIONS(1440), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1440), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1440), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1440), - [anon_sym_BSLASH] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [aux_sym_trait_declaration_token1] = ACTIONS(1440), - [aux_sym_interface_declaration_token1] = ACTIONS(1440), - [aux_sym_enum_declaration_token1] = ACTIONS(1440), - [aux_sym_enum_case_token1] = ACTIONS(1440), - [aux_sym_class_declaration_token1] = ACTIONS(1440), - [aux_sym_final_modifier_token1] = ACTIONS(1440), - [aux_sym_abstract_modifier_token1] = ACTIONS(1440), - [aux_sym_readonly_modifier_token1] = ACTIONS(1440), - [aux_sym_visibility_modifier_token1] = ACTIONS(1440), - [aux_sym_visibility_modifier_token2] = ACTIONS(1440), - [aux_sym_visibility_modifier_token3] = ACTIONS(1440), - [aux_sym__arrow_function_header_token1] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1438), - [aux_sym_cast_type_token1] = ACTIONS(1440), - [aux_sym_echo_statement_token1] = ACTIONS(1440), - [anon_sym_unset] = ACTIONS(1440), - [aux_sym_declare_statement_token1] = ACTIONS(1440), - [aux_sym_declare_statement_token2] = ACTIONS(1440), - [sym_float] = ACTIONS(1440), - [aux_sym_try_statement_token1] = ACTIONS(1440), - [aux_sym_goto_statement_token1] = ACTIONS(1440), - [aux_sym_continue_statement_token1] = ACTIONS(1440), - [aux_sym_break_statement_token1] = ACTIONS(1440), - [sym_integer] = ACTIONS(1440), - [aux_sym_return_statement_token1] = ACTIONS(1440), - [aux_sym_throw_expression_token1] = ACTIONS(1440), - [aux_sym_while_statement_token1] = ACTIONS(1440), - [aux_sym_while_statement_token2] = ACTIONS(1440), - [aux_sym_do_statement_token1] = ACTIONS(1440), - [aux_sym_for_statement_token1] = ACTIONS(1440), - [aux_sym_for_statement_token2] = ACTIONS(1440), - [aux_sym_foreach_statement_token1] = ACTIONS(1440), - [aux_sym_foreach_statement_token2] = ACTIONS(1440), - [aux_sym_if_statement_token1] = ACTIONS(1440), - [aux_sym_if_statement_token2] = ACTIONS(1440), - [aux_sym_else_if_clause_token1] = ACTIONS(1440), - [aux_sym_else_clause_token1] = ACTIONS(1440), - [aux_sym_match_expression_token1] = ACTIONS(1440), - [aux_sym_match_default_expression_token1] = ACTIONS(1440), - [aux_sym_switch_statement_token1] = ACTIONS(1440), - [aux_sym_switch_block_token1] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1438), - [aux_sym_clone_expression_token1] = ACTIONS(1440), - [aux_sym_print_intrinsic_token1] = ACTIONS(1440), - [aux_sym_object_creation_expression_token1] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [aux_sym__list_destructing_token1] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_self] = ACTIONS(1440), - [anon_sym_parent] = ACTIONS(1440), - [aux_sym__argument_name_token1] = ACTIONS(1440), - [aux_sym__argument_name_token2] = ACTIONS(1440), - [anon_sym_POUND_LBRACK] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [aux_sym_encapsed_string_token1] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [aux_sym_string_token1] = ACTIONS(1438), - [anon_sym_LT_LT_LT] = ACTIONS(1438), - [anon_sym_BQUOTE] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1438), - [aux_sym_yield_expression_token1] = ACTIONS(1440), - [aux_sym_include_expression_token1] = ACTIONS(1440), - [aux_sym_include_once_expression_token1] = ACTIONS(1440), - [aux_sym_require_expression_token1] = ACTIONS(1440), - [aux_sym_require_once_expression_token1] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_name] = ACTIONS(1442), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1440), + [aux_sym_function_static_declaration_token1] = ACTIONS(1442), + [aux_sym_global_declaration_token1] = ACTIONS(1442), + [aux_sym_namespace_definition_token1] = ACTIONS(1442), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1442), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1442), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [aux_sym_trait_declaration_token1] = ACTIONS(1442), + [aux_sym_interface_declaration_token1] = ACTIONS(1442), + [aux_sym_enum_declaration_token1] = ACTIONS(1442), + [aux_sym_enum_case_token1] = ACTIONS(1442), + [aux_sym_class_declaration_token1] = ACTIONS(1442), + [aux_sym_final_modifier_token1] = ACTIONS(1442), + [aux_sym_abstract_modifier_token1] = ACTIONS(1442), + [aux_sym_readonly_modifier_token1] = ACTIONS(1442), + [aux_sym_visibility_modifier_token1] = ACTIONS(1442), + [aux_sym_visibility_modifier_token2] = ACTIONS(1442), + [aux_sym_visibility_modifier_token3] = ACTIONS(1442), + [aux_sym__arrow_function_header_token1] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1440), + [aux_sym_cast_type_token1] = ACTIONS(1442), + [aux_sym_echo_statement_token1] = ACTIONS(1442), + [anon_sym_unset] = ACTIONS(1442), + [aux_sym_declare_statement_token1] = ACTIONS(1442), + [aux_sym_declare_statement_token2] = ACTIONS(1442), + [sym_float] = ACTIONS(1442), + [aux_sym_try_statement_token1] = ACTIONS(1442), + [aux_sym_goto_statement_token1] = ACTIONS(1442), + [aux_sym_continue_statement_token1] = ACTIONS(1442), + [aux_sym_break_statement_token1] = ACTIONS(1442), + [sym_integer] = ACTIONS(1442), + [aux_sym_return_statement_token1] = ACTIONS(1442), + [aux_sym_throw_expression_token1] = ACTIONS(1442), + [aux_sym_while_statement_token1] = ACTIONS(1442), + [aux_sym_while_statement_token2] = ACTIONS(1442), + [aux_sym_do_statement_token1] = ACTIONS(1442), + [aux_sym_for_statement_token1] = ACTIONS(1442), + [aux_sym_for_statement_token2] = ACTIONS(1442), + [aux_sym_foreach_statement_token1] = ACTIONS(1442), + [aux_sym_foreach_statement_token2] = ACTIONS(1442), + [aux_sym_if_statement_token1] = ACTIONS(1442), + [aux_sym_if_statement_token2] = ACTIONS(1442), + [aux_sym_else_if_clause_token1] = ACTIONS(1442), + [aux_sym_else_clause_token1] = ACTIONS(1442), + [aux_sym_match_expression_token1] = ACTIONS(1442), + [aux_sym_match_default_expression_token1] = ACTIONS(1442), + [aux_sym_switch_statement_token1] = ACTIONS(1442), + [aux_sym_switch_block_token1] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_AT] = ACTIONS(1440), + [aux_sym_clone_expression_token1] = ACTIONS(1442), + [aux_sym_print_intrinsic_token1] = ACTIONS(1442), + [aux_sym_object_creation_expression_token1] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [aux_sym__list_destructing_token1] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_self] = ACTIONS(1442), + [anon_sym_parent] = ACTIONS(1442), + [aux_sym__argument_name_token1] = ACTIONS(1442), + [aux_sym__argument_name_token2] = ACTIONS(1442), + [anon_sym_POUND_LBRACK] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [aux_sym_encapsed_string_token1] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [aux_sym_string_token1] = ACTIONS(1440), + [anon_sym_LT_LT_LT] = ACTIONS(1440), + [anon_sym_BQUOTE] = ACTIONS(1440), + [anon_sym_DOLLAR] = ACTIONS(1440), + [aux_sym_yield_expression_token1] = ACTIONS(1442), + [aux_sym_include_expression_token1] = ACTIONS(1442), + [aux_sym_include_once_expression_token1] = ACTIONS(1442), + [aux_sym_require_expression_token1] = ACTIONS(1442), + [aux_sym_require_once_expression_token1] = ACTIONS(1442), [sym_comment] = ACTIONS(5), }, [538] = { [sym_text_interpolation] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_name] = ACTIONS(1444), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1442), - [aux_sym_function_static_declaration_token1] = ACTIONS(1444), - [aux_sym_global_declaration_token1] = ACTIONS(1444), - [aux_sym_namespace_definition_token1] = ACTIONS(1444), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1444), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1444), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1444), - [anon_sym_BSLASH] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [aux_sym_trait_declaration_token1] = ACTIONS(1444), - [aux_sym_interface_declaration_token1] = ACTIONS(1444), - [aux_sym_enum_declaration_token1] = ACTIONS(1444), - [aux_sym_enum_case_token1] = ACTIONS(1444), - [aux_sym_class_declaration_token1] = ACTIONS(1444), - [aux_sym_final_modifier_token1] = ACTIONS(1444), - [aux_sym_abstract_modifier_token1] = ACTIONS(1444), - [aux_sym_readonly_modifier_token1] = ACTIONS(1444), - [aux_sym_visibility_modifier_token1] = ACTIONS(1444), - [aux_sym_visibility_modifier_token2] = ACTIONS(1444), - [aux_sym_visibility_modifier_token3] = ACTIONS(1444), - [aux_sym__arrow_function_header_token1] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1442), - [aux_sym_cast_type_token1] = ACTIONS(1444), - [aux_sym_echo_statement_token1] = ACTIONS(1444), - [anon_sym_unset] = ACTIONS(1444), - [aux_sym_declare_statement_token1] = ACTIONS(1444), - [aux_sym_declare_statement_token2] = ACTIONS(1444), - [sym_float] = ACTIONS(1444), - [aux_sym_try_statement_token1] = ACTIONS(1444), - [aux_sym_goto_statement_token1] = ACTIONS(1444), - [aux_sym_continue_statement_token1] = ACTIONS(1444), - [aux_sym_break_statement_token1] = ACTIONS(1444), - [sym_integer] = ACTIONS(1444), - [aux_sym_return_statement_token1] = ACTIONS(1444), - [aux_sym_throw_expression_token1] = ACTIONS(1444), - [aux_sym_while_statement_token1] = ACTIONS(1444), - [aux_sym_while_statement_token2] = ACTIONS(1444), - [aux_sym_do_statement_token1] = ACTIONS(1444), - [aux_sym_for_statement_token1] = ACTIONS(1444), - [aux_sym_for_statement_token2] = ACTIONS(1444), - [aux_sym_foreach_statement_token1] = ACTIONS(1444), - [aux_sym_foreach_statement_token2] = ACTIONS(1444), - [aux_sym_if_statement_token1] = ACTIONS(1444), - [aux_sym_if_statement_token2] = ACTIONS(1444), - [aux_sym_else_if_clause_token1] = ACTIONS(1444), - [aux_sym_else_clause_token1] = ACTIONS(1444), - [aux_sym_match_expression_token1] = ACTIONS(1444), - [aux_sym_match_default_expression_token1] = ACTIONS(1444), - [aux_sym_switch_statement_token1] = ACTIONS(1444), - [aux_sym_switch_block_token1] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(1442), - [aux_sym_clone_expression_token1] = ACTIONS(1444), - [aux_sym_print_intrinsic_token1] = ACTIONS(1444), - [aux_sym_object_creation_expression_token1] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [aux_sym__list_destructing_token1] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_self] = ACTIONS(1444), - [anon_sym_parent] = ACTIONS(1444), - [aux_sym__argument_name_token1] = ACTIONS(1444), - [aux_sym__argument_name_token2] = ACTIONS(1444), - [anon_sym_POUND_LBRACK] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [aux_sym_encapsed_string_token1] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [aux_sym_string_token1] = ACTIONS(1442), - [anon_sym_LT_LT_LT] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1442), - [anon_sym_DOLLAR] = ACTIONS(1442), - [aux_sym_yield_expression_token1] = ACTIONS(1444), - [aux_sym_include_expression_token1] = ACTIONS(1444), - [aux_sym_include_once_expression_token1] = ACTIONS(1444), - [aux_sym_require_expression_token1] = ACTIONS(1444), - [aux_sym_require_once_expression_token1] = ACTIONS(1444), + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_name] = ACTIONS(1446), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1444), + [aux_sym_function_static_declaration_token1] = ACTIONS(1446), + [aux_sym_global_declaration_token1] = ACTIONS(1446), + [aux_sym_namespace_definition_token1] = ACTIONS(1446), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1446), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1446), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1446), + [anon_sym_BSLASH] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [aux_sym_trait_declaration_token1] = ACTIONS(1446), + [aux_sym_interface_declaration_token1] = ACTIONS(1446), + [aux_sym_enum_declaration_token1] = ACTIONS(1446), + [aux_sym_enum_case_token1] = ACTIONS(1446), + [aux_sym_class_declaration_token1] = ACTIONS(1446), + [aux_sym_final_modifier_token1] = ACTIONS(1446), + [aux_sym_abstract_modifier_token1] = ACTIONS(1446), + [aux_sym_readonly_modifier_token1] = ACTIONS(1446), + [aux_sym_visibility_modifier_token1] = ACTIONS(1446), + [aux_sym_visibility_modifier_token2] = ACTIONS(1446), + [aux_sym_visibility_modifier_token3] = ACTIONS(1446), + [aux_sym__arrow_function_header_token1] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1444), + [aux_sym_cast_type_token1] = ACTIONS(1446), + [aux_sym_echo_statement_token1] = ACTIONS(1446), + [anon_sym_unset] = ACTIONS(1446), + [aux_sym_declare_statement_token1] = ACTIONS(1446), + [aux_sym_declare_statement_token2] = ACTIONS(1446), + [sym_float] = ACTIONS(1446), + [aux_sym_try_statement_token1] = ACTIONS(1446), + [aux_sym_goto_statement_token1] = ACTIONS(1446), + [aux_sym_continue_statement_token1] = ACTIONS(1446), + [aux_sym_break_statement_token1] = ACTIONS(1446), + [sym_integer] = ACTIONS(1446), + [aux_sym_return_statement_token1] = ACTIONS(1446), + [aux_sym_throw_expression_token1] = ACTIONS(1446), + [aux_sym_while_statement_token1] = ACTIONS(1446), + [aux_sym_while_statement_token2] = ACTIONS(1446), + [aux_sym_do_statement_token1] = ACTIONS(1446), + [aux_sym_for_statement_token1] = ACTIONS(1446), + [aux_sym_for_statement_token2] = ACTIONS(1446), + [aux_sym_foreach_statement_token1] = ACTIONS(1446), + [aux_sym_foreach_statement_token2] = ACTIONS(1446), + [aux_sym_if_statement_token1] = ACTIONS(1446), + [aux_sym_if_statement_token2] = ACTIONS(1446), + [aux_sym_else_if_clause_token1] = ACTIONS(1446), + [aux_sym_else_clause_token1] = ACTIONS(1446), + [aux_sym_match_expression_token1] = ACTIONS(1446), + [aux_sym_match_default_expression_token1] = ACTIONS(1446), + [aux_sym_switch_statement_token1] = ACTIONS(1446), + [aux_sym_switch_block_token1] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [aux_sym_clone_expression_token1] = ACTIONS(1446), + [aux_sym_print_intrinsic_token1] = ACTIONS(1446), + [aux_sym_object_creation_expression_token1] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [aux_sym__list_destructing_token1] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_self] = ACTIONS(1446), + [anon_sym_parent] = ACTIONS(1446), + [aux_sym__argument_name_token1] = ACTIONS(1446), + [aux_sym__argument_name_token2] = ACTIONS(1446), + [anon_sym_POUND_LBRACK] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [aux_sym_encapsed_string_token1] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [aux_sym_string_token1] = ACTIONS(1444), + [anon_sym_LT_LT_LT] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [aux_sym_yield_expression_token1] = ACTIONS(1446), + [aux_sym_include_expression_token1] = ACTIONS(1446), + [aux_sym_include_once_expression_token1] = ACTIONS(1446), + [aux_sym_require_expression_token1] = ACTIONS(1446), + [aux_sym_require_once_expression_token1] = ACTIONS(1446), [sym_comment] = ACTIONS(5), }, [539] = { [sym_text_interpolation] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_name] = ACTIONS(1448), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1446), - [aux_sym_function_static_declaration_token1] = ACTIONS(1448), - [aux_sym_global_declaration_token1] = ACTIONS(1448), - [aux_sym_namespace_definition_token1] = ACTIONS(1448), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1448), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1448), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1448), - [anon_sym_BSLASH] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [aux_sym_trait_declaration_token1] = ACTIONS(1448), - [aux_sym_interface_declaration_token1] = ACTIONS(1448), - [aux_sym_enum_declaration_token1] = ACTIONS(1448), - [aux_sym_enum_case_token1] = ACTIONS(1448), - [aux_sym_class_declaration_token1] = ACTIONS(1448), - [aux_sym_final_modifier_token1] = ACTIONS(1448), - [aux_sym_abstract_modifier_token1] = ACTIONS(1448), - [aux_sym_readonly_modifier_token1] = ACTIONS(1448), - [aux_sym_visibility_modifier_token1] = ACTIONS(1448), - [aux_sym_visibility_modifier_token2] = ACTIONS(1448), - [aux_sym_visibility_modifier_token3] = ACTIONS(1448), - [aux_sym__arrow_function_header_token1] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1446), - [aux_sym_cast_type_token1] = ACTIONS(1448), - [aux_sym_echo_statement_token1] = ACTIONS(1448), - [anon_sym_unset] = ACTIONS(1448), - [aux_sym_declare_statement_token1] = ACTIONS(1448), - [aux_sym_declare_statement_token2] = ACTIONS(1448), - [sym_float] = ACTIONS(1448), - [aux_sym_try_statement_token1] = ACTIONS(1448), - [aux_sym_goto_statement_token1] = ACTIONS(1448), - [aux_sym_continue_statement_token1] = ACTIONS(1448), - [aux_sym_break_statement_token1] = ACTIONS(1448), - [sym_integer] = ACTIONS(1448), - [aux_sym_return_statement_token1] = ACTIONS(1448), - [aux_sym_throw_expression_token1] = ACTIONS(1448), - [aux_sym_while_statement_token1] = ACTIONS(1448), - [aux_sym_while_statement_token2] = ACTIONS(1448), - [aux_sym_do_statement_token1] = ACTIONS(1448), - [aux_sym_for_statement_token1] = ACTIONS(1448), - [aux_sym_for_statement_token2] = ACTIONS(1448), - [aux_sym_foreach_statement_token1] = ACTIONS(1448), - [aux_sym_foreach_statement_token2] = ACTIONS(1448), - [aux_sym_if_statement_token1] = ACTIONS(1448), - [aux_sym_if_statement_token2] = ACTIONS(1448), - [aux_sym_else_if_clause_token1] = ACTIONS(1448), - [aux_sym_else_clause_token1] = ACTIONS(1448), - [aux_sym_match_expression_token1] = ACTIONS(1448), - [aux_sym_match_default_expression_token1] = ACTIONS(1448), - [aux_sym_switch_statement_token1] = ACTIONS(1448), - [aux_sym_switch_block_token1] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_AT] = ACTIONS(1446), - [aux_sym_clone_expression_token1] = ACTIONS(1448), - [aux_sym_print_intrinsic_token1] = ACTIONS(1448), - [aux_sym_object_creation_expression_token1] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [aux_sym__list_destructing_token1] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_self] = ACTIONS(1448), - [anon_sym_parent] = ACTIONS(1448), - [aux_sym__argument_name_token1] = ACTIONS(1448), - [aux_sym__argument_name_token2] = ACTIONS(1448), - [anon_sym_POUND_LBRACK] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [aux_sym_encapsed_string_token1] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [aux_sym_string_token1] = ACTIONS(1446), - [anon_sym_LT_LT_LT] = ACTIONS(1446), - [anon_sym_BQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR] = ACTIONS(1446), - [aux_sym_yield_expression_token1] = ACTIONS(1448), - [aux_sym_include_expression_token1] = ACTIONS(1448), - [aux_sym_include_once_expression_token1] = ACTIONS(1448), - [aux_sym_require_expression_token1] = ACTIONS(1448), - [aux_sym_require_once_expression_token1] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_name] = ACTIONS(1450), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1448), + [aux_sym_function_static_declaration_token1] = ACTIONS(1450), + [aux_sym_global_declaration_token1] = ACTIONS(1450), + [aux_sym_namespace_definition_token1] = ACTIONS(1450), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1450), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1450), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [aux_sym_trait_declaration_token1] = ACTIONS(1450), + [aux_sym_interface_declaration_token1] = ACTIONS(1450), + [aux_sym_enum_declaration_token1] = ACTIONS(1450), + [aux_sym_enum_case_token1] = ACTIONS(1450), + [aux_sym_class_declaration_token1] = ACTIONS(1450), + [aux_sym_final_modifier_token1] = ACTIONS(1450), + [aux_sym_abstract_modifier_token1] = ACTIONS(1450), + [aux_sym_readonly_modifier_token1] = ACTIONS(1450), + [aux_sym_visibility_modifier_token1] = ACTIONS(1450), + [aux_sym_visibility_modifier_token2] = ACTIONS(1450), + [aux_sym_visibility_modifier_token3] = ACTIONS(1450), + [aux_sym__arrow_function_header_token1] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1448), + [aux_sym_cast_type_token1] = ACTIONS(1450), + [aux_sym_echo_statement_token1] = ACTIONS(1450), + [anon_sym_unset] = ACTIONS(1450), + [aux_sym_declare_statement_token1] = ACTIONS(1450), + [aux_sym_declare_statement_token2] = ACTIONS(1450), + [sym_float] = ACTIONS(1450), + [aux_sym_try_statement_token1] = ACTIONS(1450), + [aux_sym_goto_statement_token1] = ACTIONS(1450), + [aux_sym_continue_statement_token1] = ACTIONS(1450), + [aux_sym_break_statement_token1] = ACTIONS(1450), + [sym_integer] = ACTIONS(1450), + [aux_sym_return_statement_token1] = ACTIONS(1450), + [aux_sym_throw_expression_token1] = ACTIONS(1450), + [aux_sym_while_statement_token1] = ACTIONS(1450), + [aux_sym_while_statement_token2] = ACTIONS(1450), + [aux_sym_do_statement_token1] = ACTIONS(1450), + [aux_sym_for_statement_token1] = ACTIONS(1450), + [aux_sym_for_statement_token2] = ACTIONS(1450), + [aux_sym_foreach_statement_token1] = ACTIONS(1450), + [aux_sym_foreach_statement_token2] = ACTIONS(1450), + [aux_sym_if_statement_token1] = ACTIONS(1450), + [aux_sym_if_statement_token2] = ACTIONS(1450), + [aux_sym_else_if_clause_token1] = ACTIONS(1450), + [aux_sym_else_clause_token1] = ACTIONS(1450), + [aux_sym_match_expression_token1] = ACTIONS(1450), + [aux_sym_match_default_expression_token1] = ACTIONS(1450), + [aux_sym_switch_statement_token1] = ACTIONS(1450), + [aux_sym_switch_block_token1] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_AT] = ACTIONS(1448), + [aux_sym_clone_expression_token1] = ACTIONS(1450), + [aux_sym_print_intrinsic_token1] = ACTIONS(1450), + [aux_sym_object_creation_expression_token1] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [aux_sym__list_destructing_token1] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_self] = ACTIONS(1450), + [anon_sym_parent] = ACTIONS(1450), + [aux_sym__argument_name_token1] = ACTIONS(1450), + [aux_sym__argument_name_token2] = ACTIONS(1450), + [anon_sym_POUND_LBRACK] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [aux_sym_encapsed_string_token1] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [aux_sym_string_token1] = ACTIONS(1448), + [anon_sym_LT_LT_LT] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [aux_sym_yield_expression_token1] = ACTIONS(1450), + [aux_sym_include_expression_token1] = ACTIONS(1450), + [aux_sym_include_once_expression_token1] = ACTIONS(1450), + [aux_sym_require_expression_token1] = ACTIONS(1450), + [aux_sym_require_once_expression_token1] = ACTIONS(1450), [sym_comment] = ACTIONS(5), }, [540] = { [sym_text_interpolation] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_name] = ACTIONS(1452), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1450), - [aux_sym_function_static_declaration_token1] = ACTIONS(1452), - [aux_sym_global_declaration_token1] = ACTIONS(1452), - [aux_sym_namespace_definition_token1] = ACTIONS(1452), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1452), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1452), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1452), - [anon_sym_BSLASH] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [aux_sym_trait_declaration_token1] = ACTIONS(1452), - [aux_sym_interface_declaration_token1] = ACTIONS(1452), - [aux_sym_enum_declaration_token1] = ACTIONS(1452), - [aux_sym_enum_case_token1] = ACTIONS(1452), - [aux_sym_class_declaration_token1] = ACTIONS(1452), - [aux_sym_final_modifier_token1] = ACTIONS(1452), - [aux_sym_abstract_modifier_token1] = ACTIONS(1452), - [aux_sym_readonly_modifier_token1] = ACTIONS(1452), - [aux_sym_visibility_modifier_token1] = ACTIONS(1452), - [aux_sym_visibility_modifier_token2] = ACTIONS(1452), - [aux_sym_visibility_modifier_token3] = ACTIONS(1452), - [aux_sym__arrow_function_header_token1] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1450), - [aux_sym_cast_type_token1] = ACTIONS(1452), - [aux_sym_echo_statement_token1] = ACTIONS(1452), - [anon_sym_unset] = ACTIONS(1452), - [aux_sym_declare_statement_token1] = ACTIONS(1452), - [aux_sym_declare_statement_token2] = ACTIONS(1452), - [sym_float] = ACTIONS(1452), - [aux_sym_try_statement_token1] = ACTIONS(1452), - [aux_sym_goto_statement_token1] = ACTIONS(1452), - [aux_sym_continue_statement_token1] = ACTIONS(1452), - [aux_sym_break_statement_token1] = ACTIONS(1452), - [sym_integer] = ACTIONS(1452), - [aux_sym_return_statement_token1] = ACTIONS(1452), - [aux_sym_throw_expression_token1] = ACTIONS(1452), - [aux_sym_while_statement_token1] = ACTIONS(1452), - [aux_sym_while_statement_token2] = ACTIONS(1452), - [aux_sym_do_statement_token1] = ACTIONS(1452), - [aux_sym_for_statement_token1] = ACTIONS(1452), - [aux_sym_for_statement_token2] = ACTIONS(1452), - [aux_sym_foreach_statement_token1] = ACTIONS(1452), - [aux_sym_foreach_statement_token2] = ACTIONS(1452), - [aux_sym_if_statement_token1] = ACTIONS(1452), - [aux_sym_if_statement_token2] = ACTIONS(1452), - [aux_sym_else_if_clause_token1] = ACTIONS(1452), - [aux_sym_else_clause_token1] = ACTIONS(1452), - [aux_sym_match_expression_token1] = ACTIONS(1452), - [aux_sym_match_default_expression_token1] = ACTIONS(1452), - [aux_sym_switch_statement_token1] = ACTIONS(1452), - [aux_sym_switch_block_token1] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_AT] = ACTIONS(1450), - [aux_sym_clone_expression_token1] = ACTIONS(1452), - [aux_sym_print_intrinsic_token1] = ACTIONS(1452), - [aux_sym_object_creation_expression_token1] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [aux_sym__list_destructing_token1] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_self] = ACTIONS(1452), - [anon_sym_parent] = ACTIONS(1452), - [aux_sym__argument_name_token1] = ACTIONS(1452), - [aux_sym__argument_name_token2] = ACTIONS(1452), - [anon_sym_POUND_LBRACK] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [aux_sym_encapsed_string_token1] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [aux_sym_string_token1] = ACTIONS(1450), - [anon_sym_LT_LT_LT] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_DOLLAR] = ACTIONS(1450), - [aux_sym_yield_expression_token1] = ACTIONS(1452), - [aux_sym_include_expression_token1] = ACTIONS(1452), - [aux_sym_include_once_expression_token1] = ACTIONS(1452), - [aux_sym_require_expression_token1] = ACTIONS(1452), - [aux_sym_require_once_expression_token1] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_name] = ACTIONS(1454), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1452), + [aux_sym_function_static_declaration_token1] = ACTIONS(1454), + [aux_sym_global_declaration_token1] = ACTIONS(1454), + [aux_sym_namespace_definition_token1] = ACTIONS(1454), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1454), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1454), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1454), + [anon_sym_BSLASH] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [aux_sym_trait_declaration_token1] = ACTIONS(1454), + [aux_sym_interface_declaration_token1] = ACTIONS(1454), + [aux_sym_enum_declaration_token1] = ACTIONS(1454), + [aux_sym_enum_case_token1] = ACTIONS(1454), + [aux_sym_class_declaration_token1] = ACTIONS(1454), + [aux_sym_final_modifier_token1] = ACTIONS(1454), + [aux_sym_abstract_modifier_token1] = ACTIONS(1454), + [aux_sym_readonly_modifier_token1] = ACTIONS(1454), + [aux_sym_visibility_modifier_token1] = ACTIONS(1454), + [aux_sym_visibility_modifier_token2] = ACTIONS(1454), + [aux_sym_visibility_modifier_token3] = ACTIONS(1454), + [aux_sym__arrow_function_header_token1] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1452), + [aux_sym_cast_type_token1] = ACTIONS(1454), + [aux_sym_echo_statement_token1] = ACTIONS(1454), + [anon_sym_unset] = ACTIONS(1454), + [aux_sym_declare_statement_token1] = ACTIONS(1454), + [aux_sym_declare_statement_token2] = ACTIONS(1454), + [sym_float] = ACTIONS(1454), + [aux_sym_try_statement_token1] = ACTIONS(1454), + [aux_sym_goto_statement_token1] = ACTIONS(1454), + [aux_sym_continue_statement_token1] = ACTIONS(1454), + [aux_sym_break_statement_token1] = ACTIONS(1454), + [sym_integer] = ACTIONS(1454), + [aux_sym_return_statement_token1] = ACTIONS(1454), + [aux_sym_throw_expression_token1] = ACTIONS(1454), + [aux_sym_while_statement_token1] = ACTIONS(1454), + [aux_sym_while_statement_token2] = ACTIONS(1454), + [aux_sym_do_statement_token1] = ACTIONS(1454), + [aux_sym_for_statement_token1] = ACTIONS(1454), + [aux_sym_for_statement_token2] = ACTIONS(1454), + [aux_sym_foreach_statement_token1] = ACTIONS(1454), + [aux_sym_foreach_statement_token2] = ACTIONS(1454), + [aux_sym_if_statement_token1] = ACTIONS(1454), + [aux_sym_if_statement_token2] = ACTIONS(1454), + [aux_sym_else_if_clause_token1] = ACTIONS(1454), + [aux_sym_else_clause_token1] = ACTIONS(1454), + [aux_sym_match_expression_token1] = ACTIONS(1454), + [aux_sym_match_default_expression_token1] = ACTIONS(1454), + [aux_sym_switch_statement_token1] = ACTIONS(1454), + [aux_sym_switch_block_token1] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [aux_sym_clone_expression_token1] = ACTIONS(1454), + [aux_sym_print_intrinsic_token1] = ACTIONS(1454), + [aux_sym_object_creation_expression_token1] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [aux_sym__list_destructing_token1] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_self] = ACTIONS(1454), + [anon_sym_parent] = ACTIONS(1454), + [aux_sym__argument_name_token1] = ACTIONS(1454), + [aux_sym__argument_name_token2] = ACTIONS(1454), + [anon_sym_POUND_LBRACK] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [aux_sym_encapsed_string_token1] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [aux_sym_string_token1] = ACTIONS(1452), + [anon_sym_LT_LT_LT] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1452), + [aux_sym_yield_expression_token1] = ACTIONS(1454), + [aux_sym_include_expression_token1] = ACTIONS(1454), + [aux_sym_include_once_expression_token1] = ACTIONS(1454), + [aux_sym_require_expression_token1] = ACTIONS(1454), + [aux_sym_require_once_expression_token1] = ACTIONS(1454), [sym_comment] = ACTIONS(5), }, [541] = { [sym_text_interpolation] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_name] = ACTIONS(1456), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1454), - [aux_sym_function_static_declaration_token1] = ACTIONS(1456), - [aux_sym_global_declaration_token1] = ACTIONS(1456), - [aux_sym_namespace_definition_token1] = ACTIONS(1456), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1456), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1456), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1456), - [anon_sym_BSLASH] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [aux_sym_trait_declaration_token1] = ACTIONS(1456), - [aux_sym_interface_declaration_token1] = ACTIONS(1456), - [aux_sym_enum_declaration_token1] = ACTIONS(1456), - [aux_sym_enum_case_token1] = ACTIONS(1456), - [aux_sym_class_declaration_token1] = ACTIONS(1456), - [aux_sym_final_modifier_token1] = ACTIONS(1456), - [aux_sym_abstract_modifier_token1] = ACTIONS(1456), - [aux_sym_readonly_modifier_token1] = ACTIONS(1456), - [aux_sym_visibility_modifier_token1] = ACTIONS(1456), - [aux_sym_visibility_modifier_token2] = ACTIONS(1456), - [aux_sym_visibility_modifier_token3] = ACTIONS(1456), - [aux_sym__arrow_function_header_token1] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1454), - [aux_sym_cast_type_token1] = ACTIONS(1456), - [aux_sym_echo_statement_token1] = ACTIONS(1456), - [anon_sym_unset] = ACTIONS(1456), - [aux_sym_declare_statement_token1] = ACTIONS(1456), - [aux_sym_declare_statement_token2] = ACTIONS(1456), - [sym_float] = ACTIONS(1456), - [aux_sym_try_statement_token1] = ACTIONS(1456), - [aux_sym_goto_statement_token1] = ACTIONS(1456), - [aux_sym_continue_statement_token1] = ACTIONS(1456), - [aux_sym_break_statement_token1] = ACTIONS(1456), - [sym_integer] = ACTIONS(1456), - [aux_sym_return_statement_token1] = ACTIONS(1456), - [aux_sym_throw_expression_token1] = ACTIONS(1456), - [aux_sym_while_statement_token1] = ACTIONS(1456), - [aux_sym_while_statement_token2] = ACTIONS(1456), - [aux_sym_do_statement_token1] = ACTIONS(1456), - [aux_sym_for_statement_token1] = ACTIONS(1456), - [aux_sym_for_statement_token2] = ACTIONS(1456), - [aux_sym_foreach_statement_token1] = ACTIONS(1456), - [aux_sym_foreach_statement_token2] = ACTIONS(1456), - [aux_sym_if_statement_token1] = ACTIONS(1456), - [aux_sym_if_statement_token2] = ACTIONS(1456), - [aux_sym_else_if_clause_token1] = ACTIONS(1456), - [aux_sym_else_clause_token1] = ACTIONS(1456), - [aux_sym_match_expression_token1] = ACTIONS(1456), - [aux_sym_match_default_expression_token1] = ACTIONS(1456), - [aux_sym_switch_statement_token1] = ACTIONS(1456), - [aux_sym_switch_block_token1] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(1454), - [aux_sym_clone_expression_token1] = ACTIONS(1456), - [aux_sym_print_intrinsic_token1] = ACTIONS(1456), - [aux_sym_object_creation_expression_token1] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [aux_sym__list_destructing_token1] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_self] = ACTIONS(1456), - [anon_sym_parent] = ACTIONS(1456), - [aux_sym__argument_name_token1] = ACTIONS(1456), - [aux_sym__argument_name_token2] = ACTIONS(1456), - [anon_sym_POUND_LBRACK] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [aux_sym_encapsed_string_token1] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [aux_sym_string_token1] = ACTIONS(1454), - [anon_sym_LT_LT_LT] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1454), - [aux_sym_yield_expression_token1] = ACTIONS(1456), - [aux_sym_include_expression_token1] = ACTIONS(1456), - [aux_sym_include_once_expression_token1] = ACTIONS(1456), - [aux_sym_require_expression_token1] = ACTIONS(1456), - [aux_sym_require_once_expression_token1] = ACTIONS(1456), + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_name] = ACTIONS(1458), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1456), + [aux_sym_function_static_declaration_token1] = ACTIONS(1458), + [aux_sym_global_declaration_token1] = ACTIONS(1458), + [aux_sym_namespace_definition_token1] = ACTIONS(1458), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1458), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1458), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1458), + [anon_sym_BSLASH] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [aux_sym_trait_declaration_token1] = ACTIONS(1458), + [aux_sym_interface_declaration_token1] = ACTIONS(1458), + [aux_sym_enum_declaration_token1] = ACTIONS(1458), + [aux_sym_enum_case_token1] = ACTIONS(1458), + [aux_sym_class_declaration_token1] = ACTIONS(1458), + [aux_sym_final_modifier_token1] = ACTIONS(1458), + [aux_sym_abstract_modifier_token1] = ACTIONS(1458), + [aux_sym_readonly_modifier_token1] = ACTIONS(1458), + [aux_sym_visibility_modifier_token1] = ACTIONS(1458), + [aux_sym_visibility_modifier_token2] = ACTIONS(1458), + [aux_sym_visibility_modifier_token3] = ACTIONS(1458), + [aux_sym__arrow_function_header_token1] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1456), + [aux_sym_cast_type_token1] = ACTIONS(1458), + [aux_sym_echo_statement_token1] = ACTIONS(1458), + [anon_sym_unset] = ACTIONS(1458), + [aux_sym_declare_statement_token1] = ACTIONS(1458), + [aux_sym_declare_statement_token2] = ACTIONS(1458), + [sym_float] = ACTIONS(1458), + [aux_sym_try_statement_token1] = ACTIONS(1458), + [aux_sym_goto_statement_token1] = ACTIONS(1458), + [aux_sym_continue_statement_token1] = ACTIONS(1458), + [aux_sym_break_statement_token1] = ACTIONS(1458), + [sym_integer] = ACTIONS(1458), + [aux_sym_return_statement_token1] = ACTIONS(1458), + [aux_sym_throw_expression_token1] = ACTIONS(1458), + [aux_sym_while_statement_token1] = ACTIONS(1458), + [aux_sym_while_statement_token2] = ACTIONS(1458), + [aux_sym_do_statement_token1] = ACTIONS(1458), + [aux_sym_for_statement_token1] = ACTIONS(1458), + [aux_sym_for_statement_token2] = ACTIONS(1458), + [aux_sym_foreach_statement_token1] = ACTIONS(1458), + [aux_sym_foreach_statement_token2] = ACTIONS(1458), + [aux_sym_if_statement_token1] = ACTIONS(1458), + [aux_sym_if_statement_token2] = ACTIONS(1458), + [aux_sym_else_if_clause_token1] = ACTIONS(1458), + [aux_sym_else_clause_token1] = ACTIONS(1458), + [aux_sym_match_expression_token1] = ACTIONS(1458), + [aux_sym_match_default_expression_token1] = ACTIONS(1458), + [aux_sym_switch_statement_token1] = ACTIONS(1458), + [aux_sym_switch_block_token1] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1456), + [aux_sym_clone_expression_token1] = ACTIONS(1458), + [aux_sym_print_intrinsic_token1] = ACTIONS(1458), + [aux_sym_object_creation_expression_token1] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [aux_sym__list_destructing_token1] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_self] = ACTIONS(1458), + [anon_sym_parent] = ACTIONS(1458), + [aux_sym__argument_name_token1] = ACTIONS(1458), + [aux_sym__argument_name_token2] = ACTIONS(1458), + [anon_sym_POUND_LBRACK] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [aux_sym_encapsed_string_token1] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [aux_sym_string_token1] = ACTIONS(1456), + [anon_sym_LT_LT_LT] = ACTIONS(1456), + [anon_sym_BQUOTE] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1456), + [aux_sym_yield_expression_token1] = ACTIONS(1458), + [aux_sym_include_expression_token1] = ACTIONS(1458), + [aux_sym_include_once_expression_token1] = ACTIONS(1458), + [aux_sym_require_expression_token1] = ACTIONS(1458), + [aux_sym_require_once_expression_token1] = ACTIONS(1458), [sym_comment] = ACTIONS(5), }, [542] = { [sym_text_interpolation] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_name] = ACTIONS(1460), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1458), - [aux_sym_function_static_declaration_token1] = ACTIONS(1460), - [aux_sym_global_declaration_token1] = ACTIONS(1460), - [aux_sym_namespace_definition_token1] = ACTIONS(1460), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1460), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1460), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1460), - [anon_sym_BSLASH] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [aux_sym_trait_declaration_token1] = ACTIONS(1460), - [aux_sym_interface_declaration_token1] = ACTIONS(1460), - [aux_sym_enum_declaration_token1] = ACTIONS(1460), - [aux_sym_enum_case_token1] = ACTIONS(1460), - [aux_sym_class_declaration_token1] = ACTIONS(1460), - [aux_sym_final_modifier_token1] = ACTIONS(1460), - [aux_sym_abstract_modifier_token1] = ACTIONS(1460), - [aux_sym_readonly_modifier_token1] = ACTIONS(1460), - [aux_sym_visibility_modifier_token1] = ACTIONS(1460), - [aux_sym_visibility_modifier_token2] = ACTIONS(1460), - [aux_sym_visibility_modifier_token3] = ACTIONS(1460), - [aux_sym__arrow_function_header_token1] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1458), - [aux_sym_cast_type_token1] = ACTIONS(1460), - [aux_sym_echo_statement_token1] = ACTIONS(1460), - [anon_sym_unset] = ACTIONS(1460), - [aux_sym_declare_statement_token1] = ACTIONS(1460), - [aux_sym_declare_statement_token2] = ACTIONS(1460), - [sym_float] = ACTIONS(1460), - [aux_sym_try_statement_token1] = ACTIONS(1460), - [aux_sym_goto_statement_token1] = ACTIONS(1460), - [aux_sym_continue_statement_token1] = ACTIONS(1460), - [aux_sym_break_statement_token1] = ACTIONS(1460), - [sym_integer] = ACTIONS(1460), - [aux_sym_return_statement_token1] = ACTIONS(1460), - [aux_sym_throw_expression_token1] = ACTIONS(1460), - [aux_sym_while_statement_token1] = ACTIONS(1460), - [aux_sym_while_statement_token2] = ACTIONS(1460), - [aux_sym_do_statement_token1] = ACTIONS(1460), - [aux_sym_for_statement_token1] = ACTIONS(1460), - [aux_sym_for_statement_token2] = ACTIONS(1460), - [aux_sym_foreach_statement_token1] = ACTIONS(1460), - [aux_sym_foreach_statement_token2] = ACTIONS(1460), - [aux_sym_if_statement_token1] = ACTIONS(1460), - [aux_sym_if_statement_token2] = ACTIONS(1460), - [aux_sym_else_if_clause_token1] = ACTIONS(1460), - [aux_sym_else_clause_token1] = ACTIONS(1460), - [aux_sym_match_expression_token1] = ACTIONS(1460), - [aux_sym_match_default_expression_token1] = ACTIONS(1460), - [aux_sym_switch_statement_token1] = ACTIONS(1460), - [aux_sym_switch_block_token1] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1458), - [aux_sym_clone_expression_token1] = ACTIONS(1460), - [aux_sym_print_intrinsic_token1] = ACTIONS(1460), - [aux_sym_object_creation_expression_token1] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [aux_sym__list_destructing_token1] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_self] = ACTIONS(1460), - [anon_sym_parent] = ACTIONS(1460), - [aux_sym__argument_name_token1] = ACTIONS(1460), - [aux_sym__argument_name_token2] = ACTIONS(1460), - [anon_sym_POUND_LBRACK] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [aux_sym_encapsed_string_token1] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [aux_sym_string_token1] = ACTIONS(1458), - [anon_sym_LT_LT_LT] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [aux_sym_yield_expression_token1] = ACTIONS(1460), - [aux_sym_include_expression_token1] = ACTIONS(1460), - [aux_sym_include_once_expression_token1] = ACTIONS(1460), - [aux_sym_require_expression_token1] = ACTIONS(1460), - [aux_sym_require_once_expression_token1] = ACTIONS(1460), + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_name] = ACTIONS(1462), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1460), + [aux_sym_function_static_declaration_token1] = ACTIONS(1462), + [aux_sym_global_declaration_token1] = ACTIONS(1462), + [aux_sym_namespace_definition_token1] = ACTIONS(1462), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1462), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1462), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1462), + [anon_sym_BSLASH] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [aux_sym_trait_declaration_token1] = ACTIONS(1462), + [aux_sym_interface_declaration_token1] = ACTIONS(1462), + [aux_sym_enum_declaration_token1] = ACTIONS(1462), + [aux_sym_enum_case_token1] = ACTIONS(1462), + [aux_sym_class_declaration_token1] = ACTIONS(1462), + [aux_sym_final_modifier_token1] = ACTIONS(1462), + [aux_sym_abstract_modifier_token1] = ACTIONS(1462), + [aux_sym_readonly_modifier_token1] = ACTIONS(1462), + [aux_sym_visibility_modifier_token1] = ACTIONS(1462), + [aux_sym_visibility_modifier_token2] = ACTIONS(1462), + [aux_sym_visibility_modifier_token3] = ACTIONS(1462), + [aux_sym__arrow_function_header_token1] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1460), + [aux_sym_cast_type_token1] = ACTIONS(1462), + [aux_sym_echo_statement_token1] = ACTIONS(1462), + [anon_sym_unset] = ACTIONS(1462), + [aux_sym_declare_statement_token1] = ACTIONS(1462), + [aux_sym_declare_statement_token2] = ACTIONS(1462), + [sym_float] = ACTIONS(1462), + [aux_sym_try_statement_token1] = ACTIONS(1462), + [aux_sym_goto_statement_token1] = ACTIONS(1462), + [aux_sym_continue_statement_token1] = ACTIONS(1462), + [aux_sym_break_statement_token1] = ACTIONS(1462), + [sym_integer] = ACTIONS(1462), + [aux_sym_return_statement_token1] = ACTIONS(1462), + [aux_sym_throw_expression_token1] = ACTIONS(1462), + [aux_sym_while_statement_token1] = ACTIONS(1462), + [aux_sym_while_statement_token2] = ACTIONS(1462), + [aux_sym_do_statement_token1] = ACTIONS(1462), + [aux_sym_for_statement_token1] = ACTIONS(1462), + [aux_sym_for_statement_token2] = ACTIONS(1462), + [aux_sym_foreach_statement_token1] = ACTIONS(1462), + [aux_sym_foreach_statement_token2] = ACTIONS(1462), + [aux_sym_if_statement_token1] = ACTIONS(1462), + [aux_sym_if_statement_token2] = ACTIONS(1462), + [aux_sym_else_if_clause_token1] = ACTIONS(1462), + [aux_sym_else_clause_token1] = ACTIONS(1462), + [aux_sym_match_expression_token1] = ACTIONS(1462), + [aux_sym_match_default_expression_token1] = ACTIONS(1462), + [aux_sym_switch_statement_token1] = ACTIONS(1462), + [aux_sym_switch_block_token1] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(1460), + [aux_sym_clone_expression_token1] = ACTIONS(1462), + [aux_sym_print_intrinsic_token1] = ACTIONS(1462), + [aux_sym_object_creation_expression_token1] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [aux_sym__list_destructing_token1] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_self] = ACTIONS(1462), + [anon_sym_parent] = ACTIONS(1462), + [aux_sym__argument_name_token1] = ACTIONS(1462), + [aux_sym__argument_name_token2] = ACTIONS(1462), + [anon_sym_POUND_LBRACK] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [aux_sym_encapsed_string_token1] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [aux_sym_string_token1] = ACTIONS(1460), + [anon_sym_LT_LT_LT] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1460), + [aux_sym_yield_expression_token1] = ACTIONS(1462), + [aux_sym_include_expression_token1] = ACTIONS(1462), + [aux_sym_include_once_expression_token1] = ACTIONS(1462), + [aux_sym_require_expression_token1] = ACTIONS(1462), + [aux_sym_require_once_expression_token1] = ACTIONS(1462), [sym_comment] = ACTIONS(5), }, [543] = { [sym_text_interpolation] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_name] = ACTIONS(1464), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1462), - [aux_sym_function_static_declaration_token1] = ACTIONS(1464), - [aux_sym_global_declaration_token1] = ACTIONS(1464), - [aux_sym_namespace_definition_token1] = ACTIONS(1464), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1464), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1464), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1464), - [anon_sym_BSLASH] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [aux_sym_trait_declaration_token1] = ACTIONS(1464), - [aux_sym_interface_declaration_token1] = ACTIONS(1464), - [aux_sym_enum_declaration_token1] = ACTIONS(1464), - [aux_sym_enum_case_token1] = ACTIONS(1464), - [aux_sym_class_declaration_token1] = ACTIONS(1464), - [aux_sym_final_modifier_token1] = ACTIONS(1464), - [aux_sym_abstract_modifier_token1] = ACTIONS(1464), - [aux_sym_readonly_modifier_token1] = ACTIONS(1464), - [aux_sym_visibility_modifier_token1] = ACTIONS(1464), - [aux_sym_visibility_modifier_token2] = ACTIONS(1464), - [aux_sym_visibility_modifier_token3] = ACTIONS(1464), - [aux_sym__arrow_function_header_token1] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1462), - [aux_sym_cast_type_token1] = ACTIONS(1464), - [aux_sym_echo_statement_token1] = ACTIONS(1464), - [anon_sym_unset] = ACTIONS(1464), - [aux_sym_declare_statement_token1] = ACTIONS(1464), - [aux_sym_declare_statement_token2] = ACTIONS(1464), - [sym_float] = ACTIONS(1464), - [aux_sym_try_statement_token1] = ACTIONS(1464), - [aux_sym_goto_statement_token1] = ACTIONS(1464), - [aux_sym_continue_statement_token1] = ACTIONS(1464), - [aux_sym_break_statement_token1] = ACTIONS(1464), - [sym_integer] = ACTIONS(1464), - [aux_sym_return_statement_token1] = ACTIONS(1464), - [aux_sym_throw_expression_token1] = ACTIONS(1464), - [aux_sym_while_statement_token1] = ACTIONS(1464), - [aux_sym_while_statement_token2] = ACTIONS(1464), - [aux_sym_do_statement_token1] = ACTIONS(1464), - [aux_sym_for_statement_token1] = ACTIONS(1464), - [aux_sym_for_statement_token2] = ACTIONS(1464), - [aux_sym_foreach_statement_token1] = ACTIONS(1464), - [aux_sym_foreach_statement_token2] = ACTIONS(1464), - [aux_sym_if_statement_token1] = ACTIONS(1464), - [aux_sym_if_statement_token2] = ACTIONS(1464), - [aux_sym_else_if_clause_token1] = ACTIONS(1464), - [aux_sym_else_clause_token1] = ACTIONS(1464), - [aux_sym_match_expression_token1] = ACTIONS(1464), - [aux_sym_match_default_expression_token1] = ACTIONS(1464), - [aux_sym_switch_statement_token1] = ACTIONS(1464), - [aux_sym_switch_block_token1] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(1462), - [aux_sym_clone_expression_token1] = ACTIONS(1464), - [aux_sym_print_intrinsic_token1] = ACTIONS(1464), - [aux_sym_object_creation_expression_token1] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [aux_sym__list_destructing_token1] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_self] = ACTIONS(1464), - [anon_sym_parent] = ACTIONS(1464), - [aux_sym__argument_name_token1] = ACTIONS(1464), - [aux_sym__argument_name_token2] = ACTIONS(1464), - [anon_sym_POUND_LBRACK] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [aux_sym_encapsed_string_token1] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [aux_sym_string_token1] = ACTIONS(1462), - [anon_sym_LT_LT_LT] = ACTIONS(1462), - [anon_sym_BQUOTE] = ACTIONS(1462), - [anon_sym_DOLLAR] = ACTIONS(1462), - [aux_sym_yield_expression_token1] = ACTIONS(1464), - [aux_sym_include_expression_token1] = ACTIONS(1464), - [aux_sym_include_once_expression_token1] = ACTIONS(1464), - [aux_sym_require_expression_token1] = ACTIONS(1464), - [aux_sym_require_once_expression_token1] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_name] = ACTIONS(1466), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1464), + [aux_sym_function_static_declaration_token1] = ACTIONS(1466), + [aux_sym_global_declaration_token1] = ACTIONS(1466), + [aux_sym_namespace_definition_token1] = ACTIONS(1466), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1466), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1466), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1466), + [anon_sym_BSLASH] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [aux_sym_trait_declaration_token1] = ACTIONS(1466), + [aux_sym_interface_declaration_token1] = ACTIONS(1466), + [aux_sym_enum_declaration_token1] = ACTIONS(1466), + [aux_sym_enum_case_token1] = ACTIONS(1466), + [aux_sym_class_declaration_token1] = ACTIONS(1466), + [aux_sym_final_modifier_token1] = ACTIONS(1466), + [aux_sym_abstract_modifier_token1] = ACTIONS(1466), + [aux_sym_readonly_modifier_token1] = ACTIONS(1466), + [aux_sym_visibility_modifier_token1] = ACTIONS(1466), + [aux_sym_visibility_modifier_token2] = ACTIONS(1466), + [aux_sym_visibility_modifier_token3] = ACTIONS(1466), + [aux_sym__arrow_function_header_token1] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1464), + [aux_sym_cast_type_token1] = ACTIONS(1466), + [aux_sym_echo_statement_token1] = ACTIONS(1466), + [anon_sym_unset] = ACTIONS(1466), + [aux_sym_declare_statement_token1] = ACTIONS(1466), + [aux_sym_declare_statement_token2] = ACTIONS(1466), + [sym_float] = ACTIONS(1466), + [aux_sym_try_statement_token1] = ACTIONS(1466), + [aux_sym_goto_statement_token1] = ACTIONS(1466), + [aux_sym_continue_statement_token1] = ACTIONS(1466), + [aux_sym_break_statement_token1] = ACTIONS(1466), + [sym_integer] = ACTIONS(1466), + [aux_sym_return_statement_token1] = ACTIONS(1466), + [aux_sym_throw_expression_token1] = ACTIONS(1466), + [aux_sym_while_statement_token1] = ACTIONS(1466), + [aux_sym_while_statement_token2] = ACTIONS(1466), + [aux_sym_do_statement_token1] = ACTIONS(1466), + [aux_sym_for_statement_token1] = ACTIONS(1466), + [aux_sym_for_statement_token2] = ACTIONS(1466), + [aux_sym_foreach_statement_token1] = ACTIONS(1466), + [aux_sym_foreach_statement_token2] = ACTIONS(1466), + [aux_sym_if_statement_token1] = ACTIONS(1466), + [aux_sym_if_statement_token2] = ACTIONS(1466), + [aux_sym_else_if_clause_token1] = ACTIONS(1466), + [aux_sym_else_clause_token1] = ACTIONS(1466), + [aux_sym_match_expression_token1] = ACTIONS(1466), + [aux_sym_match_default_expression_token1] = ACTIONS(1466), + [aux_sym_switch_statement_token1] = ACTIONS(1466), + [aux_sym_switch_block_token1] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_AT] = ACTIONS(1464), + [aux_sym_clone_expression_token1] = ACTIONS(1466), + [aux_sym_print_intrinsic_token1] = ACTIONS(1466), + [aux_sym_object_creation_expression_token1] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [aux_sym__list_destructing_token1] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_self] = ACTIONS(1466), + [anon_sym_parent] = ACTIONS(1466), + [aux_sym__argument_name_token1] = ACTIONS(1466), + [aux_sym__argument_name_token2] = ACTIONS(1466), + [anon_sym_POUND_LBRACK] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [aux_sym_encapsed_string_token1] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1464), + [anon_sym_LT_LT_LT] = ACTIONS(1464), + [anon_sym_BQUOTE] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1464), + [aux_sym_yield_expression_token1] = ACTIONS(1466), + [aux_sym_include_expression_token1] = ACTIONS(1466), + [aux_sym_include_once_expression_token1] = ACTIONS(1466), + [aux_sym_require_expression_token1] = ACTIONS(1466), + [aux_sym_require_once_expression_token1] = ACTIONS(1466), [sym_comment] = ACTIONS(5), }, [544] = { [sym_text_interpolation] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_name] = ACTIONS(1468), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1466), - [aux_sym_function_static_declaration_token1] = ACTIONS(1468), - [aux_sym_global_declaration_token1] = ACTIONS(1468), - [aux_sym_namespace_definition_token1] = ACTIONS(1468), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1468), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1468), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1468), - [anon_sym_BSLASH] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [aux_sym_trait_declaration_token1] = ACTIONS(1468), - [aux_sym_interface_declaration_token1] = ACTIONS(1468), - [aux_sym_enum_declaration_token1] = ACTIONS(1468), - [aux_sym_enum_case_token1] = ACTIONS(1468), - [aux_sym_class_declaration_token1] = ACTIONS(1468), - [aux_sym_final_modifier_token1] = ACTIONS(1468), - [aux_sym_abstract_modifier_token1] = ACTIONS(1468), - [aux_sym_readonly_modifier_token1] = ACTIONS(1468), - [aux_sym_visibility_modifier_token1] = ACTIONS(1468), - [aux_sym_visibility_modifier_token2] = ACTIONS(1468), - [aux_sym_visibility_modifier_token3] = ACTIONS(1468), - [aux_sym__arrow_function_header_token1] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1466), - [aux_sym_cast_type_token1] = ACTIONS(1468), - [aux_sym_echo_statement_token1] = ACTIONS(1468), - [anon_sym_unset] = ACTIONS(1468), - [aux_sym_declare_statement_token1] = ACTIONS(1468), - [aux_sym_declare_statement_token2] = ACTIONS(1468), - [sym_float] = ACTIONS(1468), - [aux_sym_try_statement_token1] = ACTIONS(1468), - [aux_sym_goto_statement_token1] = ACTIONS(1468), - [aux_sym_continue_statement_token1] = ACTIONS(1468), - [aux_sym_break_statement_token1] = ACTIONS(1468), - [sym_integer] = ACTIONS(1468), - [aux_sym_return_statement_token1] = ACTIONS(1468), - [aux_sym_throw_expression_token1] = ACTIONS(1468), - [aux_sym_while_statement_token1] = ACTIONS(1468), - [aux_sym_while_statement_token2] = ACTIONS(1468), - [aux_sym_do_statement_token1] = ACTIONS(1468), - [aux_sym_for_statement_token1] = ACTIONS(1468), - [aux_sym_for_statement_token2] = ACTIONS(1468), - [aux_sym_foreach_statement_token1] = ACTIONS(1468), - [aux_sym_foreach_statement_token2] = ACTIONS(1468), - [aux_sym_if_statement_token1] = ACTIONS(1468), - [aux_sym_if_statement_token2] = ACTIONS(1468), - [aux_sym_else_if_clause_token1] = ACTIONS(1468), - [aux_sym_else_clause_token1] = ACTIONS(1468), - [aux_sym_match_expression_token1] = ACTIONS(1468), - [aux_sym_match_default_expression_token1] = ACTIONS(1468), - [aux_sym_switch_statement_token1] = ACTIONS(1468), - [aux_sym_switch_block_token1] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_AT] = ACTIONS(1466), - [aux_sym_clone_expression_token1] = ACTIONS(1468), - [aux_sym_print_intrinsic_token1] = ACTIONS(1468), - [aux_sym_object_creation_expression_token1] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [aux_sym__list_destructing_token1] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_self] = ACTIONS(1468), - [anon_sym_parent] = ACTIONS(1468), - [aux_sym__argument_name_token1] = ACTIONS(1468), - [aux_sym__argument_name_token2] = ACTIONS(1468), - [anon_sym_POUND_LBRACK] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [aux_sym_encapsed_string_token1] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [aux_sym_string_token1] = ACTIONS(1466), - [anon_sym_LT_LT_LT] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1466), - [aux_sym_yield_expression_token1] = ACTIONS(1468), - [aux_sym_include_expression_token1] = ACTIONS(1468), - [aux_sym_include_once_expression_token1] = ACTIONS(1468), - [aux_sym_require_expression_token1] = ACTIONS(1468), - [aux_sym_require_once_expression_token1] = ACTIONS(1468), + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_name] = ACTIONS(1470), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1468), + [aux_sym_function_static_declaration_token1] = ACTIONS(1470), + [aux_sym_global_declaration_token1] = ACTIONS(1470), + [aux_sym_namespace_definition_token1] = ACTIONS(1470), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1470), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1470), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1470), + [anon_sym_BSLASH] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [aux_sym_trait_declaration_token1] = ACTIONS(1470), + [aux_sym_interface_declaration_token1] = ACTIONS(1470), + [aux_sym_enum_declaration_token1] = ACTIONS(1470), + [aux_sym_enum_case_token1] = ACTIONS(1470), + [aux_sym_class_declaration_token1] = ACTIONS(1470), + [aux_sym_final_modifier_token1] = ACTIONS(1470), + [aux_sym_abstract_modifier_token1] = ACTIONS(1470), + [aux_sym_readonly_modifier_token1] = ACTIONS(1470), + [aux_sym_visibility_modifier_token1] = ACTIONS(1470), + [aux_sym_visibility_modifier_token2] = ACTIONS(1470), + [aux_sym_visibility_modifier_token3] = ACTIONS(1470), + [aux_sym__arrow_function_header_token1] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [aux_sym_cast_type_token1] = ACTIONS(1470), + [aux_sym_echo_statement_token1] = ACTIONS(1470), + [anon_sym_unset] = ACTIONS(1470), + [aux_sym_declare_statement_token1] = ACTIONS(1470), + [aux_sym_declare_statement_token2] = ACTIONS(1470), + [sym_float] = ACTIONS(1470), + [aux_sym_try_statement_token1] = ACTIONS(1470), + [aux_sym_goto_statement_token1] = ACTIONS(1470), + [aux_sym_continue_statement_token1] = ACTIONS(1470), + [aux_sym_break_statement_token1] = ACTIONS(1470), + [sym_integer] = ACTIONS(1470), + [aux_sym_return_statement_token1] = ACTIONS(1470), + [aux_sym_throw_expression_token1] = ACTIONS(1470), + [aux_sym_while_statement_token1] = ACTIONS(1470), + [aux_sym_while_statement_token2] = ACTIONS(1470), + [aux_sym_do_statement_token1] = ACTIONS(1470), + [aux_sym_for_statement_token1] = ACTIONS(1470), + [aux_sym_for_statement_token2] = ACTIONS(1470), + [aux_sym_foreach_statement_token1] = ACTIONS(1470), + [aux_sym_foreach_statement_token2] = ACTIONS(1470), + [aux_sym_if_statement_token1] = ACTIONS(1470), + [aux_sym_if_statement_token2] = ACTIONS(1470), + [aux_sym_else_if_clause_token1] = ACTIONS(1470), + [aux_sym_else_clause_token1] = ACTIONS(1470), + [aux_sym_match_expression_token1] = ACTIONS(1470), + [aux_sym_match_default_expression_token1] = ACTIONS(1470), + [aux_sym_switch_statement_token1] = ACTIONS(1470), + [aux_sym_switch_block_token1] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1468), + [aux_sym_clone_expression_token1] = ACTIONS(1470), + [aux_sym_print_intrinsic_token1] = ACTIONS(1470), + [aux_sym_object_creation_expression_token1] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [aux_sym__list_destructing_token1] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_self] = ACTIONS(1470), + [anon_sym_parent] = ACTIONS(1470), + [aux_sym__argument_name_token1] = ACTIONS(1470), + [aux_sym__argument_name_token2] = ACTIONS(1470), + [anon_sym_POUND_LBRACK] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [aux_sym_encapsed_string_token1] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [aux_sym_string_token1] = ACTIONS(1468), + [anon_sym_LT_LT_LT] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1468), + [aux_sym_yield_expression_token1] = ACTIONS(1470), + [aux_sym_include_expression_token1] = ACTIONS(1470), + [aux_sym_include_once_expression_token1] = ACTIONS(1470), + [aux_sym_require_expression_token1] = ACTIONS(1470), + [aux_sym_require_once_expression_token1] = ACTIONS(1470), [sym_comment] = ACTIONS(5), }, [545] = { [sym_text_interpolation] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_name] = ACTIONS(1472), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1470), - [aux_sym_function_static_declaration_token1] = ACTIONS(1472), - [aux_sym_global_declaration_token1] = ACTIONS(1472), - [aux_sym_namespace_definition_token1] = ACTIONS(1472), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1472), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1472), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1472), - [anon_sym_BSLASH] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [aux_sym_trait_declaration_token1] = ACTIONS(1472), - [aux_sym_interface_declaration_token1] = ACTIONS(1472), - [aux_sym_enum_declaration_token1] = ACTIONS(1472), - [aux_sym_enum_case_token1] = ACTIONS(1472), - [aux_sym_class_declaration_token1] = ACTIONS(1472), - [aux_sym_final_modifier_token1] = ACTIONS(1472), - [aux_sym_abstract_modifier_token1] = ACTIONS(1472), - [aux_sym_readonly_modifier_token1] = ACTIONS(1472), - [aux_sym_visibility_modifier_token1] = ACTIONS(1472), - [aux_sym_visibility_modifier_token2] = ACTIONS(1472), - [aux_sym_visibility_modifier_token3] = ACTIONS(1472), - [aux_sym__arrow_function_header_token1] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [aux_sym_cast_type_token1] = ACTIONS(1472), - [aux_sym_echo_statement_token1] = ACTIONS(1472), - [anon_sym_unset] = ACTIONS(1472), - [aux_sym_declare_statement_token1] = ACTIONS(1472), - [aux_sym_declare_statement_token2] = ACTIONS(1472), - [sym_float] = ACTIONS(1472), - [aux_sym_try_statement_token1] = ACTIONS(1472), - [aux_sym_goto_statement_token1] = ACTIONS(1472), - [aux_sym_continue_statement_token1] = ACTIONS(1472), - [aux_sym_break_statement_token1] = ACTIONS(1472), - [sym_integer] = ACTIONS(1472), - [aux_sym_return_statement_token1] = ACTIONS(1472), - [aux_sym_throw_expression_token1] = ACTIONS(1472), - [aux_sym_while_statement_token1] = ACTIONS(1472), - [aux_sym_while_statement_token2] = ACTIONS(1472), - [aux_sym_do_statement_token1] = ACTIONS(1472), - [aux_sym_for_statement_token1] = ACTIONS(1472), - [aux_sym_for_statement_token2] = ACTIONS(1472), - [aux_sym_foreach_statement_token1] = ACTIONS(1472), - [aux_sym_foreach_statement_token2] = ACTIONS(1472), - [aux_sym_if_statement_token1] = ACTIONS(1472), - [aux_sym_if_statement_token2] = ACTIONS(1472), - [aux_sym_else_if_clause_token1] = ACTIONS(1472), - [aux_sym_else_clause_token1] = ACTIONS(1472), - [aux_sym_match_expression_token1] = ACTIONS(1472), - [aux_sym_match_default_expression_token1] = ACTIONS(1472), - [aux_sym_switch_statement_token1] = ACTIONS(1472), - [aux_sym_switch_block_token1] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(1470), - [aux_sym_clone_expression_token1] = ACTIONS(1472), - [aux_sym_print_intrinsic_token1] = ACTIONS(1472), - [aux_sym_object_creation_expression_token1] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [aux_sym__list_destructing_token1] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_self] = ACTIONS(1472), - [anon_sym_parent] = ACTIONS(1472), - [aux_sym__argument_name_token1] = ACTIONS(1472), - [aux_sym__argument_name_token2] = ACTIONS(1472), - [anon_sym_POUND_LBRACK] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [aux_sym_encapsed_string_token1] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [aux_sym_string_token1] = ACTIONS(1470), - [anon_sym_LT_LT_LT] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [aux_sym_yield_expression_token1] = ACTIONS(1472), - [aux_sym_include_expression_token1] = ACTIONS(1472), - [aux_sym_include_once_expression_token1] = ACTIONS(1472), - [aux_sym_require_expression_token1] = ACTIONS(1472), - [aux_sym_require_once_expression_token1] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_name] = ACTIONS(1474), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1472), + [aux_sym_function_static_declaration_token1] = ACTIONS(1474), + [aux_sym_global_declaration_token1] = ACTIONS(1474), + [aux_sym_namespace_definition_token1] = ACTIONS(1474), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1474), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1474), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1474), + [anon_sym_BSLASH] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [aux_sym_trait_declaration_token1] = ACTIONS(1474), + [aux_sym_interface_declaration_token1] = ACTIONS(1474), + [aux_sym_enum_declaration_token1] = ACTIONS(1474), + [aux_sym_enum_case_token1] = ACTIONS(1474), + [aux_sym_class_declaration_token1] = ACTIONS(1474), + [aux_sym_final_modifier_token1] = ACTIONS(1474), + [aux_sym_abstract_modifier_token1] = ACTIONS(1474), + [aux_sym_readonly_modifier_token1] = ACTIONS(1474), + [aux_sym_visibility_modifier_token1] = ACTIONS(1474), + [aux_sym_visibility_modifier_token2] = ACTIONS(1474), + [aux_sym_visibility_modifier_token3] = ACTIONS(1474), + [aux_sym__arrow_function_header_token1] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1472), + [aux_sym_cast_type_token1] = ACTIONS(1474), + [aux_sym_echo_statement_token1] = ACTIONS(1474), + [anon_sym_unset] = ACTIONS(1474), + [aux_sym_declare_statement_token1] = ACTIONS(1474), + [aux_sym_declare_statement_token2] = ACTIONS(1474), + [sym_float] = ACTIONS(1474), + [aux_sym_try_statement_token1] = ACTIONS(1474), + [aux_sym_goto_statement_token1] = ACTIONS(1474), + [aux_sym_continue_statement_token1] = ACTIONS(1474), + [aux_sym_break_statement_token1] = ACTIONS(1474), + [sym_integer] = ACTIONS(1474), + [aux_sym_return_statement_token1] = ACTIONS(1474), + [aux_sym_throw_expression_token1] = ACTIONS(1474), + [aux_sym_while_statement_token1] = ACTIONS(1474), + [aux_sym_while_statement_token2] = ACTIONS(1474), + [aux_sym_do_statement_token1] = ACTIONS(1474), + [aux_sym_for_statement_token1] = ACTIONS(1474), + [aux_sym_for_statement_token2] = ACTIONS(1474), + [aux_sym_foreach_statement_token1] = ACTIONS(1474), + [aux_sym_foreach_statement_token2] = ACTIONS(1474), + [aux_sym_if_statement_token1] = ACTIONS(1474), + [aux_sym_if_statement_token2] = ACTIONS(1474), + [aux_sym_else_if_clause_token1] = ACTIONS(1474), + [aux_sym_else_clause_token1] = ACTIONS(1474), + [aux_sym_match_expression_token1] = ACTIONS(1474), + [aux_sym_match_default_expression_token1] = ACTIONS(1474), + [aux_sym_switch_statement_token1] = ACTIONS(1474), + [aux_sym_switch_block_token1] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [aux_sym_clone_expression_token1] = ACTIONS(1474), + [aux_sym_print_intrinsic_token1] = ACTIONS(1474), + [aux_sym_object_creation_expression_token1] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [aux_sym__list_destructing_token1] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_self] = ACTIONS(1474), + [anon_sym_parent] = ACTIONS(1474), + [aux_sym__argument_name_token1] = ACTIONS(1474), + [aux_sym__argument_name_token2] = ACTIONS(1474), + [anon_sym_POUND_LBRACK] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [aux_sym_encapsed_string_token1] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [aux_sym_string_token1] = ACTIONS(1472), + [anon_sym_LT_LT_LT] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1472), + [aux_sym_yield_expression_token1] = ACTIONS(1474), + [aux_sym_include_expression_token1] = ACTIONS(1474), + [aux_sym_include_once_expression_token1] = ACTIONS(1474), + [aux_sym_require_expression_token1] = ACTIONS(1474), + [aux_sym_require_once_expression_token1] = ACTIONS(1474), [sym_comment] = ACTIONS(5), }, [546] = { [sym_text_interpolation] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_name] = ACTIONS(1476), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1474), - [aux_sym_function_static_declaration_token1] = ACTIONS(1476), - [aux_sym_global_declaration_token1] = ACTIONS(1476), - [aux_sym_namespace_definition_token1] = ACTIONS(1476), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1476), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1476), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1476), - [anon_sym_BSLASH] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [aux_sym_trait_declaration_token1] = ACTIONS(1476), - [aux_sym_interface_declaration_token1] = ACTIONS(1476), - [aux_sym_enum_declaration_token1] = ACTIONS(1476), - [aux_sym_enum_case_token1] = ACTIONS(1476), - [aux_sym_class_declaration_token1] = ACTIONS(1476), - [aux_sym_final_modifier_token1] = ACTIONS(1476), - [aux_sym_abstract_modifier_token1] = ACTIONS(1476), - [aux_sym_readonly_modifier_token1] = ACTIONS(1476), - [aux_sym_visibility_modifier_token1] = ACTIONS(1476), - [aux_sym_visibility_modifier_token2] = ACTIONS(1476), - [aux_sym_visibility_modifier_token3] = ACTIONS(1476), - [aux_sym__arrow_function_header_token1] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1474), - [aux_sym_cast_type_token1] = ACTIONS(1476), - [aux_sym_echo_statement_token1] = ACTIONS(1476), - [anon_sym_unset] = ACTIONS(1476), - [aux_sym_declare_statement_token1] = ACTIONS(1476), - [aux_sym_declare_statement_token2] = ACTIONS(1476), - [sym_float] = ACTIONS(1476), - [aux_sym_try_statement_token1] = ACTIONS(1476), - [aux_sym_goto_statement_token1] = ACTIONS(1476), - [aux_sym_continue_statement_token1] = ACTIONS(1476), - [aux_sym_break_statement_token1] = ACTIONS(1476), - [sym_integer] = ACTIONS(1476), - [aux_sym_return_statement_token1] = ACTIONS(1476), - [aux_sym_throw_expression_token1] = ACTIONS(1476), - [aux_sym_while_statement_token1] = ACTIONS(1476), - [aux_sym_while_statement_token2] = ACTIONS(1476), - [aux_sym_do_statement_token1] = ACTIONS(1476), - [aux_sym_for_statement_token1] = ACTIONS(1476), - [aux_sym_for_statement_token2] = ACTIONS(1476), - [aux_sym_foreach_statement_token1] = ACTIONS(1476), - [aux_sym_foreach_statement_token2] = ACTIONS(1476), - [aux_sym_if_statement_token1] = ACTIONS(1476), - [aux_sym_if_statement_token2] = ACTIONS(1476), - [aux_sym_else_if_clause_token1] = ACTIONS(1476), - [aux_sym_else_clause_token1] = ACTIONS(1476), - [aux_sym_match_expression_token1] = ACTIONS(1476), - [aux_sym_match_default_expression_token1] = ACTIONS(1476), - [aux_sym_switch_statement_token1] = ACTIONS(1476), - [aux_sym_switch_block_token1] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_AT] = ACTIONS(1474), - [aux_sym_clone_expression_token1] = ACTIONS(1476), - [aux_sym_print_intrinsic_token1] = ACTIONS(1476), - [aux_sym_object_creation_expression_token1] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [aux_sym__list_destructing_token1] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_self] = ACTIONS(1476), - [anon_sym_parent] = ACTIONS(1476), - [aux_sym__argument_name_token1] = ACTIONS(1476), - [aux_sym__argument_name_token2] = ACTIONS(1476), - [anon_sym_POUND_LBRACK] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [aux_sym_encapsed_string_token1] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [aux_sym_string_token1] = ACTIONS(1474), - [anon_sym_LT_LT_LT] = ACTIONS(1474), - [anon_sym_BQUOTE] = ACTIONS(1474), - [anon_sym_DOLLAR] = ACTIONS(1474), - [aux_sym_yield_expression_token1] = ACTIONS(1476), - [aux_sym_include_expression_token1] = ACTIONS(1476), - [aux_sym_include_once_expression_token1] = ACTIONS(1476), - [aux_sym_require_expression_token1] = ACTIONS(1476), - [aux_sym_require_once_expression_token1] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_name] = ACTIONS(1478), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1476), + [aux_sym_function_static_declaration_token1] = ACTIONS(1478), + [aux_sym_global_declaration_token1] = ACTIONS(1478), + [aux_sym_namespace_definition_token1] = ACTIONS(1478), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1478), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1478), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1478), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [aux_sym_trait_declaration_token1] = ACTIONS(1478), + [aux_sym_interface_declaration_token1] = ACTIONS(1478), + [aux_sym_enum_declaration_token1] = ACTIONS(1478), + [aux_sym_enum_case_token1] = ACTIONS(1478), + [aux_sym_class_declaration_token1] = ACTIONS(1478), + [aux_sym_final_modifier_token1] = ACTIONS(1478), + [aux_sym_abstract_modifier_token1] = ACTIONS(1478), + [aux_sym_readonly_modifier_token1] = ACTIONS(1478), + [aux_sym_visibility_modifier_token1] = ACTIONS(1478), + [aux_sym_visibility_modifier_token2] = ACTIONS(1478), + [aux_sym_visibility_modifier_token3] = ACTIONS(1478), + [aux_sym__arrow_function_header_token1] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1476), + [aux_sym_cast_type_token1] = ACTIONS(1478), + [aux_sym_echo_statement_token1] = ACTIONS(1478), + [anon_sym_unset] = ACTIONS(1478), + [aux_sym_declare_statement_token1] = ACTIONS(1478), + [aux_sym_declare_statement_token2] = ACTIONS(1478), + [sym_float] = ACTIONS(1478), + [aux_sym_try_statement_token1] = ACTIONS(1478), + [aux_sym_goto_statement_token1] = ACTIONS(1478), + [aux_sym_continue_statement_token1] = ACTIONS(1478), + [aux_sym_break_statement_token1] = ACTIONS(1478), + [sym_integer] = ACTIONS(1478), + [aux_sym_return_statement_token1] = ACTIONS(1478), + [aux_sym_throw_expression_token1] = ACTIONS(1478), + [aux_sym_while_statement_token1] = ACTIONS(1478), + [aux_sym_while_statement_token2] = ACTIONS(1478), + [aux_sym_do_statement_token1] = ACTIONS(1478), + [aux_sym_for_statement_token1] = ACTIONS(1478), + [aux_sym_for_statement_token2] = ACTIONS(1478), + [aux_sym_foreach_statement_token1] = ACTIONS(1478), + [aux_sym_foreach_statement_token2] = ACTIONS(1478), + [aux_sym_if_statement_token1] = ACTIONS(1478), + [aux_sym_if_statement_token2] = ACTIONS(1478), + [aux_sym_else_if_clause_token1] = ACTIONS(1478), + [aux_sym_else_clause_token1] = ACTIONS(1478), + [aux_sym_match_expression_token1] = ACTIONS(1478), + [aux_sym_match_default_expression_token1] = ACTIONS(1478), + [aux_sym_switch_statement_token1] = ACTIONS(1478), + [aux_sym_switch_block_token1] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [aux_sym_clone_expression_token1] = ACTIONS(1478), + [aux_sym_print_intrinsic_token1] = ACTIONS(1478), + [aux_sym_object_creation_expression_token1] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [aux_sym__list_destructing_token1] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_self] = ACTIONS(1478), + [anon_sym_parent] = ACTIONS(1478), + [aux_sym__argument_name_token1] = ACTIONS(1478), + [aux_sym__argument_name_token2] = ACTIONS(1478), + [anon_sym_POUND_LBRACK] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [aux_sym_encapsed_string_token1] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [aux_sym_string_token1] = ACTIONS(1476), + [anon_sym_LT_LT_LT] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [aux_sym_yield_expression_token1] = ACTIONS(1478), + [aux_sym_include_expression_token1] = ACTIONS(1478), + [aux_sym_include_once_expression_token1] = ACTIONS(1478), + [aux_sym_require_expression_token1] = ACTIONS(1478), + [aux_sym_require_once_expression_token1] = ACTIONS(1478), [sym_comment] = ACTIONS(5), }, [547] = { [sym_text_interpolation] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1478), - [sym_name] = ACTIONS(1480), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1478), - [aux_sym_function_static_declaration_token1] = ACTIONS(1480), - [aux_sym_global_declaration_token1] = ACTIONS(1480), - [aux_sym_namespace_definition_token1] = ACTIONS(1480), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1480), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1480), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1480), - [anon_sym_BSLASH] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [aux_sym_trait_declaration_token1] = ACTIONS(1480), - [aux_sym_interface_declaration_token1] = ACTIONS(1480), - [aux_sym_enum_declaration_token1] = ACTIONS(1480), - [aux_sym_enum_case_token1] = ACTIONS(1480), - [aux_sym_class_declaration_token1] = ACTIONS(1480), - [aux_sym_final_modifier_token1] = ACTIONS(1480), - [aux_sym_abstract_modifier_token1] = ACTIONS(1480), - [aux_sym_readonly_modifier_token1] = ACTIONS(1480), - [aux_sym_visibility_modifier_token1] = ACTIONS(1480), - [aux_sym_visibility_modifier_token2] = ACTIONS(1480), - [aux_sym_visibility_modifier_token3] = ACTIONS(1480), - [aux_sym__arrow_function_header_token1] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1478), - [aux_sym_cast_type_token1] = ACTIONS(1480), - [aux_sym_echo_statement_token1] = ACTIONS(1480), - [anon_sym_unset] = ACTIONS(1480), - [aux_sym_declare_statement_token1] = ACTIONS(1480), - [aux_sym_declare_statement_token2] = ACTIONS(1480), - [sym_float] = ACTIONS(1480), - [aux_sym_try_statement_token1] = ACTIONS(1480), - [aux_sym_goto_statement_token1] = ACTIONS(1480), - [aux_sym_continue_statement_token1] = ACTIONS(1480), - [aux_sym_break_statement_token1] = ACTIONS(1480), - [sym_integer] = ACTIONS(1480), - [aux_sym_return_statement_token1] = ACTIONS(1480), - [aux_sym_throw_expression_token1] = ACTIONS(1480), - [aux_sym_while_statement_token1] = ACTIONS(1480), - [aux_sym_while_statement_token2] = ACTIONS(1480), - [aux_sym_do_statement_token1] = ACTIONS(1480), - [aux_sym_for_statement_token1] = ACTIONS(1480), - [aux_sym_for_statement_token2] = ACTIONS(1480), - [aux_sym_foreach_statement_token1] = ACTIONS(1480), - [aux_sym_foreach_statement_token2] = ACTIONS(1480), - [aux_sym_if_statement_token1] = ACTIONS(1480), - [aux_sym_if_statement_token2] = ACTIONS(1480), - [aux_sym_else_if_clause_token1] = ACTIONS(1480), - [aux_sym_else_clause_token1] = ACTIONS(1480), - [aux_sym_match_expression_token1] = ACTIONS(1480), - [aux_sym_match_default_expression_token1] = ACTIONS(1480), - [aux_sym_switch_statement_token1] = ACTIONS(1480), - [aux_sym_switch_block_token1] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(1478), - [aux_sym_clone_expression_token1] = ACTIONS(1480), - [aux_sym_print_intrinsic_token1] = ACTIONS(1480), - [aux_sym_object_creation_expression_token1] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [aux_sym__list_destructing_token1] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1478), - [anon_sym_self] = ACTIONS(1480), - [anon_sym_parent] = ACTIONS(1480), - [aux_sym__argument_name_token1] = ACTIONS(1480), - [aux_sym__argument_name_token2] = ACTIONS(1480), - [anon_sym_POUND_LBRACK] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [aux_sym_encapsed_string_token1] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [aux_sym_string_token1] = ACTIONS(1478), - [anon_sym_LT_LT_LT] = ACTIONS(1478), - [anon_sym_BQUOTE] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1478), - [aux_sym_yield_expression_token1] = ACTIONS(1480), - [aux_sym_include_expression_token1] = ACTIONS(1480), - [aux_sym_include_once_expression_token1] = ACTIONS(1480), - [aux_sym_require_expression_token1] = ACTIONS(1480), - [aux_sym_require_once_expression_token1] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_name] = ACTIONS(1482), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1480), + [aux_sym_function_static_declaration_token1] = ACTIONS(1482), + [aux_sym_global_declaration_token1] = ACTIONS(1482), + [aux_sym_namespace_definition_token1] = ACTIONS(1482), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1482), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1482), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1482), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [aux_sym_trait_declaration_token1] = ACTIONS(1482), + [aux_sym_interface_declaration_token1] = ACTIONS(1482), + [aux_sym_enum_declaration_token1] = ACTIONS(1482), + [aux_sym_enum_case_token1] = ACTIONS(1482), + [aux_sym_class_declaration_token1] = ACTIONS(1482), + [aux_sym_final_modifier_token1] = ACTIONS(1482), + [aux_sym_abstract_modifier_token1] = ACTIONS(1482), + [aux_sym_readonly_modifier_token1] = ACTIONS(1482), + [aux_sym_visibility_modifier_token1] = ACTIONS(1482), + [aux_sym_visibility_modifier_token2] = ACTIONS(1482), + [aux_sym_visibility_modifier_token3] = ACTIONS(1482), + [aux_sym__arrow_function_header_token1] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1480), + [aux_sym_cast_type_token1] = ACTIONS(1482), + [aux_sym_echo_statement_token1] = ACTIONS(1482), + [anon_sym_unset] = ACTIONS(1482), + [aux_sym_declare_statement_token1] = ACTIONS(1482), + [aux_sym_declare_statement_token2] = ACTIONS(1482), + [sym_float] = ACTIONS(1482), + [aux_sym_try_statement_token1] = ACTIONS(1482), + [aux_sym_goto_statement_token1] = ACTIONS(1482), + [aux_sym_continue_statement_token1] = ACTIONS(1482), + [aux_sym_break_statement_token1] = ACTIONS(1482), + [sym_integer] = ACTIONS(1482), + [aux_sym_return_statement_token1] = ACTIONS(1482), + [aux_sym_throw_expression_token1] = ACTIONS(1482), + [aux_sym_while_statement_token1] = ACTIONS(1482), + [aux_sym_while_statement_token2] = ACTIONS(1482), + [aux_sym_do_statement_token1] = ACTIONS(1482), + [aux_sym_for_statement_token1] = ACTIONS(1482), + [aux_sym_for_statement_token2] = ACTIONS(1482), + [aux_sym_foreach_statement_token1] = ACTIONS(1482), + [aux_sym_foreach_statement_token2] = ACTIONS(1482), + [aux_sym_if_statement_token1] = ACTIONS(1482), + [aux_sym_if_statement_token2] = ACTIONS(1482), + [aux_sym_else_if_clause_token1] = ACTIONS(1482), + [aux_sym_else_clause_token1] = ACTIONS(1482), + [aux_sym_match_expression_token1] = ACTIONS(1482), + [aux_sym_match_default_expression_token1] = ACTIONS(1482), + [aux_sym_switch_statement_token1] = ACTIONS(1482), + [aux_sym_switch_block_token1] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [aux_sym_clone_expression_token1] = ACTIONS(1482), + [aux_sym_print_intrinsic_token1] = ACTIONS(1482), + [aux_sym_object_creation_expression_token1] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [aux_sym__list_destructing_token1] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_self] = ACTIONS(1482), + [anon_sym_parent] = ACTIONS(1482), + [aux_sym__argument_name_token1] = ACTIONS(1482), + [aux_sym__argument_name_token2] = ACTIONS(1482), + [anon_sym_POUND_LBRACK] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [aux_sym_encapsed_string_token1] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1480), + [anon_sym_LT_LT_LT] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [aux_sym_yield_expression_token1] = ACTIONS(1482), + [aux_sym_include_expression_token1] = ACTIONS(1482), + [aux_sym_include_once_expression_token1] = ACTIONS(1482), + [aux_sym_require_expression_token1] = ACTIONS(1482), + [aux_sym_require_once_expression_token1] = ACTIONS(1482), [sym_comment] = ACTIONS(5), }, [548] = { [sym_text_interpolation] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_name] = ACTIONS(1484), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1482), - [aux_sym_function_static_declaration_token1] = ACTIONS(1484), - [aux_sym_global_declaration_token1] = ACTIONS(1484), - [aux_sym_namespace_definition_token1] = ACTIONS(1484), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1484), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1484), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1484), - [anon_sym_BSLASH] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [aux_sym_trait_declaration_token1] = ACTIONS(1484), - [aux_sym_interface_declaration_token1] = ACTIONS(1484), - [aux_sym_enum_declaration_token1] = ACTIONS(1484), - [aux_sym_enum_case_token1] = ACTIONS(1484), - [aux_sym_class_declaration_token1] = ACTIONS(1484), - [aux_sym_final_modifier_token1] = ACTIONS(1484), - [aux_sym_abstract_modifier_token1] = ACTIONS(1484), - [aux_sym_readonly_modifier_token1] = ACTIONS(1484), - [aux_sym_visibility_modifier_token1] = ACTIONS(1484), - [aux_sym_visibility_modifier_token2] = ACTIONS(1484), - [aux_sym_visibility_modifier_token3] = ACTIONS(1484), - [aux_sym__arrow_function_header_token1] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1482), - [aux_sym_cast_type_token1] = ACTIONS(1484), - [aux_sym_echo_statement_token1] = ACTIONS(1484), - [anon_sym_unset] = ACTIONS(1484), - [aux_sym_declare_statement_token1] = ACTIONS(1484), - [aux_sym_declare_statement_token2] = ACTIONS(1484), - [sym_float] = ACTIONS(1484), - [aux_sym_try_statement_token1] = ACTIONS(1484), - [aux_sym_goto_statement_token1] = ACTIONS(1484), - [aux_sym_continue_statement_token1] = ACTIONS(1484), - [aux_sym_break_statement_token1] = ACTIONS(1484), - [sym_integer] = ACTIONS(1484), - [aux_sym_return_statement_token1] = ACTIONS(1484), - [aux_sym_throw_expression_token1] = ACTIONS(1484), - [aux_sym_while_statement_token1] = ACTIONS(1484), - [aux_sym_while_statement_token2] = ACTIONS(1484), - [aux_sym_do_statement_token1] = ACTIONS(1484), - [aux_sym_for_statement_token1] = ACTIONS(1484), - [aux_sym_for_statement_token2] = ACTIONS(1484), - [aux_sym_foreach_statement_token1] = ACTIONS(1484), - [aux_sym_foreach_statement_token2] = ACTIONS(1484), - [aux_sym_if_statement_token1] = ACTIONS(1484), - [aux_sym_if_statement_token2] = ACTIONS(1484), - [aux_sym_else_if_clause_token1] = ACTIONS(1484), - [aux_sym_else_clause_token1] = ACTIONS(1484), - [aux_sym_match_expression_token1] = ACTIONS(1484), - [aux_sym_match_default_expression_token1] = ACTIONS(1484), - [aux_sym_switch_statement_token1] = ACTIONS(1484), - [aux_sym_switch_block_token1] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1482), - [aux_sym_clone_expression_token1] = ACTIONS(1484), - [aux_sym_print_intrinsic_token1] = ACTIONS(1484), - [aux_sym_object_creation_expression_token1] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [aux_sym__list_destructing_token1] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_self] = ACTIONS(1484), - [anon_sym_parent] = ACTIONS(1484), - [aux_sym__argument_name_token1] = ACTIONS(1484), - [aux_sym__argument_name_token2] = ACTIONS(1484), - [anon_sym_POUND_LBRACK] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [aux_sym_encapsed_string_token1] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [aux_sym_string_token1] = ACTIONS(1482), - [anon_sym_LT_LT_LT] = ACTIONS(1482), - [anon_sym_BQUOTE] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(1482), - [aux_sym_yield_expression_token1] = ACTIONS(1484), - [aux_sym_include_expression_token1] = ACTIONS(1484), - [aux_sym_include_once_expression_token1] = ACTIONS(1484), - [aux_sym_require_expression_token1] = ACTIONS(1484), - [aux_sym_require_once_expression_token1] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_name] = ACTIONS(1486), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1484), + [aux_sym_function_static_declaration_token1] = ACTIONS(1486), + [aux_sym_global_declaration_token1] = ACTIONS(1486), + [aux_sym_namespace_definition_token1] = ACTIONS(1486), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1486), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1486), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1486), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [aux_sym_trait_declaration_token1] = ACTIONS(1486), + [aux_sym_interface_declaration_token1] = ACTIONS(1486), + [aux_sym_enum_declaration_token1] = ACTIONS(1486), + [aux_sym_enum_case_token1] = ACTIONS(1486), + [aux_sym_class_declaration_token1] = ACTIONS(1486), + [aux_sym_final_modifier_token1] = ACTIONS(1486), + [aux_sym_abstract_modifier_token1] = ACTIONS(1486), + [aux_sym_readonly_modifier_token1] = ACTIONS(1486), + [aux_sym_visibility_modifier_token1] = ACTIONS(1486), + [aux_sym_visibility_modifier_token2] = ACTIONS(1486), + [aux_sym_visibility_modifier_token3] = ACTIONS(1486), + [aux_sym__arrow_function_header_token1] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1484), + [aux_sym_cast_type_token1] = ACTIONS(1486), + [aux_sym_echo_statement_token1] = ACTIONS(1486), + [anon_sym_unset] = ACTIONS(1486), + [aux_sym_declare_statement_token1] = ACTIONS(1486), + [aux_sym_declare_statement_token2] = ACTIONS(1486), + [sym_float] = ACTIONS(1486), + [aux_sym_try_statement_token1] = ACTIONS(1486), + [aux_sym_goto_statement_token1] = ACTIONS(1486), + [aux_sym_continue_statement_token1] = ACTIONS(1486), + [aux_sym_break_statement_token1] = ACTIONS(1486), + [sym_integer] = ACTIONS(1486), + [aux_sym_return_statement_token1] = ACTIONS(1486), + [aux_sym_throw_expression_token1] = ACTIONS(1486), + [aux_sym_while_statement_token1] = ACTIONS(1486), + [aux_sym_while_statement_token2] = ACTIONS(1486), + [aux_sym_do_statement_token1] = ACTIONS(1486), + [aux_sym_for_statement_token1] = ACTIONS(1486), + [aux_sym_for_statement_token2] = ACTIONS(1486), + [aux_sym_foreach_statement_token1] = ACTIONS(1486), + [aux_sym_foreach_statement_token2] = ACTIONS(1486), + [aux_sym_if_statement_token1] = ACTIONS(1486), + [aux_sym_if_statement_token2] = ACTIONS(1486), + [aux_sym_else_if_clause_token1] = ACTIONS(1486), + [aux_sym_else_clause_token1] = ACTIONS(1486), + [aux_sym_match_expression_token1] = ACTIONS(1486), + [aux_sym_match_default_expression_token1] = ACTIONS(1486), + [aux_sym_switch_statement_token1] = ACTIONS(1486), + [aux_sym_switch_block_token1] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [aux_sym_clone_expression_token1] = ACTIONS(1486), + [aux_sym_print_intrinsic_token1] = ACTIONS(1486), + [aux_sym_object_creation_expression_token1] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [aux_sym__list_destructing_token1] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_self] = ACTIONS(1486), + [anon_sym_parent] = ACTIONS(1486), + [aux_sym__argument_name_token1] = ACTIONS(1486), + [aux_sym__argument_name_token2] = ACTIONS(1486), + [anon_sym_POUND_LBRACK] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [aux_sym_encapsed_string_token1] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [aux_sym_string_token1] = ACTIONS(1484), + [anon_sym_LT_LT_LT] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [aux_sym_yield_expression_token1] = ACTIONS(1486), + [aux_sym_include_expression_token1] = ACTIONS(1486), + [aux_sym_include_once_expression_token1] = ACTIONS(1486), + [aux_sym_require_expression_token1] = ACTIONS(1486), + [aux_sym_require_once_expression_token1] = ACTIONS(1486), [sym_comment] = ACTIONS(5), }, [549] = { [sym_text_interpolation] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_name] = ACTIONS(1488), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1486), - [aux_sym_function_static_declaration_token1] = ACTIONS(1488), - [aux_sym_global_declaration_token1] = ACTIONS(1488), - [aux_sym_namespace_definition_token1] = ACTIONS(1488), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1488), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1488), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1488), - [anon_sym_BSLASH] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [aux_sym_trait_declaration_token1] = ACTIONS(1488), - [aux_sym_interface_declaration_token1] = ACTIONS(1488), - [aux_sym_enum_declaration_token1] = ACTIONS(1488), - [aux_sym_enum_case_token1] = ACTIONS(1488), - [aux_sym_class_declaration_token1] = ACTIONS(1488), - [aux_sym_final_modifier_token1] = ACTIONS(1488), - [aux_sym_abstract_modifier_token1] = ACTIONS(1488), - [aux_sym_readonly_modifier_token1] = ACTIONS(1488), - [aux_sym_visibility_modifier_token1] = ACTIONS(1488), - [aux_sym_visibility_modifier_token2] = ACTIONS(1488), - [aux_sym_visibility_modifier_token3] = ACTIONS(1488), - [aux_sym__arrow_function_header_token1] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1486), - [aux_sym_cast_type_token1] = ACTIONS(1488), - [aux_sym_echo_statement_token1] = ACTIONS(1488), - [anon_sym_unset] = ACTIONS(1488), - [aux_sym_declare_statement_token1] = ACTIONS(1488), - [aux_sym_declare_statement_token2] = ACTIONS(1488), - [sym_float] = ACTIONS(1488), - [aux_sym_try_statement_token1] = ACTIONS(1488), - [aux_sym_goto_statement_token1] = ACTIONS(1488), - [aux_sym_continue_statement_token1] = ACTIONS(1488), - [aux_sym_break_statement_token1] = ACTIONS(1488), - [sym_integer] = ACTIONS(1488), - [aux_sym_return_statement_token1] = ACTIONS(1488), - [aux_sym_throw_expression_token1] = ACTIONS(1488), - [aux_sym_while_statement_token1] = ACTIONS(1488), - [aux_sym_while_statement_token2] = ACTIONS(1488), - [aux_sym_do_statement_token1] = ACTIONS(1488), - [aux_sym_for_statement_token1] = ACTIONS(1488), - [aux_sym_for_statement_token2] = ACTIONS(1488), - [aux_sym_foreach_statement_token1] = ACTIONS(1488), - [aux_sym_foreach_statement_token2] = ACTIONS(1488), - [aux_sym_if_statement_token1] = ACTIONS(1488), - [aux_sym_if_statement_token2] = ACTIONS(1488), - [aux_sym_else_if_clause_token1] = ACTIONS(1488), - [aux_sym_else_clause_token1] = ACTIONS(1488), - [aux_sym_match_expression_token1] = ACTIONS(1488), - [aux_sym_match_default_expression_token1] = ACTIONS(1488), - [aux_sym_switch_statement_token1] = ACTIONS(1488), - [aux_sym_switch_block_token1] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(1486), - [aux_sym_clone_expression_token1] = ACTIONS(1488), - [aux_sym_print_intrinsic_token1] = ACTIONS(1488), - [aux_sym_object_creation_expression_token1] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [aux_sym__list_destructing_token1] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_self] = ACTIONS(1488), - [anon_sym_parent] = ACTIONS(1488), - [aux_sym__argument_name_token1] = ACTIONS(1488), - [aux_sym__argument_name_token2] = ACTIONS(1488), - [anon_sym_POUND_LBRACK] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [aux_sym_encapsed_string_token1] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [aux_sym_string_token1] = ACTIONS(1486), - [anon_sym_LT_LT_LT] = ACTIONS(1486), - [anon_sym_BQUOTE] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1486), - [aux_sym_yield_expression_token1] = ACTIONS(1488), - [aux_sym_include_expression_token1] = ACTIONS(1488), - [aux_sym_include_once_expression_token1] = ACTIONS(1488), - [aux_sym_require_expression_token1] = ACTIONS(1488), - [aux_sym_require_once_expression_token1] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_name] = ACTIONS(1490), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1488), + [aux_sym_function_static_declaration_token1] = ACTIONS(1490), + [aux_sym_global_declaration_token1] = ACTIONS(1490), + [aux_sym_namespace_definition_token1] = ACTIONS(1490), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1490), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1490), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1490), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [aux_sym_trait_declaration_token1] = ACTIONS(1490), + [aux_sym_interface_declaration_token1] = ACTIONS(1490), + [aux_sym_enum_declaration_token1] = ACTIONS(1490), + [aux_sym_enum_case_token1] = ACTIONS(1490), + [aux_sym_class_declaration_token1] = ACTIONS(1490), + [aux_sym_final_modifier_token1] = ACTIONS(1490), + [aux_sym_abstract_modifier_token1] = ACTIONS(1490), + [aux_sym_readonly_modifier_token1] = ACTIONS(1490), + [aux_sym_visibility_modifier_token1] = ACTIONS(1490), + [aux_sym_visibility_modifier_token2] = ACTIONS(1490), + [aux_sym_visibility_modifier_token3] = ACTIONS(1490), + [aux_sym__arrow_function_header_token1] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1488), + [aux_sym_cast_type_token1] = ACTIONS(1490), + [aux_sym_echo_statement_token1] = ACTIONS(1490), + [anon_sym_unset] = ACTIONS(1490), + [aux_sym_declare_statement_token1] = ACTIONS(1490), + [aux_sym_declare_statement_token2] = ACTIONS(1490), + [sym_float] = ACTIONS(1490), + [aux_sym_try_statement_token1] = ACTIONS(1490), + [aux_sym_goto_statement_token1] = ACTIONS(1490), + [aux_sym_continue_statement_token1] = ACTIONS(1490), + [aux_sym_break_statement_token1] = ACTIONS(1490), + [sym_integer] = ACTIONS(1490), + [aux_sym_return_statement_token1] = ACTIONS(1490), + [aux_sym_throw_expression_token1] = ACTIONS(1490), + [aux_sym_while_statement_token1] = ACTIONS(1490), + [aux_sym_while_statement_token2] = ACTIONS(1490), + [aux_sym_do_statement_token1] = ACTIONS(1490), + [aux_sym_for_statement_token1] = ACTIONS(1490), + [aux_sym_for_statement_token2] = ACTIONS(1490), + [aux_sym_foreach_statement_token1] = ACTIONS(1490), + [aux_sym_foreach_statement_token2] = ACTIONS(1490), + [aux_sym_if_statement_token1] = ACTIONS(1490), + [aux_sym_if_statement_token2] = ACTIONS(1490), + [aux_sym_else_if_clause_token1] = ACTIONS(1490), + [aux_sym_else_clause_token1] = ACTIONS(1490), + [aux_sym_match_expression_token1] = ACTIONS(1490), + [aux_sym_match_default_expression_token1] = ACTIONS(1490), + [aux_sym_switch_statement_token1] = ACTIONS(1490), + [aux_sym_switch_block_token1] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(1488), + [aux_sym_clone_expression_token1] = ACTIONS(1490), + [aux_sym_print_intrinsic_token1] = ACTIONS(1490), + [aux_sym_object_creation_expression_token1] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [aux_sym__list_destructing_token1] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_self] = ACTIONS(1490), + [anon_sym_parent] = ACTIONS(1490), + [aux_sym__argument_name_token1] = ACTIONS(1490), + [aux_sym__argument_name_token2] = ACTIONS(1490), + [anon_sym_POUND_LBRACK] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [aux_sym_encapsed_string_token1] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [aux_sym_string_token1] = ACTIONS(1488), + [anon_sym_LT_LT_LT] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1488), + [aux_sym_yield_expression_token1] = ACTIONS(1490), + [aux_sym_include_expression_token1] = ACTIONS(1490), + [aux_sym_include_once_expression_token1] = ACTIONS(1490), + [aux_sym_require_expression_token1] = ACTIONS(1490), + [aux_sym_require_once_expression_token1] = ACTIONS(1490), [sym_comment] = ACTIONS(5), }, [550] = { [sym_text_interpolation] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_name] = ACTIONS(1492), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1490), - [aux_sym_function_static_declaration_token1] = ACTIONS(1492), - [aux_sym_global_declaration_token1] = ACTIONS(1492), - [aux_sym_namespace_definition_token1] = ACTIONS(1492), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1492), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1492), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1492), - [anon_sym_BSLASH] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1490), - [aux_sym_trait_declaration_token1] = ACTIONS(1492), - [aux_sym_interface_declaration_token1] = ACTIONS(1492), - [aux_sym_enum_declaration_token1] = ACTIONS(1492), - [aux_sym_enum_case_token1] = ACTIONS(1492), - [aux_sym_class_declaration_token1] = ACTIONS(1492), - [aux_sym_final_modifier_token1] = ACTIONS(1492), - [aux_sym_abstract_modifier_token1] = ACTIONS(1492), - [aux_sym_readonly_modifier_token1] = ACTIONS(1492), - [aux_sym_visibility_modifier_token1] = ACTIONS(1492), - [aux_sym_visibility_modifier_token2] = ACTIONS(1492), - [aux_sym_visibility_modifier_token3] = ACTIONS(1492), - [aux_sym__arrow_function_header_token1] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1490), - [aux_sym_cast_type_token1] = ACTIONS(1492), - [aux_sym_echo_statement_token1] = ACTIONS(1492), - [anon_sym_unset] = ACTIONS(1492), - [aux_sym_declare_statement_token1] = ACTIONS(1492), - [aux_sym_declare_statement_token2] = ACTIONS(1492), - [sym_float] = ACTIONS(1492), - [aux_sym_try_statement_token1] = ACTIONS(1492), - [aux_sym_goto_statement_token1] = ACTIONS(1492), - [aux_sym_continue_statement_token1] = ACTIONS(1492), - [aux_sym_break_statement_token1] = ACTIONS(1492), - [sym_integer] = ACTIONS(1492), - [aux_sym_return_statement_token1] = ACTIONS(1492), - [aux_sym_throw_expression_token1] = ACTIONS(1492), - [aux_sym_while_statement_token1] = ACTIONS(1492), - [aux_sym_while_statement_token2] = ACTIONS(1492), - [aux_sym_do_statement_token1] = ACTIONS(1492), - [aux_sym_for_statement_token1] = ACTIONS(1492), - [aux_sym_for_statement_token2] = ACTIONS(1492), - [aux_sym_foreach_statement_token1] = ACTIONS(1492), - [aux_sym_foreach_statement_token2] = ACTIONS(1492), - [aux_sym_if_statement_token1] = ACTIONS(1492), - [aux_sym_if_statement_token2] = ACTIONS(1492), - [aux_sym_else_if_clause_token1] = ACTIONS(1492), - [aux_sym_else_clause_token1] = ACTIONS(1492), - [aux_sym_match_expression_token1] = ACTIONS(1492), - [aux_sym_match_default_expression_token1] = ACTIONS(1492), - [aux_sym_switch_statement_token1] = ACTIONS(1492), - [aux_sym_switch_block_token1] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_AT] = ACTIONS(1490), - [aux_sym_clone_expression_token1] = ACTIONS(1492), - [aux_sym_print_intrinsic_token1] = ACTIONS(1492), - [aux_sym_object_creation_expression_token1] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [aux_sym__list_destructing_token1] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_self] = ACTIONS(1492), - [anon_sym_parent] = ACTIONS(1492), - [aux_sym__argument_name_token1] = ACTIONS(1492), - [aux_sym__argument_name_token2] = ACTIONS(1492), - [anon_sym_POUND_LBRACK] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [aux_sym_encapsed_string_token1] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [aux_sym_string_token1] = ACTIONS(1490), - [anon_sym_LT_LT_LT] = ACTIONS(1490), - [anon_sym_BQUOTE] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1490), - [aux_sym_yield_expression_token1] = ACTIONS(1492), - [aux_sym_include_expression_token1] = ACTIONS(1492), - [aux_sym_include_once_expression_token1] = ACTIONS(1492), - [aux_sym_require_expression_token1] = ACTIONS(1492), - [aux_sym_require_once_expression_token1] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1492), + [sym_name] = ACTIONS(1494), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1492), + [aux_sym_function_static_declaration_token1] = ACTIONS(1494), + [aux_sym_global_declaration_token1] = ACTIONS(1494), + [aux_sym_namespace_definition_token1] = ACTIONS(1494), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1494), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1494), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1494), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [aux_sym_trait_declaration_token1] = ACTIONS(1494), + [aux_sym_interface_declaration_token1] = ACTIONS(1494), + [aux_sym_enum_declaration_token1] = ACTIONS(1494), + [aux_sym_enum_case_token1] = ACTIONS(1494), + [aux_sym_class_declaration_token1] = ACTIONS(1494), + [aux_sym_final_modifier_token1] = ACTIONS(1494), + [aux_sym_abstract_modifier_token1] = ACTIONS(1494), + [aux_sym_readonly_modifier_token1] = ACTIONS(1494), + [aux_sym_visibility_modifier_token1] = ACTIONS(1494), + [aux_sym_visibility_modifier_token2] = ACTIONS(1494), + [aux_sym_visibility_modifier_token3] = ACTIONS(1494), + [aux_sym__arrow_function_header_token1] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1492), + [aux_sym_cast_type_token1] = ACTIONS(1494), + [aux_sym_echo_statement_token1] = ACTIONS(1494), + [anon_sym_unset] = ACTIONS(1494), + [aux_sym_declare_statement_token1] = ACTIONS(1494), + [aux_sym_declare_statement_token2] = ACTIONS(1494), + [sym_float] = ACTIONS(1494), + [aux_sym_try_statement_token1] = ACTIONS(1494), + [aux_sym_goto_statement_token1] = ACTIONS(1494), + [aux_sym_continue_statement_token1] = ACTIONS(1494), + [aux_sym_break_statement_token1] = ACTIONS(1494), + [sym_integer] = ACTIONS(1494), + [aux_sym_return_statement_token1] = ACTIONS(1494), + [aux_sym_throw_expression_token1] = ACTIONS(1494), + [aux_sym_while_statement_token1] = ACTIONS(1494), + [aux_sym_while_statement_token2] = ACTIONS(1494), + [aux_sym_do_statement_token1] = ACTIONS(1494), + [aux_sym_for_statement_token1] = ACTIONS(1494), + [aux_sym_for_statement_token2] = ACTIONS(1494), + [aux_sym_foreach_statement_token1] = ACTIONS(1494), + [aux_sym_foreach_statement_token2] = ACTIONS(1494), + [aux_sym_if_statement_token1] = ACTIONS(1494), + [aux_sym_if_statement_token2] = ACTIONS(1494), + [aux_sym_else_if_clause_token1] = ACTIONS(1494), + [aux_sym_else_clause_token1] = ACTIONS(1494), + [aux_sym_match_expression_token1] = ACTIONS(1494), + [aux_sym_match_default_expression_token1] = ACTIONS(1494), + [aux_sym_switch_statement_token1] = ACTIONS(1494), + [aux_sym_switch_block_token1] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [aux_sym_clone_expression_token1] = ACTIONS(1494), + [aux_sym_print_intrinsic_token1] = ACTIONS(1494), + [aux_sym_object_creation_expression_token1] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [aux_sym__list_destructing_token1] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_self] = ACTIONS(1494), + [anon_sym_parent] = ACTIONS(1494), + [aux_sym__argument_name_token1] = ACTIONS(1494), + [aux_sym__argument_name_token2] = ACTIONS(1494), + [anon_sym_POUND_LBRACK] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [aux_sym_encapsed_string_token1] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [aux_sym_string_token1] = ACTIONS(1492), + [anon_sym_LT_LT_LT] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [aux_sym_yield_expression_token1] = ACTIONS(1494), + [aux_sym_include_expression_token1] = ACTIONS(1494), + [aux_sym_include_once_expression_token1] = ACTIONS(1494), + [aux_sym_require_expression_token1] = ACTIONS(1494), + [aux_sym_require_once_expression_token1] = ACTIONS(1494), [sym_comment] = ACTIONS(5), }, [551] = { [sym_text_interpolation] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_name] = ACTIONS(1496), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1494), - [aux_sym_function_static_declaration_token1] = ACTIONS(1496), - [aux_sym_global_declaration_token1] = ACTIONS(1496), - [aux_sym_namespace_definition_token1] = ACTIONS(1496), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1496), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1496), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1496), - [anon_sym_BSLASH] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [aux_sym_trait_declaration_token1] = ACTIONS(1496), - [aux_sym_interface_declaration_token1] = ACTIONS(1496), - [aux_sym_enum_declaration_token1] = ACTIONS(1496), - [aux_sym_enum_case_token1] = ACTIONS(1496), - [aux_sym_class_declaration_token1] = ACTIONS(1496), - [aux_sym_final_modifier_token1] = ACTIONS(1496), - [aux_sym_abstract_modifier_token1] = ACTIONS(1496), - [aux_sym_readonly_modifier_token1] = ACTIONS(1496), - [aux_sym_visibility_modifier_token1] = ACTIONS(1496), - [aux_sym_visibility_modifier_token2] = ACTIONS(1496), - [aux_sym_visibility_modifier_token3] = ACTIONS(1496), - [aux_sym__arrow_function_header_token1] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1494), - [aux_sym_cast_type_token1] = ACTIONS(1496), - [aux_sym_echo_statement_token1] = ACTIONS(1496), - [anon_sym_unset] = ACTIONS(1496), - [aux_sym_declare_statement_token1] = ACTIONS(1496), - [aux_sym_declare_statement_token2] = ACTIONS(1496), - [sym_float] = ACTIONS(1496), - [aux_sym_try_statement_token1] = ACTIONS(1496), - [aux_sym_goto_statement_token1] = ACTIONS(1496), - [aux_sym_continue_statement_token1] = ACTIONS(1496), - [aux_sym_break_statement_token1] = ACTIONS(1496), - [sym_integer] = ACTIONS(1496), - [aux_sym_return_statement_token1] = ACTIONS(1496), - [aux_sym_throw_expression_token1] = ACTIONS(1496), - [aux_sym_while_statement_token1] = ACTIONS(1496), - [aux_sym_while_statement_token2] = ACTIONS(1496), - [aux_sym_do_statement_token1] = ACTIONS(1496), - [aux_sym_for_statement_token1] = ACTIONS(1496), - [aux_sym_for_statement_token2] = ACTIONS(1496), - [aux_sym_foreach_statement_token1] = ACTIONS(1496), - [aux_sym_foreach_statement_token2] = ACTIONS(1496), - [aux_sym_if_statement_token1] = ACTIONS(1496), - [aux_sym_if_statement_token2] = ACTIONS(1496), - [aux_sym_else_if_clause_token1] = ACTIONS(1496), - [aux_sym_else_clause_token1] = ACTIONS(1496), - [aux_sym_match_expression_token1] = ACTIONS(1496), - [aux_sym_match_default_expression_token1] = ACTIONS(1496), - [aux_sym_switch_statement_token1] = ACTIONS(1496), - [aux_sym_switch_block_token1] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(1494), - [aux_sym_clone_expression_token1] = ACTIONS(1496), - [aux_sym_print_intrinsic_token1] = ACTIONS(1496), - [aux_sym_object_creation_expression_token1] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [aux_sym__list_destructing_token1] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_self] = ACTIONS(1496), - [anon_sym_parent] = ACTIONS(1496), - [aux_sym__argument_name_token1] = ACTIONS(1496), - [aux_sym__argument_name_token2] = ACTIONS(1496), - [anon_sym_POUND_LBRACK] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [aux_sym_encapsed_string_token1] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [aux_sym_string_token1] = ACTIONS(1494), - [anon_sym_LT_LT_LT] = ACTIONS(1494), - [anon_sym_BQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1494), - [aux_sym_yield_expression_token1] = ACTIONS(1496), - [aux_sym_include_expression_token1] = ACTIONS(1496), - [aux_sym_include_once_expression_token1] = ACTIONS(1496), - [aux_sym_require_expression_token1] = ACTIONS(1496), - [aux_sym_require_once_expression_token1] = ACTIONS(1496), + [ts_builtin_sym_end] = ACTIONS(1496), + [sym_name] = ACTIONS(1498), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1496), + [aux_sym_function_static_declaration_token1] = ACTIONS(1498), + [aux_sym_global_declaration_token1] = ACTIONS(1498), + [aux_sym_namespace_definition_token1] = ACTIONS(1498), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1498), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1498), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1498), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [aux_sym_trait_declaration_token1] = ACTIONS(1498), + [aux_sym_interface_declaration_token1] = ACTIONS(1498), + [aux_sym_enum_declaration_token1] = ACTIONS(1498), + [aux_sym_enum_case_token1] = ACTIONS(1498), + [aux_sym_class_declaration_token1] = ACTIONS(1498), + [aux_sym_final_modifier_token1] = ACTIONS(1498), + [aux_sym_abstract_modifier_token1] = ACTIONS(1498), + [aux_sym_readonly_modifier_token1] = ACTIONS(1498), + [aux_sym_visibility_modifier_token1] = ACTIONS(1498), + [aux_sym_visibility_modifier_token2] = ACTIONS(1498), + [aux_sym_visibility_modifier_token3] = ACTIONS(1498), + [aux_sym__arrow_function_header_token1] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1496), + [aux_sym_cast_type_token1] = ACTIONS(1498), + [aux_sym_echo_statement_token1] = ACTIONS(1498), + [anon_sym_unset] = ACTIONS(1498), + [aux_sym_declare_statement_token1] = ACTIONS(1498), + [aux_sym_declare_statement_token2] = ACTIONS(1498), + [sym_float] = ACTIONS(1498), + [aux_sym_try_statement_token1] = ACTIONS(1498), + [aux_sym_goto_statement_token1] = ACTIONS(1498), + [aux_sym_continue_statement_token1] = ACTIONS(1498), + [aux_sym_break_statement_token1] = ACTIONS(1498), + [sym_integer] = ACTIONS(1498), + [aux_sym_return_statement_token1] = ACTIONS(1498), + [aux_sym_throw_expression_token1] = ACTIONS(1498), + [aux_sym_while_statement_token1] = ACTIONS(1498), + [aux_sym_while_statement_token2] = ACTIONS(1498), + [aux_sym_do_statement_token1] = ACTIONS(1498), + [aux_sym_for_statement_token1] = ACTIONS(1498), + [aux_sym_for_statement_token2] = ACTIONS(1498), + [aux_sym_foreach_statement_token1] = ACTIONS(1498), + [aux_sym_foreach_statement_token2] = ACTIONS(1498), + [aux_sym_if_statement_token1] = ACTIONS(1498), + [aux_sym_if_statement_token2] = ACTIONS(1498), + [aux_sym_else_if_clause_token1] = ACTIONS(1498), + [aux_sym_else_clause_token1] = ACTIONS(1498), + [aux_sym_match_expression_token1] = ACTIONS(1498), + [aux_sym_match_default_expression_token1] = ACTIONS(1498), + [aux_sym_switch_statement_token1] = ACTIONS(1498), + [aux_sym_switch_block_token1] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [aux_sym_clone_expression_token1] = ACTIONS(1498), + [aux_sym_print_intrinsic_token1] = ACTIONS(1498), + [aux_sym_object_creation_expression_token1] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [aux_sym__list_destructing_token1] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_self] = ACTIONS(1498), + [anon_sym_parent] = ACTIONS(1498), + [aux_sym__argument_name_token1] = ACTIONS(1498), + [aux_sym__argument_name_token2] = ACTIONS(1498), + [anon_sym_POUND_LBRACK] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [aux_sym_encapsed_string_token1] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [aux_sym_string_token1] = ACTIONS(1496), + [anon_sym_LT_LT_LT] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [aux_sym_yield_expression_token1] = ACTIONS(1498), + [aux_sym_include_expression_token1] = ACTIONS(1498), + [aux_sym_include_once_expression_token1] = ACTIONS(1498), + [aux_sym_require_expression_token1] = ACTIONS(1498), + [aux_sym_require_once_expression_token1] = ACTIONS(1498), [sym_comment] = ACTIONS(5), }, [552] = { [sym_text_interpolation] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_name] = ACTIONS(1500), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1498), - [aux_sym_function_static_declaration_token1] = ACTIONS(1500), - [aux_sym_global_declaration_token1] = ACTIONS(1500), - [aux_sym_namespace_definition_token1] = ACTIONS(1500), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1500), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1500), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1500), - [anon_sym_BSLASH] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [aux_sym_trait_declaration_token1] = ACTIONS(1500), - [aux_sym_interface_declaration_token1] = ACTIONS(1500), - [aux_sym_enum_declaration_token1] = ACTIONS(1500), - [aux_sym_enum_case_token1] = ACTIONS(1500), - [aux_sym_class_declaration_token1] = ACTIONS(1500), - [aux_sym_final_modifier_token1] = ACTIONS(1500), - [aux_sym_abstract_modifier_token1] = ACTIONS(1500), - [aux_sym_readonly_modifier_token1] = ACTIONS(1500), - [aux_sym_visibility_modifier_token1] = ACTIONS(1500), - [aux_sym_visibility_modifier_token2] = ACTIONS(1500), - [aux_sym_visibility_modifier_token3] = ACTIONS(1500), - [aux_sym__arrow_function_header_token1] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1498), - [aux_sym_cast_type_token1] = ACTIONS(1500), - [aux_sym_echo_statement_token1] = ACTIONS(1500), - [anon_sym_unset] = ACTIONS(1500), - [aux_sym_declare_statement_token1] = ACTIONS(1500), - [aux_sym_declare_statement_token2] = ACTIONS(1500), - [sym_float] = ACTIONS(1500), - [aux_sym_try_statement_token1] = ACTIONS(1500), - [aux_sym_goto_statement_token1] = ACTIONS(1500), - [aux_sym_continue_statement_token1] = ACTIONS(1500), - [aux_sym_break_statement_token1] = ACTIONS(1500), - [sym_integer] = ACTIONS(1500), - [aux_sym_return_statement_token1] = ACTIONS(1500), - [aux_sym_throw_expression_token1] = ACTIONS(1500), - [aux_sym_while_statement_token1] = ACTIONS(1500), - [aux_sym_while_statement_token2] = ACTIONS(1500), - [aux_sym_do_statement_token1] = ACTIONS(1500), - [aux_sym_for_statement_token1] = ACTIONS(1500), - [aux_sym_for_statement_token2] = ACTIONS(1500), - [aux_sym_foreach_statement_token1] = ACTIONS(1500), - [aux_sym_foreach_statement_token2] = ACTIONS(1500), - [aux_sym_if_statement_token1] = ACTIONS(1500), - [aux_sym_if_statement_token2] = ACTIONS(1500), - [aux_sym_else_if_clause_token1] = ACTIONS(1500), - [aux_sym_else_clause_token1] = ACTIONS(1500), - [aux_sym_match_expression_token1] = ACTIONS(1500), - [aux_sym_match_default_expression_token1] = ACTIONS(1500), - [aux_sym_switch_statement_token1] = ACTIONS(1500), - [aux_sym_switch_block_token1] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_AT] = ACTIONS(1498), - [aux_sym_clone_expression_token1] = ACTIONS(1500), - [aux_sym_print_intrinsic_token1] = ACTIONS(1500), - [aux_sym_object_creation_expression_token1] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [aux_sym__list_destructing_token1] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_self] = ACTIONS(1500), - [anon_sym_parent] = ACTIONS(1500), - [aux_sym__argument_name_token1] = ACTIONS(1500), - [aux_sym__argument_name_token2] = ACTIONS(1500), - [anon_sym_POUND_LBRACK] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [aux_sym_encapsed_string_token1] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [aux_sym_string_token1] = ACTIONS(1498), - [anon_sym_LT_LT_LT] = ACTIONS(1498), - [anon_sym_BQUOTE] = ACTIONS(1498), - [anon_sym_DOLLAR] = ACTIONS(1498), - [aux_sym_yield_expression_token1] = ACTIONS(1500), - [aux_sym_include_expression_token1] = ACTIONS(1500), - [aux_sym_include_once_expression_token1] = ACTIONS(1500), - [aux_sym_require_expression_token1] = ACTIONS(1500), - [aux_sym_require_once_expression_token1] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(1500), + [sym_name] = ACTIONS(1502), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1500), + [aux_sym_function_static_declaration_token1] = ACTIONS(1502), + [aux_sym_global_declaration_token1] = ACTIONS(1502), + [aux_sym_namespace_definition_token1] = ACTIONS(1502), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1502), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1502), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1502), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [aux_sym_trait_declaration_token1] = ACTIONS(1502), + [aux_sym_interface_declaration_token1] = ACTIONS(1502), + [aux_sym_enum_declaration_token1] = ACTIONS(1502), + [aux_sym_enum_case_token1] = ACTIONS(1502), + [aux_sym_class_declaration_token1] = ACTIONS(1502), + [aux_sym_final_modifier_token1] = ACTIONS(1502), + [aux_sym_abstract_modifier_token1] = ACTIONS(1502), + [aux_sym_readonly_modifier_token1] = ACTIONS(1502), + [aux_sym_visibility_modifier_token1] = ACTIONS(1502), + [aux_sym_visibility_modifier_token2] = ACTIONS(1502), + [aux_sym_visibility_modifier_token3] = ACTIONS(1502), + [aux_sym__arrow_function_header_token1] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1500), + [aux_sym_cast_type_token1] = ACTIONS(1502), + [aux_sym_echo_statement_token1] = ACTIONS(1502), + [anon_sym_unset] = ACTIONS(1502), + [aux_sym_declare_statement_token1] = ACTIONS(1502), + [aux_sym_declare_statement_token2] = ACTIONS(1502), + [sym_float] = ACTIONS(1502), + [aux_sym_try_statement_token1] = ACTIONS(1502), + [aux_sym_goto_statement_token1] = ACTIONS(1502), + [aux_sym_continue_statement_token1] = ACTIONS(1502), + [aux_sym_break_statement_token1] = ACTIONS(1502), + [sym_integer] = ACTIONS(1502), + [aux_sym_return_statement_token1] = ACTIONS(1502), + [aux_sym_throw_expression_token1] = ACTIONS(1502), + [aux_sym_while_statement_token1] = ACTIONS(1502), + [aux_sym_while_statement_token2] = ACTIONS(1502), + [aux_sym_do_statement_token1] = ACTIONS(1502), + [aux_sym_for_statement_token1] = ACTIONS(1502), + [aux_sym_for_statement_token2] = ACTIONS(1502), + [aux_sym_foreach_statement_token1] = ACTIONS(1502), + [aux_sym_foreach_statement_token2] = ACTIONS(1502), + [aux_sym_if_statement_token1] = ACTIONS(1502), + [aux_sym_if_statement_token2] = ACTIONS(1502), + [aux_sym_else_if_clause_token1] = ACTIONS(1502), + [aux_sym_else_clause_token1] = ACTIONS(1502), + [aux_sym_match_expression_token1] = ACTIONS(1502), + [aux_sym_match_default_expression_token1] = ACTIONS(1502), + [aux_sym_switch_statement_token1] = ACTIONS(1502), + [aux_sym_switch_block_token1] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [aux_sym_clone_expression_token1] = ACTIONS(1502), + [aux_sym_print_intrinsic_token1] = ACTIONS(1502), + [aux_sym_object_creation_expression_token1] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [aux_sym__list_destructing_token1] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_self] = ACTIONS(1502), + [anon_sym_parent] = ACTIONS(1502), + [aux_sym__argument_name_token1] = ACTIONS(1502), + [aux_sym__argument_name_token2] = ACTIONS(1502), + [anon_sym_POUND_LBRACK] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [aux_sym_encapsed_string_token1] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [aux_sym_string_token1] = ACTIONS(1500), + [anon_sym_LT_LT_LT] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [aux_sym_yield_expression_token1] = ACTIONS(1502), + [aux_sym_include_expression_token1] = ACTIONS(1502), + [aux_sym_include_once_expression_token1] = ACTIONS(1502), + [aux_sym_require_expression_token1] = ACTIONS(1502), + [aux_sym_require_once_expression_token1] = ACTIONS(1502), [sym_comment] = ACTIONS(5), }, [553] = { @@ -76205,564 +76162,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_include_once_expression] = STATE(1074), [sym__reserved_identifier] = STATE(1599), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(655), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(244), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [aux_sym_clone_expression_token1] = ACTIONS(288), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [aux_sym_include_expression_token1] = ACTIONS(320), - [aux_sym_include_once_expression_token1] = ACTIONS(322), + [sym_name] = ACTIONS(657), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(246), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [aux_sym_clone_expression_token1] = ACTIONS(290), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [aux_sym_include_expression_token1] = ACTIONS(322), + [aux_sym_include_once_expression_token1] = ACTIONS(324), [sym_comment] = ACTIONS(5), }, [554] = { [sym_text_interpolation] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(1504), - [sym_name] = ACTIONS(1506), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1504), - [aux_sym_function_static_declaration_token1] = ACTIONS(1506), - [aux_sym_global_declaration_token1] = ACTIONS(1506), - [aux_sym_namespace_definition_token1] = ACTIONS(1506), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1506), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1506), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1506), - [anon_sym_BSLASH] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [aux_sym_trait_declaration_token1] = ACTIONS(1506), - [aux_sym_interface_declaration_token1] = ACTIONS(1506), - [aux_sym_enum_declaration_token1] = ACTIONS(1506), - [aux_sym_enum_case_token1] = ACTIONS(1506), - [aux_sym_class_declaration_token1] = ACTIONS(1506), - [aux_sym_final_modifier_token1] = ACTIONS(1506), - [aux_sym_abstract_modifier_token1] = ACTIONS(1506), - [aux_sym_readonly_modifier_token1] = ACTIONS(1506), - [aux_sym_visibility_modifier_token1] = ACTIONS(1506), - [aux_sym_visibility_modifier_token2] = ACTIONS(1506), - [aux_sym_visibility_modifier_token3] = ACTIONS(1506), - [aux_sym__arrow_function_header_token1] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1504), - [aux_sym_cast_type_token1] = ACTIONS(1506), - [aux_sym_echo_statement_token1] = ACTIONS(1506), - [anon_sym_unset] = ACTIONS(1506), - [aux_sym_declare_statement_token1] = ACTIONS(1506), - [aux_sym_declare_statement_token2] = ACTIONS(1506), - [sym_float] = ACTIONS(1506), - [aux_sym_try_statement_token1] = ACTIONS(1506), - [aux_sym_goto_statement_token1] = ACTIONS(1506), - [aux_sym_continue_statement_token1] = ACTIONS(1506), - [aux_sym_break_statement_token1] = ACTIONS(1506), - [sym_integer] = ACTIONS(1506), - [aux_sym_return_statement_token1] = ACTIONS(1506), - [aux_sym_throw_expression_token1] = ACTIONS(1506), - [aux_sym_while_statement_token1] = ACTIONS(1506), - [aux_sym_while_statement_token2] = ACTIONS(1506), - [aux_sym_do_statement_token1] = ACTIONS(1506), - [aux_sym_for_statement_token1] = ACTIONS(1506), - [aux_sym_for_statement_token2] = ACTIONS(1506), - [aux_sym_foreach_statement_token1] = ACTIONS(1506), - [aux_sym_foreach_statement_token2] = ACTIONS(1506), - [aux_sym_if_statement_token1] = ACTIONS(1506), - [aux_sym_if_statement_token2] = ACTIONS(1506), - [aux_sym_else_if_clause_token1] = ACTIONS(1506), - [aux_sym_else_clause_token1] = ACTIONS(1506), - [aux_sym_match_expression_token1] = ACTIONS(1506), - [aux_sym_match_default_expression_token1] = ACTIONS(1506), - [aux_sym_switch_statement_token1] = ACTIONS(1506), - [aux_sym_switch_block_token1] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(1504), - [aux_sym_clone_expression_token1] = ACTIONS(1506), - [aux_sym_print_intrinsic_token1] = ACTIONS(1506), - [aux_sym_object_creation_expression_token1] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1504), - [aux_sym__list_destructing_token1] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_self] = ACTIONS(1506), - [anon_sym_parent] = ACTIONS(1506), - [aux_sym__argument_name_token1] = ACTIONS(1506), - [aux_sym__argument_name_token2] = ACTIONS(1506), - [anon_sym_POUND_LBRACK] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [aux_sym_encapsed_string_token1] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1504), - [anon_sym_LT_LT_LT] = ACTIONS(1504), - [anon_sym_BQUOTE] = ACTIONS(1504), - [anon_sym_DOLLAR] = ACTIONS(1504), - [aux_sym_yield_expression_token1] = ACTIONS(1506), - [aux_sym_include_expression_token1] = ACTIONS(1506), - [aux_sym_include_once_expression_token1] = ACTIONS(1506), - [aux_sym_require_expression_token1] = ACTIONS(1506), - [aux_sym_require_once_expression_token1] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_name] = ACTIONS(1508), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1506), + [aux_sym_function_static_declaration_token1] = ACTIONS(1508), + [aux_sym_global_declaration_token1] = ACTIONS(1508), + [aux_sym_namespace_definition_token1] = ACTIONS(1508), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1508), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1508), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1508), + [anon_sym_BSLASH] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [aux_sym_trait_declaration_token1] = ACTIONS(1508), + [aux_sym_interface_declaration_token1] = ACTIONS(1508), + [aux_sym_enum_declaration_token1] = ACTIONS(1508), + [aux_sym_enum_case_token1] = ACTIONS(1508), + [aux_sym_class_declaration_token1] = ACTIONS(1508), + [aux_sym_final_modifier_token1] = ACTIONS(1508), + [aux_sym_abstract_modifier_token1] = ACTIONS(1508), + [aux_sym_readonly_modifier_token1] = ACTIONS(1508), + [aux_sym_visibility_modifier_token1] = ACTIONS(1508), + [aux_sym_visibility_modifier_token2] = ACTIONS(1508), + [aux_sym_visibility_modifier_token3] = ACTIONS(1508), + [aux_sym__arrow_function_header_token1] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1506), + [aux_sym_cast_type_token1] = ACTIONS(1508), + [aux_sym_echo_statement_token1] = ACTIONS(1508), + [anon_sym_unset] = ACTIONS(1508), + [aux_sym_declare_statement_token1] = ACTIONS(1508), + [aux_sym_declare_statement_token2] = ACTIONS(1508), + [sym_float] = ACTIONS(1508), + [aux_sym_try_statement_token1] = ACTIONS(1508), + [aux_sym_goto_statement_token1] = ACTIONS(1508), + [aux_sym_continue_statement_token1] = ACTIONS(1508), + [aux_sym_break_statement_token1] = ACTIONS(1508), + [sym_integer] = ACTIONS(1508), + [aux_sym_return_statement_token1] = ACTIONS(1508), + [aux_sym_throw_expression_token1] = ACTIONS(1508), + [aux_sym_while_statement_token1] = ACTIONS(1508), + [aux_sym_while_statement_token2] = ACTIONS(1508), + [aux_sym_do_statement_token1] = ACTIONS(1508), + [aux_sym_for_statement_token1] = ACTIONS(1508), + [aux_sym_for_statement_token2] = ACTIONS(1508), + [aux_sym_foreach_statement_token1] = ACTIONS(1508), + [aux_sym_foreach_statement_token2] = ACTIONS(1508), + [aux_sym_if_statement_token1] = ACTIONS(1508), + [aux_sym_if_statement_token2] = ACTIONS(1508), + [aux_sym_else_if_clause_token1] = ACTIONS(1508), + [aux_sym_else_clause_token1] = ACTIONS(1508), + [aux_sym_match_expression_token1] = ACTIONS(1508), + [aux_sym_match_default_expression_token1] = ACTIONS(1508), + [aux_sym_switch_statement_token1] = ACTIONS(1508), + [aux_sym_switch_block_token1] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_AT] = ACTIONS(1506), + [aux_sym_clone_expression_token1] = ACTIONS(1508), + [aux_sym_print_intrinsic_token1] = ACTIONS(1508), + [aux_sym_object_creation_expression_token1] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [aux_sym__list_destructing_token1] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_self] = ACTIONS(1508), + [anon_sym_parent] = ACTIONS(1508), + [aux_sym__argument_name_token1] = ACTIONS(1508), + [aux_sym__argument_name_token2] = ACTIONS(1508), + [anon_sym_POUND_LBRACK] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [aux_sym_encapsed_string_token1] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [aux_sym_string_token1] = ACTIONS(1506), + [anon_sym_LT_LT_LT] = ACTIONS(1506), + [anon_sym_BQUOTE] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1506), + [aux_sym_yield_expression_token1] = ACTIONS(1508), + [aux_sym_include_expression_token1] = ACTIONS(1508), + [aux_sym_include_once_expression_token1] = ACTIONS(1508), + [aux_sym_require_expression_token1] = ACTIONS(1508), + [aux_sym_require_once_expression_token1] = ACTIONS(1508), [sym_comment] = ACTIONS(5), }, [555] = { [sym_text_interpolation] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(1508), - [sym_name] = ACTIONS(1510), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1508), - [aux_sym_function_static_declaration_token1] = ACTIONS(1510), - [aux_sym_global_declaration_token1] = ACTIONS(1510), - [aux_sym_namespace_definition_token1] = ACTIONS(1510), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1510), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1510), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1510), - [anon_sym_BSLASH] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [aux_sym_trait_declaration_token1] = ACTIONS(1510), - [aux_sym_interface_declaration_token1] = ACTIONS(1510), - [aux_sym_enum_declaration_token1] = ACTIONS(1510), - [aux_sym_enum_case_token1] = ACTIONS(1510), - [aux_sym_class_declaration_token1] = ACTIONS(1510), - [aux_sym_final_modifier_token1] = ACTIONS(1510), - [aux_sym_abstract_modifier_token1] = ACTIONS(1510), - [aux_sym_readonly_modifier_token1] = ACTIONS(1510), - [aux_sym_visibility_modifier_token1] = ACTIONS(1510), - [aux_sym_visibility_modifier_token2] = ACTIONS(1510), - [aux_sym_visibility_modifier_token3] = ACTIONS(1510), - [aux_sym__arrow_function_header_token1] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1508), - [aux_sym_cast_type_token1] = ACTIONS(1510), - [aux_sym_echo_statement_token1] = ACTIONS(1510), - [anon_sym_unset] = ACTIONS(1510), - [aux_sym_declare_statement_token1] = ACTIONS(1510), - [aux_sym_declare_statement_token2] = ACTIONS(1510), - [sym_float] = ACTIONS(1510), - [aux_sym_try_statement_token1] = ACTIONS(1510), - [aux_sym_goto_statement_token1] = ACTIONS(1510), - [aux_sym_continue_statement_token1] = ACTIONS(1510), - [aux_sym_break_statement_token1] = ACTIONS(1510), - [sym_integer] = ACTIONS(1510), - [aux_sym_return_statement_token1] = ACTIONS(1510), - [aux_sym_throw_expression_token1] = ACTIONS(1510), - [aux_sym_while_statement_token1] = ACTIONS(1510), - [aux_sym_while_statement_token2] = ACTIONS(1510), - [aux_sym_do_statement_token1] = ACTIONS(1510), - [aux_sym_for_statement_token1] = ACTIONS(1510), - [aux_sym_for_statement_token2] = ACTIONS(1510), - [aux_sym_foreach_statement_token1] = ACTIONS(1510), - [aux_sym_foreach_statement_token2] = ACTIONS(1510), - [aux_sym_if_statement_token1] = ACTIONS(1510), - [aux_sym_if_statement_token2] = ACTIONS(1510), - [aux_sym_else_if_clause_token1] = ACTIONS(1510), - [aux_sym_else_clause_token1] = ACTIONS(1510), - [aux_sym_match_expression_token1] = ACTIONS(1510), - [aux_sym_match_default_expression_token1] = ACTIONS(1510), - [aux_sym_switch_statement_token1] = ACTIONS(1510), - [aux_sym_switch_block_token1] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_AT] = ACTIONS(1508), - [aux_sym_clone_expression_token1] = ACTIONS(1510), - [aux_sym_print_intrinsic_token1] = ACTIONS(1510), - [aux_sym_object_creation_expression_token1] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [aux_sym__list_destructing_token1] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_self] = ACTIONS(1510), - [anon_sym_parent] = ACTIONS(1510), - [aux_sym__argument_name_token1] = ACTIONS(1510), - [aux_sym__argument_name_token2] = ACTIONS(1510), - [anon_sym_POUND_LBRACK] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [aux_sym_encapsed_string_token1] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [aux_sym_string_token1] = ACTIONS(1508), - [anon_sym_LT_LT_LT] = ACTIONS(1508), - [anon_sym_BQUOTE] = ACTIONS(1508), - [anon_sym_DOLLAR] = ACTIONS(1508), - [aux_sym_yield_expression_token1] = ACTIONS(1510), - [aux_sym_include_expression_token1] = ACTIONS(1510), - [aux_sym_include_once_expression_token1] = ACTIONS(1510), - [aux_sym_require_expression_token1] = ACTIONS(1510), - [aux_sym_require_once_expression_token1] = ACTIONS(1510), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_name] = ACTIONS(1512), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1510), + [aux_sym_function_static_declaration_token1] = ACTIONS(1512), + [aux_sym_global_declaration_token1] = ACTIONS(1512), + [aux_sym_namespace_definition_token1] = ACTIONS(1512), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1512), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1512), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1512), + [anon_sym_BSLASH] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [aux_sym_trait_declaration_token1] = ACTIONS(1512), + [aux_sym_interface_declaration_token1] = ACTIONS(1512), + [aux_sym_enum_declaration_token1] = ACTIONS(1512), + [aux_sym_enum_case_token1] = ACTIONS(1512), + [aux_sym_class_declaration_token1] = ACTIONS(1512), + [aux_sym_final_modifier_token1] = ACTIONS(1512), + [aux_sym_abstract_modifier_token1] = ACTIONS(1512), + [aux_sym_readonly_modifier_token1] = ACTIONS(1512), + [aux_sym_visibility_modifier_token1] = ACTIONS(1512), + [aux_sym_visibility_modifier_token2] = ACTIONS(1512), + [aux_sym_visibility_modifier_token3] = ACTIONS(1512), + [aux_sym__arrow_function_header_token1] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1510), + [aux_sym_cast_type_token1] = ACTIONS(1512), + [aux_sym_echo_statement_token1] = ACTIONS(1512), + [anon_sym_unset] = ACTIONS(1512), + [aux_sym_declare_statement_token1] = ACTIONS(1512), + [aux_sym_declare_statement_token2] = ACTIONS(1512), + [sym_float] = ACTIONS(1512), + [aux_sym_try_statement_token1] = ACTIONS(1512), + [aux_sym_goto_statement_token1] = ACTIONS(1512), + [aux_sym_continue_statement_token1] = ACTIONS(1512), + [aux_sym_break_statement_token1] = ACTIONS(1512), + [sym_integer] = ACTIONS(1512), + [aux_sym_return_statement_token1] = ACTIONS(1512), + [aux_sym_throw_expression_token1] = ACTIONS(1512), + [aux_sym_while_statement_token1] = ACTIONS(1512), + [aux_sym_while_statement_token2] = ACTIONS(1512), + [aux_sym_do_statement_token1] = ACTIONS(1512), + [aux_sym_for_statement_token1] = ACTIONS(1512), + [aux_sym_for_statement_token2] = ACTIONS(1512), + [aux_sym_foreach_statement_token1] = ACTIONS(1512), + [aux_sym_foreach_statement_token2] = ACTIONS(1512), + [aux_sym_if_statement_token1] = ACTIONS(1512), + [aux_sym_if_statement_token2] = ACTIONS(1512), + [aux_sym_else_if_clause_token1] = ACTIONS(1512), + [aux_sym_else_clause_token1] = ACTIONS(1512), + [aux_sym_match_expression_token1] = ACTIONS(1512), + [aux_sym_match_default_expression_token1] = ACTIONS(1512), + [aux_sym_switch_statement_token1] = ACTIONS(1512), + [aux_sym_switch_block_token1] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1510), + [aux_sym_clone_expression_token1] = ACTIONS(1512), + [aux_sym_print_intrinsic_token1] = ACTIONS(1512), + [aux_sym_object_creation_expression_token1] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [aux_sym__list_destructing_token1] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_self] = ACTIONS(1512), + [anon_sym_parent] = ACTIONS(1512), + [aux_sym__argument_name_token1] = ACTIONS(1512), + [aux_sym__argument_name_token2] = ACTIONS(1512), + [anon_sym_POUND_LBRACK] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [aux_sym_encapsed_string_token1] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [aux_sym_string_token1] = ACTIONS(1510), + [anon_sym_LT_LT_LT] = ACTIONS(1510), + [anon_sym_BQUOTE] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1510), + [aux_sym_yield_expression_token1] = ACTIONS(1512), + [aux_sym_include_expression_token1] = ACTIONS(1512), + [aux_sym_include_once_expression_token1] = ACTIONS(1512), + [aux_sym_require_expression_token1] = ACTIONS(1512), + [aux_sym_require_once_expression_token1] = ACTIONS(1512), [sym_comment] = ACTIONS(5), }, [556] = { [sym_text_interpolation] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(1508), - [sym_name] = ACTIONS(1510), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1508), - [aux_sym_function_static_declaration_token1] = ACTIONS(1510), - [aux_sym_global_declaration_token1] = ACTIONS(1510), - [aux_sym_namespace_definition_token1] = ACTIONS(1510), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1510), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1510), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1510), - [anon_sym_BSLASH] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [aux_sym_trait_declaration_token1] = ACTIONS(1510), - [aux_sym_interface_declaration_token1] = ACTIONS(1510), - [aux_sym_enum_declaration_token1] = ACTIONS(1510), - [aux_sym_enum_case_token1] = ACTIONS(1510), - [aux_sym_class_declaration_token1] = ACTIONS(1510), - [aux_sym_final_modifier_token1] = ACTIONS(1510), - [aux_sym_abstract_modifier_token1] = ACTIONS(1510), - [aux_sym_readonly_modifier_token1] = ACTIONS(1510), - [aux_sym_visibility_modifier_token1] = ACTIONS(1510), - [aux_sym_visibility_modifier_token2] = ACTIONS(1510), - [aux_sym_visibility_modifier_token3] = ACTIONS(1510), - [aux_sym__arrow_function_header_token1] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1508), - [aux_sym_cast_type_token1] = ACTIONS(1510), - [aux_sym_echo_statement_token1] = ACTIONS(1510), - [anon_sym_unset] = ACTIONS(1510), - [aux_sym_declare_statement_token1] = ACTIONS(1510), - [aux_sym_declare_statement_token2] = ACTIONS(1510), - [sym_float] = ACTIONS(1510), - [aux_sym_try_statement_token1] = ACTIONS(1510), - [aux_sym_goto_statement_token1] = ACTIONS(1510), - [aux_sym_continue_statement_token1] = ACTIONS(1510), - [aux_sym_break_statement_token1] = ACTIONS(1510), - [sym_integer] = ACTIONS(1510), - [aux_sym_return_statement_token1] = ACTIONS(1510), - [aux_sym_throw_expression_token1] = ACTIONS(1510), - [aux_sym_while_statement_token1] = ACTIONS(1510), - [aux_sym_while_statement_token2] = ACTIONS(1510), - [aux_sym_do_statement_token1] = ACTIONS(1510), - [aux_sym_for_statement_token1] = ACTIONS(1510), - [aux_sym_for_statement_token2] = ACTIONS(1510), - [aux_sym_foreach_statement_token1] = ACTIONS(1510), - [aux_sym_foreach_statement_token2] = ACTIONS(1510), - [aux_sym_if_statement_token1] = ACTIONS(1510), - [aux_sym_if_statement_token2] = ACTIONS(1510), - [aux_sym_else_if_clause_token1] = ACTIONS(1510), - [aux_sym_else_clause_token1] = ACTIONS(1510), - [aux_sym_match_expression_token1] = ACTIONS(1510), - [aux_sym_match_default_expression_token1] = ACTIONS(1510), - [aux_sym_switch_statement_token1] = ACTIONS(1510), - [aux_sym_switch_block_token1] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_AT] = ACTIONS(1508), - [aux_sym_clone_expression_token1] = ACTIONS(1510), - [aux_sym_print_intrinsic_token1] = ACTIONS(1510), - [aux_sym_object_creation_expression_token1] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [aux_sym__list_destructing_token1] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_self] = ACTIONS(1510), - [anon_sym_parent] = ACTIONS(1510), - [aux_sym__argument_name_token1] = ACTIONS(1510), - [aux_sym__argument_name_token2] = ACTIONS(1510), - [anon_sym_POUND_LBRACK] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [aux_sym_encapsed_string_token1] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [aux_sym_string_token1] = ACTIONS(1508), - [anon_sym_LT_LT_LT] = ACTIONS(1508), - [anon_sym_BQUOTE] = ACTIONS(1508), - [anon_sym_DOLLAR] = ACTIONS(1508), - [aux_sym_yield_expression_token1] = ACTIONS(1510), - [aux_sym_include_expression_token1] = ACTIONS(1510), - [aux_sym_include_once_expression_token1] = ACTIONS(1510), - [aux_sym_require_expression_token1] = ACTIONS(1510), - [aux_sym_require_once_expression_token1] = ACTIONS(1510), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_name] = ACTIONS(1512), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1510), + [aux_sym_function_static_declaration_token1] = ACTIONS(1512), + [aux_sym_global_declaration_token1] = ACTIONS(1512), + [aux_sym_namespace_definition_token1] = ACTIONS(1512), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1512), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1512), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1512), + [anon_sym_BSLASH] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [aux_sym_trait_declaration_token1] = ACTIONS(1512), + [aux_sym_interface_declaration_token1] = ACTIONS(1512), + [aux_sym_enum_declaration_token1] = ACTIONS(1512), + [aux_sym_enum_case_token1] = ACTIONS(1512), + [aux_sym_class_declaration_token1] = ACTIONS(1512), + [aux_sym_final_modifier_token1] = ACTIONS(1512), + [aux_sym_abstract_modifier_token1] = ACTIONS(1512), + [aux_sym_readonly_modifier_token1] = ACTIONS(1512), + [aux_sym_visibility_modifier_token1] = ACTIONS(1512), + [aux_sym_visibility_modifier_token2] = ACTIONS(1512), + [aux_sym_visibility_modifier_token3] = ACTIONS(1512), + [aux_sym__arrow_function_header_token1] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1510), + [aux_sym_cast_type_token1] = ACTIONS(1512), + [aux_sym_echo_statement_token1] = ACTIONS(1512), + [anon_sym_unset] = ACTIONS(1512), + [aux_sym_declare_statement_token1] = ACTIONS(1512), + [aux_sym_declare_statement_token2] = ACTIONS(1512), + [sym_float] = ACTIONS(1512), + [aux_sym_try_statement_token1] = ACTIONS(1512), + [aux_sym_goto_statement_token1] = ACTIONS(1512), + [aux_sym_continue_statement_token1] = ACTIONS(1512), + [aux_sym_break_statement_token1] = ACTIONS(1512), + [sym_integer] = ACTIONS(1512), + [aux_sym_return_statement_token1] = ACTIONS(1512), + [aux_sym_throw_expression_token1] = ACTIONS(1512), + [aux_sym_while_statement_token1] = ACTIONS(1512), + [aux_sym_while_statement_token2] = ACTIONS(1512), + [aux_sym_do_statement_token1] = ACTIONS(1512), + [aux_sym_for_statement_token1] = ACTIONS(1512), + [aux_sym_for_statement_token2] = ACTIONS(1512), + [aux_sym_foreach_statement_token1] = ACTIONS(1512), + [aux_sym_foreach_statement_token2] = ACTIONS(1512), + [aux_sym_if_statement_token1] = ACTIONS(1512), + [aux_sym_if_statement_token2] = ACTIONS(1512), + [aux_sym_else_if_clause_token1] = ACTIONS(1512), + [aux_sym_else_clause_token1] = ACTIONS(1512), + [aux_sym_match_expression_token1] = ACTIONS(1512), + [aux_sym_match_default_expression_token1] = ACTIONS(1512), + [aux_sym_switch_statement_token1] = ACTIONS(1512), + [aux_sym_switch_block_token1] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1510), + [aux_sym_clone_expression_token1] = ACTIONS(1512), + [aux_sym_print_intrinsic_token1] = ACTIONS(1512), + [aux_sym_object_creation_expression_token1] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [aux_sym__list_destructing_token1] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_self] = ACTIONS(1512), + [anon_sym_parent] = ACTIONS(1512), + [aux_sym__argument_name_token1] = ACTIONS(1512), + [aux_sym__argument_name_token2] = ACTIONS(1512), + [anon_sym_POUND_LBRACK] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [aux_sym_encapsed_string_token1] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [aux_sym_string_token1] = ACTIONS(1510), + [anon_sym_LT_LT_LT] = ACTIONS(1510), + [anon_sym_BQUOTE] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1510), + [aux_sym_yield_expression_token1] = ACTIONS(1512), + [aux_sym_include_expression_token1] = ACTIONS(1512), + [aux_sym_include_once_expression_token1] = ACTIONS(1512), + [aux_sym_require_expression_token1] = ACTIONS(1512), + [aux_sym_require_once_expression_token1] = ACTIONS(1512), [sym_comment] = ACTIONS(5), }, [557] = { [sym_text_interpolation] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_name] = ACTIONS(1514), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1512), - [aux_sym_function_static_declaration_token1] = ACTIONS(1514), - [aux_sym_global_declaration_token1] = ACTIONS(1514), - [aux_sym_namespace_definition_token1] = ACTIONS(1514), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1514), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1514), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1514), - [anon_sym_BSLASH] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [aux_sym_trait_declaration_token1] = ACTIONS(1514), - [aux_sym_interface_declaration_token1] = ACTIONS(1514), - [aux_sym_enum_declaration_token1] = ACTIONS(1514), - [aux_sym_enum_case_token1] = ACTIONS(1514), - [aux_sym_class_declaration_token1] = ACTIONS(1514), - [aux_sym_final_modifier_token1] = ACTIONS(1514), - [aux_sym_abstract_modifier_token1] = ACTIONS(1514), - [aux_sym_readonly_modifier_token1] = ACTIONS(1514), - [aux_sym_visibility_modifier_token1] = ACTIONS(1514), - [aux_sym_visibility_modifier_token2] = ACTIONS(1514), - [aux_sym_visibility_modifier_token3] = ACTIONS(1514), - [aux_sym__arrow_function_header_token1] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1512), - [aux_sym_cast_type_token1] = ACTIONS(1514), - [aux_sym_echo_statement_token1] = ACTIONS(1514), - [anon_sym_unset] = ACTIONS(1514), - [aux_sym_declare_statement_token1] = ACTIONS(1514), - [aux_sym_declare_statement_token2] = ACTIONS(1514), - [sym_float] = ACTIONS(1514), - [aux_sym_try_statement_token1] = ACTIONS(1514), - [aux_sym_goto_statement_token1] = ACTIONS(1514), - [aux_sym_continue_statement_token1] = ACTIONS(1514), - [aux_sym_break_statement_token1] = ACTIONS(1514), - [sym_integer] = ACTIONS(1514), - [aux_sym_return_statement_token1] = ACTIONS(1514), - [aux_sym_throw_expression_token1] = ACTIONS(1514), - [aux_sym_while_statement_token1] = ACTIONS(1514), - [aux_sym_while_statement_token2] = ACTIONS(1514), - [aux_sym_do_statement_token1] = ACTIONS(1514), - [aux_sym_for_statement_token1] = ACTIONS(1514), - [aux_sym_for_statement_token2] = ACTIONS(1514), - [aux_sym_foreach_statement_token1] = ACTIONS(1514), - [aux_sym_foreach_statement_token2] = ACTIONS(1514), - [aux_sym_if_statement_token1] = ACTIONS(1514), - [aux_sym_if_statement_token2] = ACTIONS(1514), - [aux_sym_else_if_clause_token1] = ACTIONS(1514), - [aux_sym_else_clause_token1] = ACTIONS(1514), - [aux_sym_match_expression_token1] = ACTIONS(1514), - [aux_sym_match_default_expression_token1] = ACTIONS(1514), - [aux_sym_switch_statement_token1] = ACTIONS(1514), - [aux_sym_switch_block_token1] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(1512), - [aux_sym_clone_expression_token1] = ACTIONS(1514), - [aux_sym_print_intrinsic_token1] = ACTIONS(1514), - [aux_sym_object_creation_expression_token1] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [aux_sym__list_destructing_token1] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_self] = ACTIONS(1514), - [anon_sym_parent] = ACTIONS(1514), - [aux_sym__argument_name_token1] = ACTIONS(1514), - [aux_sym__argument_name_token2] = ACTIONS(1514), - [anon_sym_POUND_LBRACK] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [aux_sym_encapsed_string_token1] = ACTIONS(1512), - [anon_sym_DQUOTE] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1512), - [anon_sym_LT_LT_LT] = ACTIONS(1512), - [anon_sym_BQUOTE] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1512), - [aux_sym_yield_expression_token1] = ACTIONS(1514), - [aux_sym_include_expression_token1] = ACTIONS(1514), - [aux_sym_include_once_expression_token1] = ACTIONS(1514), - [aux_sym_require_expression_token1] = ACTIONS(1514), - [aux_sym_require_once_expression_token1] = ACTIONS(1514), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_name] = ACTIONS(1516), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1514), + [aux_sym_function_static_declaration_token1] = ACTIONS(1516), + [aux_sym_global_declaration_token1] = ACTIONS(1516), + [aux_sym_namespace_definition_token1] = ACTIONS(1516), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1516), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1516), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1516), + [anon_sym_BSLASH] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [aux_sym_trait_declaration_token1] = ACTIONS(1516), + [aux_sym_interface_declaration_token1] = ACTIONS(1516), + [aux_sym_enum_declaration_token1] = ACTIONS(1516), + [aux_sym_enum_case_token1] = ACTIONS(1516), + [aux_sym_class_declaration_token1] = ACTIONS(1516), + [aux_sym_final_modifier_token1] = ACTIONS(1516), + [aux_sym_abstract_modifier_token1] = ACTIONS(1516), + [aux_sym_readonly_modifier_token1] = ACTIONS(1516), + [aux_sym_visibility_modifier_token1] = ACTIONS(1516), + [aux_sym_visibility_modifier_token2] = ACTIONS(1516), + [aux_sym_visibility_modifier_token3] = ACTIONS(1516), + [aux_sym__arrow_function_header_token1] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1514), + [aux_sym_cast_type_token1] = ACTIONS(1516), + [aux_sym_echo_statement_token1] = ACTIONS(1516), + [anon_sym_unset] = ACTIONS(1516), + [aux_sym_declare_statement_token1] = ACTIONS(1516), + [aux_sym_declare_statement_token2] = ACTIONS(1516), + [sym_float] = ACTIONS(1516), + [aux_sym_try_statement_token1] = ACTIONS(1516), + [aux_sym_goto_statement_token1] = ACTIONS(1516), + [aux_sym_continue_statement_token1] = ACTIONS(1516), + [aux_sym_break_statement_token1] = ACTIONS(1516), + [sym_integer] = ACTIONS(1516), + [aux_sym_return_statement_token1] = ACTIONS(1516), + [aux_sym_throw_expression_token1] = ACTIONS(1516), + [aux_sym_while_statement_token1] = ACTIONS(1516), + [aux_sym_while_statement_token2] = ACTIONS(1516), + [aux_sym_do_statement_token1] = ACTIONS(1516), + [aux_sym_for_statement_token1] = ACTIONS(1516), + [aux_sym_for_statement_token2] = ACTIONS(1516), + [aux_sym_foreach_statement_token1] = ACTIONS(1516), + [aux_sym_foreach_statement_token2] = ACTIONS(1516), + [aux_sym_if_statement_token1] = ACTIONS(1516), + [aux_sym_if_statement_token2] = ACTIONS(1516), + [aux_sym_else_if_clause_token1] = ACTIONS(1516), + [aux_sym_else_clause_token1] = ACTIONS(1516), + [aux_sym_match_expression_token1] = ACTIONS(1516), + [aux_sym_match_default_expression_token1] = ACTIONS(1516), + [aux_sym_switch_statement_token1] = ACTIONS(1516), + [aux_sym_switch_block_token1] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_AT] = ACTIONS(1514), + [aux_sym_clone_expression_token1] = ACTIONS(1516), + [aux_sym_print_intrinsic_token1] = ACTIONS(1516), + [aux_sym_object_creation_expression_token1] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [aux_sym__list_destructing_token1] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_self] = ACTIONS(1516), + [anon_sym_parent] = ACTIONS(1516), + [aux_sym__argument_name_token1] = ACTIONS(1516), + [aux_sym__argument_name_token2] = ACTIONS(1516), + [anon_sym_POUND_LBRACK] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [aux_sym_encapsed_string_token1] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [aux_sym_string_token1] = ACTIONS(1514), + [anon_sym_LT_LT_LT] = ACTIONS(1514), + [anon_sym_BQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1514), + [aux_sym_yield_expression_token1] = ACTIONS(1516), + [aux_sym_include_expression_token1] = ACTIONS(1516), + [aux_sym_include_once_expression_token1] = ACTIONS(1516), + [aux_sym_require_expression_token1] = ACTIONS(1516), + [aux_sym_require_once_expression_token1] = ACTIONS(1516), [sym_comment] = ACTIONS(5), }, [558] = { [sym_text_interpolation] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_name] = ACTIONS(1518), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1516), - [aux_sym_function_static_declaration_token1] = ACTIONS(1518), - [aux_sym_global_declaration_token1] = ACTIONS(1518), - [aux_sym_namespace_definition_token1] = ACTIONS(1518), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1518), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1518), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1518), - [anon_sym_BSLASH] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [aux_sym_trait_declaration_token1] = ACTIONS(1518), - [aux_sym_interface_declaration_token1] = ACTIONS(1518), - [aux_sym_enum_declaration_token1] = ACTIONS(1518), - [aux_sym_enum_case_token1] = ACTIONS(1518), - [aux_sym_class_declaration_token1] = ACTIONS(1518), - [aux_sym_final_modifier_token1] = ACTIONS(1518), - [aux_sym_abstract_modifier_token1] = ACTIONS(1518), - [aux_sym_readonly_modifier_token1] = ACTIONS(1518), - [aux_sym_visibility_modifier_token1] = ACTIONS(1518), - [aux_sym_visibility_modifier_token2] = ACTIONS(1518), - [aux_sym_visibility_modifier_token3] = ACTIONS(1518), - [aux_sym__arrow_function_header_token1] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1516), - [aux_sym_cast_type_token1] = ACTIONS(1518), - [aux_sym_echo_statement_token1] = ACTIONS(1518), - [anon_sym_unset] = ACTIONS(1518), - [aux_sym_declare_statement_token1] = ACTIONS(1518), - [aux_sym_declare_statement_token2] = ACTIONS(1518), - [sym_float] = ACTIONS(1518), - [aux_sym_try_statement_token1] = ACTIONS(1518), - [aux_sym_goto_statement_token1] = ACTIONS(1518), - [aux_sym_continue_statement_token1] = ACTIONS(1518), - [aux_sym_break_statement_token1] = ACTIONS(1518), - [sym_integer] = ACTIONS(1518), - [aux_sym_return_statement_token1] = ACTIONS(1518), - [aux_sym_throw_expression_token1] = ACTIONS(1518), - [aux_sym_while_statement_token1] = ACTIONS(1518), - [aux_sym_while_statement_token2] = ACTIONS(1518), - [aux_sym_do_statement_token1] = ACTIONS(1518), - [aux_sym_for_statement_token1] = ACTIONS(1518), - [aux_sym_for_statement_token2] = ACTIONS(1518), - [aux_sym_foreach_statement_token1] = ACTIONS(1518), - [aux_sym_foreach_statement_token2] = ACTIONS(1518), - [aux_sym_if_statement_token1] = ACTIONS(1518), - [aux_sym_if_statement_token2] = ACTIONS(1518), - [aux_sym_else_if_clause_token1] = ACTIONS(1518), - [aux_sym_else_clause_token1] = ACTIONS(1518), - [aux_sym_match_expression_token1] = ACTIONS(1518), - [aux_sym_match_default_expression_token1] = ACTIONS(1518), - [aux_sym_switch_statement_token1] = ACTIONS(1518), - [aux_sym_switch_block_token1] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1516), - [aux_sym_clone_expression_token1] = ACTIONS(1518), - [aux_sym_print_intrinsic_token1] = ACTIONS(1518), - [aux_sym_object_creation_expression_token1] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [aux_sym__list_destructing_token1] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_self] = ACTIONS(1518), - [anon_sym_parent] = ACTIONS(1518), - [aux_sym__argument_name_token1] = ACTIONS(1518), - [aux_sym__argument_name_token2] = ACTIONS(1518), - [anon_sym_POUND_LBRACK] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [aux_sym_encapsed_string_token1] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [aux_sym_string_token1] = ACTIONS(1516), - [anon_sym_LT_LT_LT] = ACTIONS(1516), - [anon_sym_BQUOTE] = ACTIONS(1516), - [anon_sym_DOLLAR] = ACTIONS(1516), - [aux_sym_yield_expression_token1] = ACTIONS(1518), - [aux_sym_include_expression_token1] = ACTIONS(1518), - [aux_sym_include_once_expression_token1] = ACTIONS(1518), - [aux_sym_require_expression_token1] = ACTIONS(1518), - [aux_sym_require_once_expression_token1] = ACTIONS(1518), + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_name] = ACTIONS(1520), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1518), + [aux_sym_function_static_declaration_token1] = ACTIONS(1520), + [aux_sym_global_declaration_token1] = ACTIONS(1520), + [aux_sym_namespace_definition_token1] = ACTIONS(1520), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1520), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1520), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1520), + [anon_sym_BSLASH] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [aux_sym_trait_declaration_token1] = ACTIONS(1520), + [aux_sym_interface_declaration_token1] = ACTIONS(1520), + [aux_sym_enum_declaration_token1] = ACTIONS(1520), + [aux_sym_enum_case_token1] = ACTIONS(1520), + [aux_sym_class_declaration_token1] = ACTIONS(1520), + [aux_sym_final_modifier_token1] = ACTIONS(1520), + [aux_sym_abstract_modifier_token1] = ACTIONS(1520), + [aux_sym_readonly_modifier_token1] = ACTIONS(1520), + [aux_sym_visibility_modifier_token1] = ACTIONS(1520), + [aux_sym_visibility_modifier_token2] = ACTIONS(1520), + [aux_sym_visibility_modifier_token3] = ACTIONS(1520), + [aux_sym__arrow_function_header_token1] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1518), + [aux_sym_cast_type_token1] = ACTIONS(1520), + [aux_sym_echo_statement_token1] = ACTIONS(1520), + [anon_sym_unset] = ACTIONS(1520), + [aux_sym_declare_statement_token1] = ACTIONS(1520), + [aux_sym_declare_statement_token2] = ACTIONS(1520), + [sym_float] = ACTIONS(1520), + [aux_sym_try_statement_token1] = ACTIONS(1520), + [aux_sym_goto_statement_token1] = ACTIONS(1520), + [aux_sym_continue_statement_token1] = ACTIONS(1520), + [aux_sym_break_statement_token1] = ACTIONS(1520), + [sym_integer] = ACTIONS(1520), + [aux_sym_return_statement_token1] = ACTIONS(1520), + [aux_sym_throw_expression_token1] = ACTIONS(1520), + [aux_sym_while_statement_token1] = ACTIONS(1520), + [aux_sym_while_statement_token2] = ACTIONS(1520), + [aux_sym_do_statement_token1] = ACTIONS(1520), + [aux_sym_for_statement_token1] = ACTIONS(1520), + [aux_sym_for_statement_token2] = ACTIONS(1520), + [aux_sym_foreach_statement_token1] = ACTIONS(1520), + [aux_sym_foreach_statement_token2] = ACTIONS(1520), + [aux_sym_if_statement_token1] = ACTIONS(1520), + [aux_sym_if_statement_token2] = ACTIONS(1520), + [aux_sym_else_if_clause_token1] = ACTIONS(1520), + [aux_sym_else_clause_token1] = ACTIONS(1520), + [aux_sym_match_expression_token1] = ACTIONS(1520), + [aux_sym_match_default_expression_token1] = ACTIONS(1520), + [aux_sym_switch_statement_token1] = ACTIONS(1520), + [aux_sym_switch_block_token1] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_AT] = ACTIONS(1518), + [aux_sym_clone_expression_token1] = ACTIONS(1520), + [aux_sym_print_intrinsic_token1] = ACTIONS(1520), + [aux_sym_object_creation_expression_token1] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [aux_sym__list_destructing_token1] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_self] = ACTIONS(1520), + [anon_sym_parent] = ACTIONS(1520), + [aux_sym__argument_name_token1] = ACTIONS(1520), + [aux_sym__argument_name_token2] = ACTIONS(1520), + [anon_sym_POUND_LBRACK] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [aux_sym_encapsed_string_token1] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [aux_sym_string_token1] = ACTIONS(1518), + [anon_sym_LT_LT_LT] = ACTIONS(1518), + [anon_sym_BQUOTE] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [aux_sym_yield_expression_token1] = ACTIONS(1520), + [aux_sym_include_expression_token1] = ACTIONS(1520), + [aux_sym_include_once_expression_token1] = ACTIONS(1520), + [aux_sym_require_expression_token1] = ACTIONS(1520), + [aux_sym_require_once_expression_token1] = ACTIONS(1520), [sym_comment] = ACTIONS(5), }, [559] = { [sym_text_interpolation] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_name] = ACTIONS(1522), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1520), - [aux_sym_function_static_declaration_token1] = ACTIONS(1522), - [aux_sym_global_declaration_token1] = ACTIONS(1522), - [aux_sym_namespace_definition_token1] = ACTIONS(1522), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1522), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1522), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1522), - [anon_sym_BSLASH] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [aux_sym_trait_declaration_token1] = ACTIONS(1522), - [aux_sym_interface_declaration_token1] = ACTIONS(1522), - [aux_sym_enum_declaration_token1] = ACTIONS(1522), - [aux_sym_enum_case_token1] = ACTIONS(1522), - [aux_sym_class_declaration_token1] = ACTIONS(1522), - [aux_sym_final_modifier_token1] = ACTIONS(1522), - [aux_sym_abstract_modifier_token1] = ACTIONS(1522), - [aux_sym_readonly_modifier_token1] = ACTIONS(1522), - [aux_sym_visibility_modifier_token1] = ACTIONS(1522), - [aux_sym_visibility_modifier_token2] = ACTIONS(1522), - [aux_sym_visibility_modifier_token3] = ACTIONS(1522), - [aux_sym__arrow_function_header_token1] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1520), - [aux_sym_cast_type_token1] = ACTIONS(1522), - [aux_sym_echo_statement_token1] = ACTIONS(1522), - [anon_sym_unset] = ACTIONS(1522), - [aux_sym_declare_statement_token1] = ACTIONS(1522), - [aux_sym_declare_statement_token2] = ACTIONS(1522), - [sym_float] = ACTIONS(1522), - [aux_sym_try_statement_token1] = ACTIONS(1522), - [aux_sym_goto_statement_token1] = ACTIONS(1522), - [aux_sym_continue_statement_token1] = ACTIONS(1522), - [aux_sym_break_statement_token1] = ACTIONS(1522), - [sym_integer] = ACTIONS(1522), - [aux_sym_return_statement_token1] = ACTIONS(1522), - [aux_sym_throw_expression_token1] = ACTIONS(1522), - [aux_sym_while_statement_token1] = ACTIONS(1522), - [aux_sym_while_statement_token2] = ACTIONS(1522), - [aux_sym_do_statement_token1] = ACTIONS(1522), - [aux_sym_for_statement_token1] = ACTIONS(1522), - [aux_sym_for_statement_token2] = ACTIONS(1522), - [aux_sym_foreach_statement_token1] = ACTIONS(1522), - [aux_sym_foreach_statement_token2] = ACTIONS(1522), - [aux_sym_if_statement_token1] = ACTIONS(1522), - [aux_sym_if_statement_token2] = ACTIONS(1522), - [aux_sym_else_if_clause_token1] = ACTIONS(1522), - [aux_sym_else_clause_token1] = ACTIONS(1522), - [aux_sym_match_expression_token1] = ACTIONS(1522), - [aux_sym_match_default_expression_token1] = ACTIONS(1522), - [aux_sym_switch_statement_token1] = ACTIONS(1522), - [aux_sym_switch_block_token1] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [aux_sym_clone_expression_token1] = ACTIONS(1522), - [aux_sym_print_intrinsic_token1] = ACTIONS(1522), - [aux_sym_object_creation_expression_token1] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [aux_sym__list_destructing_token1] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_self] = ACTIONS(1522), - [anon_sym_parent] = ACTIONS(1522), - [aux_sym__argument_name_token1] = ACTIONS(1522), - [aux_sym__argument_name_token2] = ACTIONS(1522), - [anon_sym_POUND_LBRACK] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [aux_sym_encapsed_string_token1] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [aux_sym_string_token1] = ACTIONS(1520), - [anon_sym_LT_LT_LT] = ACTIONS(1520), - [anon_sym_BQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [aux_sym_yield_expression_token1] = ACTIONS(1522), - [aux_sym_include_expression_token1] = ACTIONS(1522), - [aux_sym_include_once_expression_token1] = ACTIONS(1522), - [aux_sym_require_expression_token1] = ACTIONS(1522), - [aux_sym_require_once_expression_token1] = ACTIONS(1522), + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_name] = ACTIONS(1524), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1522), + [aux_sym_function_static_declaration_token1] = ACTIONS(1524), + [aux_sym_global_declaration_token1] = ACTIONS(1524), + [aux_sym_namespace_definition_token1] = ACTIONS(1524), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1524), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1524), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1524), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [aux_sym_trait_declaration_token1] = ACTIONS(1524), + [aux_sym_interface_declaration_token1] = ACTIONS(1524), + [aux_sym_enum_declaration_token1] = ACTIONS(1524), + [aux_sym_enum_case_token1] = ACTIONS(1524), + [aux_sym_class_declaration_token1] = ACTIONS(1524), + [aux_sym_final_modifier_token1] = ACTIONS(1524), + [aux_sym_abstract_modifier_token1] = ACTIONS(1524), + [aux_sym_readonly_modifier_token1] = ACTIONS(1524), + [aux_sym_visibility_modifier_token1] = ACTIONS(1524), + [aux_sym_visibility_modifier_token2] = ACTIONS(1524), + [aux_sym_visibility_modifier_token3] = ACTIONS(1524), + [aux_sym__arrow_function_header_token1] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1522), + [aux_sym_cast_type_token1] = ACTIONS(1524), + [aux_sym_echo_statement_token1] = ACTIONS(1524), + [anon_sym_unset] = ACTIONS(1524), + [aux_sym_declare_statement_token1] = ACTIONS(1524), + [aux_sym_declare_statement_token2] = ACTIONS(1524), + [sym_float] = ACTIONS(1524), + [aux_sym_try_statement_token1] = ACTIONS(1524), + [aux_sym_goto_statement_token1] = ACTIONS(1524), + [aux_sym_continue_statement_token1] = ACTIONS(1524), + [aux_sym_break_statement_token1] = ACTIONS(1524), + [sym_integer] = ACTIONS(1524), + [aux_sym_return_statement_token1] = ACTIONS(1524), + [aux_sym_throw_expression_token1] = ACTIONS(1524), + [aux_sym_while_statement_token1] = ACTIONS(1524), + [aux_sym_while_statement_token2] = ACTIONS(1524), + [aux_sym_do_statement_token1] = ACTIONS(1524), + [aux_sym_for_statement_token1] = ACTIONS(1524), + [aux_sym_for_statement_token2] = ACTIONS(1524), + [aux_sym_foreach_statement_token1] = ACTIONS(1524), + [aux_sym_foreach_statement_token2] = ACTIONS(1524), + [aux_sym_if_statement_token1] = ACTIONS(1524), + [aux_sym_if_statement_token2] = ACTIONS(1524), + [aux_sym_else_if_clause_token1] = ACTIONS(1524), + [aux_sym_else_clause_token1] = ACTIONS(1524), + [aux_sym_match_expression_token1] = ACTIONS(1524), + [aux_sym_match_default_expression_token1] = ACTIONS(1524), + [aux_sym_switch_statement_token1] = ACTIONS(1524), + [aux_sym_switch_block_token1] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_AT] = ACTIONS(1522), + [aux_sym_clone_expression_token1] = ACTIONS(1524), + [aux_sym_print_intrinsic_token1] = ACTIONS(1524), + [aux_sym_object_creation_expression_token1] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [aux_sym__list_destructing_token1] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_self] = ACTIONS(1524), + [anon_sym_parent] = ACTIONS(1524), + [aux_sym__argument_name_token1] = ACTIONS(1524), + [aux_sym__argument_name_token2] = ACTIONS(1524), + [anon_sym_POUND_LBRACK] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [aux_sym_encapsed_string_token1] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [aux_sym_string_token1] = ACTIONS(1522), + [anon_sym_LT_LT_LT] = ACTIONS(1522), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [aux_sym_yield_expression_token1] = ACTIONS(1524), + [aux_sym_include_expression_token1] = ACTIONS(1524), + [aux_sym_include_once_expression_token1] = ACTIONS(1524), + [aux_sym_require_expression_token1] = ACTIONS(1524), + [aux_sym_require_once_expression_token1] = ACTIONS(1524), [sym_comment] = ACTIONS(5), }, [560] = { @@ -76814,757 +76771,672 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_include_once_expression] = STATE(906), [sym__reserved_identifier] = STATE(1590), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(557), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(571), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [aux_sym_clone_expression_token1] = ACTIONS(589), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(617), - [aux_sym_include_once_expression_token1] = ACTIONS(619), + [sym_name] = ACTIONS(559), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [aux_sym_clone_expression_token1] = ACTIONS(591), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(613), + [aux_sym_include_expression_token1] = ACTIONS(619), + [aux_sym_include_once_expression_token1] = ACTIONS(621), [sym_comment] = ACTIONS(5), }, [561] = { [sym_text_interpolation] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_name] = ACTIONS(1526), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1524), - [aux_sym_function_static_declaration_token1] = ACTIONS(1526), - [aux_sym_global_declaration_token1] = ACTIONS(1526), - [aux_sym_namespace_definition_token1] = ACTIONS(1526), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1526), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1526), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1526), - [anon_sym_BSLASH] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [aux_sym_trait_declaration_token1] = ACTIONS(1526), - [aux_sym_interface_declaration_token1] = ACTIONS(1526), - [aux_sym_enum_declaration_token1] = ACTIONS(1526), - [aux_sym_enum_case_token1] = ACTIONS(1526), - [aux_sym_class_declaration_token1] = ACTIONS(1526), - [aux_sym_final_modifier_token1] = ACTIONS(1526), - [aux_sym_abstract_modifier_token1] = ACTIONS(1526), - [aux_sym_readonly_modifier_token1] = ACTIONS(1526), - [aux_sym_visibility_modifier_token1] = ACTIONS(1526), - [aux_sym_visibility_modifier_token2] = ACTIONS(1526), - [aux_sym_visibility_modifier_token3] = ACTIONS(1526), - [aux_sym__arrow_function_header_token1] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1524), - [aux_sym_cast_type_token1] = ACTIONS(1526), - [aux_sym_echo_statement_token1] = ACTIONS(1526), - [anon_sym_unset] = ACTIONS(1526), - [aux_sym_declare_statement_token1] = ACTIONS(1526), - [aux_sym_declare_statement_token2] = ACTIONS(1526), - [sym_float] = ACTIONS(1526), - [aux_sym_try_statement_token1] = ACTIONS(1526), - [aux_sym_goto_statement_token1] = ACTIONS(1526), - [aux_sym_continue_statement_token1] = ACTIONS(1526), - [aux_sym_break_statement_token1] = ACTIONS(1526), - [sym_integer] = ACTIONS(1526), - [aux_sym_return_statement_token1] = ACTIONS(1526), - [aux_sym_throw_expression_token1] = ACTIONS(1526), - [aux_sym_while_statement_token1] = ACTIONS(1526), - [aux_sym_while_statement_token2] = ACTIONS(1526), - [aux_sym_do_statement_token1] = ACTIONS(1526), - [aux_sym_for_statement_token1] = ACTIONS(1526), - [aux_sym_for_statement_token2] = ACTIONS(1526), - [aux_sym_foreach_statement_token1] = ACTIONS(1526), - [aux_sym_foreach_statement_token2] = ACTIONS(1526), - [aux_sym_if_statement_token1] = ACTIONS(1526), - [aux_sym_if_statement_token2] = ACTIONS(1526), - [aux_sym_else_if_clause_token1] = ACTIONS(1526), - [aux_sym_else_clause_token1] = ACTIONS(1526), - [aux_sym_match_expression_token1] = ACTIONS(1526), - [aux_sym_match_default_expression_token1] = ACTIONS(1526), - [aux_sym_switch_statement_token1] = ACTIONS(1526), - [aux_sym_switch_block_token1] = ACTIONS(1526), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [aux_sym_clone_expression_token1] = ACTIONS(1526), - [aux_sym_print_intrinsic_token1] = ACTIONS(1526), - [aux_sym_object_creation_expression_token1] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1524), - [anon_sym_PLUS_PLUS] = ACTIONS(1524), - [aux_sym__list_destructing_token1] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_self] = ACTIONS(1526), - [anon_sym_parent] = ACTIONS(1526), - [aux_sym__argument_name_token1] = ACTIONS(1526), - [aux_sym__argument_name_token2] = ACTIONS(1526), - [anon_sym_POUND_LBRACK] = ACTIONS(1524), - [anon_sym_SQUOTE] = ACTIONS(1524), - [aux_sym_encapsed_string_token1] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [aux_sym_string_token1] = ACTIONS(1524), - [anon_sym_LT_LT_LT] = ACTIONS(1524), - [anon_sym_BQUOTE] = ACTIONS(1524), - [anon_sym_DOLLAR] = ACTIONS(1524), - [aux_sym_yield_expression_token1] = ACTIONS(1526), - [aux_sym_include_expression_token1] = ACTIONS(1526), - [aux_sym_include_once_expression_token1] = ACTIONS(1526), - [aux_sym_require_expression_token1] = ACTIONS(1526), - [aux_sym_require_once_expression_token1] = ACTIONS(1526), + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_name] = ACTIONS(1528), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1526), + [aux_sym_function_static_declaration_token1] = ACTIONS(1528), + [aux_sym_global_declaration_token1] = ACTIONS(1528), + [aux_sym_namespace_definition_token1] = ACTIONS(1528), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1528), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1528), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1528), + [anon_sym_BSLASH] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [aux_sym_trait_declaration_token1] = ACTIONS(1528), + [aux_sym_interface_declaration_token1] = ACTIONS(1528), + [aux_sym_enum_declaration_token1] = ACTIONS(1528), + [aux_sym_enum_case_token1] = ACTIONS(1528), + [aux_sym_class_declaration_token1] = ACTIONS(1528), + [aux_sym_final_modifier_token1] = ACTIONS(1528), + [aux_sym_abstract_modifier_token1] = ACTIONS(1528), + [aux_sym_readonly_modifier_token1] = ACTIONS(1528), + [aux_sym_visibility_modifier_token1] = ACTIONS(1528), + [aux_sym_visibility_modifier_token2] = ACTIONS(1528), + [aux_sym_visibility_modifier_token3] = ACTIONS(1528), + [aux_sym__arrow_function_header_token1] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1526), + [aux_sym_cast_type_token1] = ACTIONS(1528), + [aux_sym_echo_statement_token1] = ACTIONS(1528), + [anon_sym_unset] = ACTIONS(1528), + [aux_sym_declare_statement_token1] = ACTIONS(1528), + [aux_sym_declare_statement_token2] = ACTIONS(1528), + [sym_float] = ACTIONS(1528), + [aux_sym_try_statement_token1] = ACTIONS(1528), + [aux_sym_goto_statement_token1] = ACTIONS(1528), + [aux_sym_continue_statement_token1] = ACTIONS(1528), + [aux_sym_break_statement_token1] = ACTIONS(1528), + [sym_integer] = ACTIONS(1528), + [aux_sym_return_statement_token1] = ACTIONS(1528), + [aux_sym_throw_expression_token1] = ACTIONS(1528), + [aux_sym_while_statement_token1] = ACTIONS(1528), + [aux_sym_while_statement_token2] = ACTIONS(1528), + [aux_sym_do_statement_token1] = ACTIONS(1528), + [aux_sym_for_statement_token1] = ACTIONS(1528), + [aux_sym_for_statement_token2] = ACTIONS(1528), + [aux_sym_foreach_statement_token1] = ACTIONS(1528), + [aux_sym_foreach_statement_token2] = ACTIONS(1528), + [aux_sym_if_statement_token1] = ACTIONS(1528), + [aux_sym_if_statement_token2] = ACTIONS(1528), + [aux_sym_else_if_clause_token1] = ACTIONS(1528), + [aux_sym_else_clause_token1] = ACTIONS(1528), + [aux_sym_match_expression_token1] = ACTIONS(1528), + [aux_sym_match_default_expression_token1] = ACTIONS(1528), + [aux_sym_switch_statement_token1] = ACTIONS(1528), + [aux_sym_switch_block_token1] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [aux_sym_clone_expression_token1] = ACTIONS(1528), + [aux_sym_print_intrinsic_token1] = ACTIONS(1528), + [aux_sym_object_creation_expression_token1] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [aux_sym__list_destructing_token1] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_self] = ACTIONS(1528), + [anon_sym_parent] = ACTIONS(1528), + [aux_sym__argument_name_token1] = ACTIONS(1528), + [aux_sym__argument_name_token2] = ACTIONS(1528), + [anon_sym_POUND_LBRACK] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [aux_sym_encapsed_string_token1] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [aux_sym_string_token1] = ACTIONS(1526), + [anon_sym_LT_LT_LT] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [aux_sym_yield_expression_token1] = ACTIONS(1528), + [aux_sym_include_expression_token1] = ACTIONS(1528), + [aux_sym_include_once_expression_token1] = ACTIONS(1528), + [aux_sym_require_expression_token1] = ACTIONS(1528), + [aux_sym_require_once_expression_token1] = ACTIONS(1528), [sym_comment] = ACTIONS(5), }, [562] = { [sym_text_interpolation] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_name] = ACTIONS(1530), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1528), - [aux_sym_function_static_declaration_token1] = ACTIONS(1530), - [aux_sym_global_declaration_token1] = ACTIONS(1530), - [aux_sym_namespace_definition_token1] = ACTIONS(1530), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1530), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1530), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1530), - [anon_sym_BSLASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [aux_sym_trait_declaration_token1] = ACTIONS(1530), - [aux_sym_interface_declaration_token1] = ACTIONS(1530), - [aux_sym_enum_declaration_token1] = ACTIONS(1530), - [aux_sym_enum_case_token1] = ACTIONS(1530), - [aux_sym_class_declaration_token1] = ACTIONS(1530), - [aux_sym_final_modifier_token1] = ACTIONS(1530), - [aux_sym_abstract_modifier_token1] = ACTIONS(1530), - [aux_sym_readonly_modifier_token1] = ACTIONS(1530), - [aux_sym_visibility_modifier_token1] = ACTIONS(1530), - [aux_sym_visibility_modifier_token2] = ACTIONS(1530), - [aux_sym_visibility_modifier_token3] = ACTIONS(1530), - [aux_sym__arrow_function_header_token1] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [aux_sym_cast_type_token1] = ACTIONS(1530), - [aux_sym_echo_statement_token1] = ACTIONS(1530), - [anon_sym_unset] = ACTIONS(1530), - [aux_sym_declare_statement_token1] = ACTIONS(1530), - [aux_sym_declare_statement_token2] = ACTIONS(1530), - [sym_float] = ACTIONS(1530), - [aux_sym_try_statement_token1] = ACTIONS(1530), - [aux_sym_goto_statement_token1] = ACTIONS(1530), - [aux_sym_continue_statement_token1] = ACTIONS(1530), - [aux_sym_break_statement_token1] = ACTIONS(1530), - [sym_integer] = ACTIONS(1530), - [aux_sym_return_statement_token1] = ACTIONS(1530), - [aux_sym_throw_expression_token1] = ACTIONS(1530), - [aux_sym_while_statement_token1] = ACTIONS(1530), - [aux_sym_while_statement_token2] = ACTIONS(1530), - [aux_sym_do_statement_token1] = ACTIONS(1530), - [aux_sym_for_statement_token1] = ACTIONS(1530), - [aux_sym_for_statement_token2] = ACTIONS(1530), - [aux_sym_foreach_statement_token1] = ACTIONS(1530), - [aux_sym_foreach_statement_token2] = ACTIONS(1530), - [aux_sym_if_statement_token1] = ACTIONS(1530), - [aux_sym_if_statement_token2] = ACTIONS(1530), - [aux_sym_else_if_clause_token1] = ACTIONS(1530), - [aux_sym_else_clause_token1] = ACTIONS(1530), - [aux_sym_match_expression_token1] = ACTIONS(1530), - [aux_sym_match_default_expression_token1] = ACTIONS(1530), - [aux_sym_switch_statement_token1] = ACTIONS(1530), - [aux_sym_switch_block_token1] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(1528), - [aux_sym_clone_expression_token1] = ACTIONS(1530), - [aux_sym_print_intrinsic_token1] = ACTIONS(1530), - [aux_sym_object_creation_expression_token1] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [aux_sym__list_destructing_token1] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_self] = ACTIONS(1530), - [anon_sym_parent] = ACTIONS(1530), - [aux_sym__argument_name_token1] = ACTIONS(1530), - [aux_sym__argument_name_token2] = ACTIONS(1530), - [anon_sym_POUND_LBRACK] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [aux_sym_encapsed_string_token1] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [aux_sym_string_token1] = ACTIONS(1528), - [anon_sym_LT_LT_LT] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [aux_sym_yield_expression_token1] = ACTIONS(1530), - [aux_sym_include_expression_token1] = ACTIONS(1530), - [aux_sym_include_once_expression_token1] = ACTIONS(1530), - [aux_sym_require_expression_token1] = ACTIONS(1530), - [aux_sym_require_once_expression_token1] = ACTIONS(1530), + [ts_builtin_sym_end] = ACTIONS(1530), + [sym_name] = ACTIONS(1532), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1530), + [aux_sym_function_static_declaration_token1] = ACTIONS(1532), + [aux_sym_global_declaration_token1] = ACTIONS(1532), + [aux_sym_namespace_definition_token1] = ACTIONS(1532), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1532), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1532), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1532), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [aux_sym_trait_declaration_token1] = ACTIONS(1532), + [aux_sym_interface_declaration_token1] = ACTIONS(1532), + [aux_sym_enum_declaration_token1] = ACTIONS(1532), + [aux_sym_enum_case_token1] = ACTIONS(1532), + [aux_sym_class_declaration_token1] = ACTIONS(1532), + [aux_sym_final_modifier_token1] = ACTIONS(1532), + [aux_sym_abstract_modifier_token1] = ACTIONS(1532), + [aux_sym_readonly_modifier_token1] = ACTIONS(1532), + [aux_sym_visibility_modifier_token1] = ACTIONS(1532), + [aux_sym_visibility_modifier_token2] = ACTIONS(1532), + [aux_sym_visibility_modifier_token3] = ACTIONS(1532), + [aux_sym__arrow_function_header_token1] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1530), + [aux_sym_cast_type_token1] = ACTIONS(1532), + [aux_sym_echo_statement_token1] = ACTIONS(1532), + [anon_sym_unset] = ACTIONS(1532), + [aux_sym_declare_statement_token1] = ACTIONS(1532), + [aux_sym_declare_statement_token2] = ACTIONS(1532), + [sym_float] = ACTIONS(1532), + [aux_sym_try_statement_token1] = ACTIONS(1532), + [aux_sym_goto_statement_token1] = ACTIONS(1532), + [aux_sym_continue_statement_token1] = ACTIONS(1532), + [aux_sym_break_statement_token1] = ACTIONS(1532), + [sym_integer] = ACTIONS(1532), + [aux_sym_return_statement_token1] = ACTIONS(1532), + [aux_sym_throw_expression_token1] = ACTIONS(1532), + [aux_sym_while_statement_token1] = ACTIONS(1532), + [aux_sym_while_statement_token2] = ACTIONS(1532), + [aux_sym_do_statement_token1] = ACTIONS(1532), + [aux_sym_for_statement_token1] = ACTIONS(1532), + [aux_sym_for_statement_token2] = ACTIONS(1532), + [aux_sym_foreach_statement_token1] = ACTIONS(1532), + [aux_sym_foreach_statement_token2] = ACTIONS(1532), + [aux_sym_if_statement_token1] = ACTIONS(1532), + [aux_sym_if_statement_token2] = ACTIONS(1532), + [aux_sym_else_if_clause_token1] = ACTIONS(1532), + [aux_sym_else_clause_token1] = ACTIONS(1532), + [aux_sym_match_expression_token1] = ACTIONS(1532), + [aux_sym_match_default_expression_token1] = ACTIONS(1532), + [aux_sym_switch_statement_token1] = ACTIONS(1532), + [aux_sym_switch_block_token1] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_AT] = ACTIONS(1530), + [aux_sym_clone_expression_token1] = ACTIONS(1532), + [aux_sym_print_intrinsic_token1] = ACTIONS(1532), + [aux_sym_object_creation_expression_token1] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [aux_sym__list_destructing_token1] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_self] = ACTIONS(1532), + [anon_sym_parent] = ACTIONS(1532), + [aux_sym__argument_name_token1] = ACTIONS(1532), + [aux_sym__argument_name_token2] = ACTIONS(1532), + [anon_sym_POUND_LBRACK] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [aux_sym_encapsed_string_token1] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [aux_sym_string_token1] = ACTIONS(1530), + [anon_sym_LT_LT_LT] = ACTIONS(1530), + [anon_sym_BQUOTE] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1530), + [aux_sym_yield_expression_token1] = ACTIONS(1532), + [aux_sym_include_expression_token1] = ACTIONS(1532), + [aux_sym_include_once_expression_token1] = ACTIONS(1532), + [aux_sym_require_expression_token1] = ACTIONS(1532), + [aux_sym_require_once_expression_token1] = ACTIONS(1532), [sym_comment] = ACTIONS(5), }, [563] = { [sym_text_interpolation] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(1532), - [sym_name] = ACTIONS(1534), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1532), - [aux_sym_function_static_declaration_token1] = ACTIONS(1534), - [aux_sym_global_declaration_token1] = ACTIONS(1534), - [aux_sym_namespace_definition_token1] = ACTIONS(1534), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1534), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1534), - [anon_sym_BSLASH] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [aux_sym_trait_declaration_token1] = ACTIONS(1534), - [aux_sym_interface_declaration_token1] = ACTIONS(1534), - [aux_sym_enum_declaration_token1] = ACTIONS(1534), - [aux_sym_enum_case_token1] = ACTIONS(1534), - [aux_sym_class_declaration_token1] = ACTIONS(1534), - [aux_sym_final_modifier_token1] = ACTIONS(1534), - [aux_sym_abstract_modifier_token1] = ACTIONS(1534), - [aux_sym_readonly_modifier_token1] = ACTIONS(1534), - [aux_sym_visibility_modifier_token1] = ACTIONS(1534), - [aux_sym_visibility_modifier_token2] = ACTIONS(1534), - [aux_sym_visibility_modifier_token3] = ACTIONS(1534), - [aux_sym__arrow_function_header_token1] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1532), - [aux_sym_cast_type_token1] = ACTIONS(1534), - [aux_sym_echo_statement_token1] = ACTIONS(1534), - [anon_sym_unset] = ACTIONS(1534), - [aux_sym_declare_statement_token1] = ACTIONS(1534), - [aux_sym_declare_statement_token2] = ACTIONS(1534), - [sym_float] = ACTIONS(1534), - [aux_sym_try_statement_token1] = ACTIONS(1534), - [aux_sym_goto_statement_token1] = ACTIONS(1534), - [aux_sym_continue_statement_token1] = ACTIONS(1534), - [aux_sym_break_statement_token1] = ACTIONS(1534), - [sym_integer] = ACTIONS(1534), - [aux_sym_return_statement_token1] = ACTIONS(1534), - [aux_sym_throw_expression_token1] = ACTIONS(1534), - [aux_sym_while_statement_token1] = ACTIONS(1534), - [aux_sym_while_statement_token2] = ACTIONS(1534), - [aux_sym_do_statement_token1] = ACTIONS(1534), - [aux_sym_for_statement_token1] = ACTIONS(1534), - [aux_sym_for_statement_token2] = ACTIONS(1534), - [aux_sym_foreach_statement_token1] = ACTIONS(1534), - [aux_sym_foreach_statement_token2] = ACTIONS(1534), - [aux_sym_if_statement_token1] = ACTIONS(1534), - [aux_sym_if_statement_token2] = ACTIONS(1534), - [aux_sym_else_if_clause_token1] = ACTIONS(1534), - [aux_sym_else_clause_token1] = ACTIONS(1534), - [aux_sym_match_expression_token1] = ACTIONS(1534), - [aux_sym_match_default_expression_token1] = ACTIONS(1534), - [aux_sym_switch_statement_token1] = ACTIONS(1534), - [aux_sym_switch_block_token1] = ACTIONS(1534), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_AT] = ACTIONS(1532), - [aux_sym_clone_expression_token1] = ACTIONS(1534), - [aux_sym_print_intrinsic_token1] = ACTIONS(1534), - [aux_sym_object_creation_expression_token1] = ACTIONS(1534), - [anon_sym_DASH_DASH] = ACTIONS(1532), - [anon_sym_PLUS_PLUS] = ACTIONS(1532), - [aux_sym__list_destructing_token1] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_self] = ACTIONS(1534), - [anon_sym_parent] = ACTIONS(1534), - [aux_sym__argument_name_token1] = ACTIONS(1534), - [aux_sym__argument_name_token2] = ACTIONS(1534), - [anon_sym_POUND_LBRACK] = ACTIONS(1532), - [anon_sym_SQUOTE] = ACTIONS(1532), - [aux_sym_encapsed_string_token1] = ACTIONS(1532), - [anon_sym_DQUOTE] = ACTIONS(1532), - [aux_sym_string_token1] = ACTIONS(1532), - [anon_sym_LT_LT_LT] = ACTIONS(1532), - [anon_sym_BQUOTE] = ACTIONS(1532), - [anon_sym_DOLLAR] = ACTIONS(1532), - [aux_sym_yield_expression_token1] = ACTIONS(1534), - [aux_sym_include_expression_token1] = ACTIONS(1534), - [aux_sym_include_once_expression_token1] = ACTIONS(1534), - [aux_sym_require_expression_token1] = ACTIONS(1534), - [aux_sym_require_once_expression_token1] = ACTIONS(1534), + [ts_builtin_sym_end] = ACTIONS(1534), + [sym_name] = ACTIONS(1536), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1534), + [aux_sym_function_static_declaration_token1] = ACTIONS(1536), + [aux_sym_global_declaration_token1] = ACTIONS(1536), + [aux_sym_namespace_definition_token1] = ACTIONS(1536), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1536), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1536), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [aux_sym_trait_declaration_token1] = ACTIONS(1536), + [aux_sym_interface_declaration_token1] = ACTIONS(1536), + [aux_sym_enum_declaration_token1] = ACTIONS(1536), + [aux_sym_enum_case_token1] = ACTIONS(1536), + [aux_sym_class_declaration_token1] = ACTIONS(1536), + [aux_sym_final_modifier_token1] = ACTIONS(1536), + [aux_sym_abstract_modifier_token1] = ACTIONS(1536), + [aux_sym_readonly_modifier_token1] = ACTIONS(1536), + [aux_sym_visibility_modifier_token1] = ACTIONS(1536), + [aux_sym_visibility_modifier_token2] = ACTIONS(1536), + [aux_sym_visibility_modifier_token3] = ACTIONS(1536), + [aux_sym__arrow_function_header_token1] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1534), + [aux_sym_cast_type_token1] = ACTIONS(1536), + [aux_sym_echo_statement_token1] = ACTIONS(1536), + [anon_sym_unset] = ACTIONS(1536), + [aux_sym_declare_statement_token1] = ACTIONS(1536), + [aux_sym_declare_statement_token2] = ACTIONS(1536), + [sym_float] = ACTIONS(1536), + [aux_sym_try_statement_token1] = ACTIONS(1536), + [aux_sym_goto_statement_token1] = ACTIONS(1536), + [aux_sym_continue_statement_token1] = ACTIONS(1536), + [aux_sym_break_statement_token1] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [aux_sym_return_statement_token1] = ACTIONS(1536), + [aux_sym_throw_expression_token1] = ACTIONS(1536), + [aux_sym_while_statement_token1] = ACTIONS(1536), + [aux_sym_while_statement_token2] = ACTIONS(1536), + [aux_sym_do_statement_token1] = ACTIONS(1536), + [aux_sym_for_statement_token1] = ACTIONS(1536), + [aux_sym_for_statement_token2] = ACTIONS(1536), + [aux_sym_foreach_statement_token1] = ACTIONS(1536), + [aux_sym_foreach_statement_token2] = ACTIONS(1536), + [aux_sym_if_statement_token1] = ACTIONS(1536), + [aux_sym_if_statement_token2] = ACTIONS(1536), + [aux_sym_else_if_clause_token1] = ACTIONS(1536), + [aux_sym_else_clause_token1] = ACTIONS(1536), + [aux_sym_match_expression_token1] = ACTIONS(1536), + [aux_sym_match_default_expression_token1] = ACTIONS(1536), + [aux_sym_switch_statement_token1] = ACTIONS(1536), + [aux_sym_switch_block_token1] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_AT] = ACTIONS(1534), + [aux_sym_clone_expression_token1] = ACTIONS(1536), + [aux_sym_print_intrinsic_token1] = ACTIONS(1536), + [aux_sym_object_creation_expression_token1] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [aux_sym__list_destructing_token1] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_self] = ACTIONS(1536), + [anon_sym_parent] = ACTIONS(1536), + [aux_sym__argument_name_token1] = ACTIONS(1536), + [aux_sym__argument_name_token2] = ACTIONS(1536), + [anon_sym_POUND_LBRACK] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [aux_sym_encapsed_string_token1] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [aux_sym_string_token1] = ACTIONS(1534), + [anon_sym_LT_LT_LT] = ACTIONS(1534), + [anon_sym_BQUOTE] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1534), + [aux_sym_yield_expression_token1] = ACTIONS(1536), + [aux_sym_include_expression_token1] = ACTIONS(1536), + [aux_sym_include_once_expression_token1] = ACTIONS(1536), + [aux_sym_require_expression_token1] = ACTIONS(1536), + [aux_sym_require_once_expression_token1] = ACTIONS(1536), [sym_comment] = ACTIONS(5), }, [564] = { [sym_text_interpolation] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(1536), - [sym_name] = ACTIONS(1538), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1536), - [aux_sym_function_static_declaration_token1] = ACTIONS(1538), - [aux_sym_global_declaration_token1] = ACTIONS(1538), - [aux_sym_namespace_definition_token1] = ACTIONS(1538), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1538), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1538), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1538), - [anon_sym_BSLASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [aux_sym_trait_declaration_token1] = ACTIONS(1538), - [aux_sym_interface_declaration_token1] = ACTIONS(1538), - [aux_sym_enum_declaration_token1] = ACTIONS(1538), - [aux_sym_enum_case_token1] = ACTIONS(1538), - [aux_sym_class_declaration_token1] = ACTIONS(1538), - [aux_sym_final_modifier_token1] = ACTIONS(1538), - [aux_sym_abstract_modifier_token1] = ACTIONS(1538), - [aux_sym_readonly_modifier_token1] = ACTIONS(1538), - [aux_sym_visibility_modifier_token1] = ACTIONS(1538), - [aux_sym_visibility_modifier_token2] = ACTIONS(1538), - [aux_sym_visibility_modifier_token3] = ACTIONS(1538), - [aux_sym__arrow_function_header_token1] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [aux_sym_cast_type_token1] = ACTIONS(1538), - [aux_sym_echo_statement_token1] = ACTIONS(1538), - [anon_sym_unset] = ACTIONS(1538), - [aux_sym_declare_statement_token1] = ACTIONS(1538), - [aux_sym_declare_statement_token2] = ACTIONS(1538), - [sym_float] = ACTIONS(1538), - [aux_sym_try_statement_token1] = ACTIONS(1538), - [aux_sym_goto_statement_token1] = ACTIONS(1538), - [aux_sym_continue_statement_token1] = ACTIONS(1538), - [aux_sym_break_statement_token1] = ACTIONS(1538), - [sym_integer] = ACTIONS(1538), - [aux_sym_return_statement_token1] = ACTIONS(1538), - [aux_sym_throw_expression_token1] = ACTIONS(1538), - [aux_sym_while_statement_token1] = ACTIONS(1538), - [aux_sym_while_statement_token2] = ACTIONS(1538), - [aux_sym_do_statement_token1] = ACTIONS(1538), - [aux_sym_for_statement_token1] = ACTIONS(1538), - [aux_sym_for_statement_token2] = ACTIONS(1538), - [aux_sym_foreach_statement_token1] = ACTIONS(1538), - [aux_sym_foreach_statement_token2] = ACTIONS(1538), - [aux_sym_if_statement_token1] = ACTIONS(1538), - [aux_sym_if_statement_token2] = ACTIONS(1538), - [aux_sym_else_if_clause_token1] = ACTIONS(1538), - [aux_sym_else_clause_token1] = ACTIONS(1538), - [aux_sym_match_expression_token1] = ACTIONS(1538), - [aux_sym_match_default_expression_token1] = ACTIONS(1538), - [aux_sym_switch_statement_token1] = ACTIONS(1538), - [aux_sym_switch_block_token1] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1538), - [anon_sym_TILDE] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_AT] = ACTIONS(1536), - [aux_sym_clone_expression_token1] = ACTIONS(1538), - [aux_sym_print_intrinsic_token1] = ACTIONS(1538), - [aux_sym_object_creation_expression_token1] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1536), - [anon_sym_PLUS_PLUS] = ACTIONS(1536), - [aux_sym__list_destructing_token1] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_self] = ACTIONS(1538), - [anon_sym_parent] = ACTIONS(1538), - [aux_sym__argument_name_token1] = ACTIONS(1538), - [aux_sym__argument_name_token2] = ACTIONS(1538), - [anon_sym_POUND_LBRACK] = ACTIONS(1536), - [anon_sym_SQUOTE] = ACTIONS(1536), - [aux_sym_encapsed_string_token1] = ACTIONS(1536), - [anon_sym_DQUOTE] = ACTIONS(1536), - [aux_sym_string_token1] = ACTIONS(1536), - [anon_sym_LT_LT_LT] = ACTIONS(1536), - [anon_sym_BQUOTE] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1536), - [aux_sym_yield_expression_token1] = ACTIONS(1538), - [aux_sym_include_expression_token1] = ACTIONS(1538), - [aux_sym_include_once_expression_token1] = ACTIONS(1538), - [aux_sym_require_expression_token1] = ACTIONS(1538), - [aux_sym_require_once_expression_token1] = ACTIONS(1538), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_name] = ACTIONS(1540), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1538), + [aux_sym_function_static_declaration_token1] = ACTIONS(1540), + [aux_sym_global_declaration_token1] = ACTIONS(1540), + [aux_sym_namespace_definition_token1] = ACTIONS(1540), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1540), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1540), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1540), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [aux_sym_trait_declaration_token1] = ACTIONS(1540), + [aux_sym_interface_declaration_token1] = ACTIONS(1540), + [aux_sym_enum_declaration_token1] = ACTIONS(1540), + [aux_sym_enum_case_token1] = ACTIONS(1540), + [aux_sym_class_declaration_token1] = ACTIONS(1540), + [aux_sym_final_modifier_token1] = ACTIONS(1540), + [aux_sym_abstract_modifier_token1] = ACTIONS(1540), + [aux_sym_readonly_modifier_token1] = ACTIONS(1540), + [aux_sym_visibility_modifier_token1] = ACTIONS(1540), + [aux_sym_visibility_modifier_token2] = ACTIONS(1540), + [aux_sym_visibility_modifier_token3] = ACTIONS(1540), + [aux_sym__arrow_function_header_token1] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1538), + [aux_sym_cast_type_token1] = ACTIONS(1540), + [aux_sym_echo_statement_token1] = ACTIONS(1540), + [anon_sym_unset] = ACTIONS(1540), + [aux_sym_declare_statement_token1] = ACTIONS(1540), + [aux_sym_declare_statement_token2] = ACTIONS(1540), + [sym_float] = ACTIONS(1540), + [aux_sym_try_statement_token1] = ACTIONS(1540), + [aux_sym_goto_statement_token1] = ACTIONS(1540), + [aux_sym_continue_statement_token1] = ACTIONS(1540), + [aux_sym_break_statement_token1] = ACTIONS(1540), + [sym_integer] = ACTIONS(1540), + [aux_sym_return_statement_token1] = ACTIONS(1540), + [aux_sym_throw_expression_token1] = ACTIONS(1540), + [aux_sym_while_statement_token1] = ACTIONS(1540), + [aux_sym_while_statement_token2] = ACTIONS(1540), + [aux_sym_do_statement_token1] = ACTIONS(1540), + [aux_sym_for_statement_token1] = ACTIONS(1540), + [aux_sym_for_statement_token2] = ACTIONS(1540), + [aux_sym_foreach_statement_token1] = ACTIONS(1540), + [aux_sym_foreach_statement_token2] = ACTIONS(1540), + [aux_sym_if_statement_token1] = ACTIONS(1540), + [aux_sym_if_statement_token2] = ACTIONS(1540), + [aux_sym_else_if_clause_token1] = ACTIONS(1540), + [aux_sym_else_clause_token1] = ACTIONS(1540), + [aux_sym_match_expression_token1] = ACTIONS(1540), + [aux_sym_match_default_expression_token1] = ACTIONS(1540), + [aux_sym_switch_statement_token1] = ACTIONS(1540), + [aux_sym_switch_block_token1] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [aux_sym_clone_expression_token1] = ACTIONS(1540), + [aux_sym_print_intrinsic_token1] = ACTIONS(1540), + [aux_sym_object_creation_expression_token1] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [aux_sym__list_destructing_token1] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_self] = ACTIONS(1540), + [anon_sym_parent] = ACTIONS(1540), + [aux_sym__argument_name_token1] = ACTIONS(1540), + [aux_sym__argument_name_token2] = ACTIONS(1540), + [anon_sym_POUND_LBRACK] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [aux_sym_encapsed_string_token1] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [aux_sym_string_token1] = ACTIONS(1538), + [anon_sym_LT_LT_LT] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [aux_sym_yield_expression_token1] = ACTIONS(1540), + [aux_sym_include_expression_token1] = ACTIONS(1540), + [aux_sym_include_once_expression_token1] = ACTIONS(1540), + [aux_sym_require_expression_token1] = ACTIONS(1540), + [aux_sym_require_once_expression_token1] = ACTIONS(1540), [sym_comment] = ACTIONS(5), }, [565] = { [sym_text_interpolation] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(1040), - [sym_name] = ACTIONS(1042), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1040), - [aux_sym_function_static_declaration_token1] = ACTIONS(1042), - [aux_sym_global_declaration_token1] = ACTIONS(1042), - [aux_sym_namespace_definition_token1] = ACTIONS(1042), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1042), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1042), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1042), - [anon_sym_BSLASH] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [aux_sym_trait_declaration_token1] = ACTIONS(1042), - [aux_sym_interface_declaration_token1] = ACTIONS(1042), - [aux_sym_enum_declaration_token1] = ACTIONS(1042), - [aux_sym_enum_case_token1] = ACTIONS(1042), - [aux_sym_class_declaration_token1] = ACTIONS(1042), - [aux_sym_final_modifier_token1] = ACTIONS(1042), - [aux_sym_abstract_modifier_token1] = ACTIONS(1042), - [aux_sym_readonly_modifier_token1] = ACTIONS(1042), - [aux_sym_visibility_modifier_token1] = ACTIONS(1042), - [aux_sym_visibility_modifier_token2] = ACTIONS(1042), - [aux_sym_visibility_modifier_token3] = ACTIONS(1042), - [aux_sym__arrow_function_header_token1] = ACTIONS(1042), - [anon_sym_LPAREN] = ACTIONS(1040), - [aux_sym_cast_type_token1] = ACTIONS(1042), - [aux_sym_echo_statement_token1] = ACTIONS(1042), - [anon_sym_unset] = ACTIONS(1042), - [aux_sym_declare_statement_token1] = ACTIONS(1042), - [aux_sym_declare_statement_token2] = ACTIONS(1042), - [sym_float] = ACTIONS(1042), - [aux_sym_try_statement_token1] = ACTIONS(1042), - [aux_sym_goto_statement_token1] = ACTIONS(1042), - [aux_sym_continue_statement_token1] = ACTIONS(1042), - [aux_sym_break_statement_token1] = ACTIONS(1042), - [sym_integer] = ACTIONS(1042), - [aux_sym_return_statement_token1] = ACTIONS(1042), - [aux_sym_throw_expression_token1] = ACTIONS(1042), - [aux_sym_while_statement_token1] = ACTIONS(1042), - [aux_sym_while_statement_token2] = ACTIONS(1042), - [aux_sym_do_statement_token1] = ACTIONS(1042), - [aux_sym_for_statement_token1] = ACTIONS(1042), - [aux_sym_for_statement_token2] = ACTIONS(1042), - [aux_sym_foreach_statement_token1] = ACTIONS(1042), - [aux_sym_foreach_statement_token2] = ACTIONS(1042), - [aux_sym_if_statement_token1] = ACTIONS(1042), - [aux_sym_if_statement_token2] = ACTIONS(1042), - [aux_sym_else_if_clause_token1] = ACTIONS(1042), - [aux_sym_else_clause_token1] = ACTIONS(1042), - [aux_sym_match_expression_token1] = ACTIONS(1042), - [aux_sym_match_default_expression_token1] = ACTIONS(1042), - [aux_sym_switch_statement_token1] = ACTIONS(1042), - [aux_sym_switch_block_token1] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_AT] = ACTIONS(1040), - [aux_sym_clone_expression_token1] = ACTIONS(1042), - [aux_sym_print_intrinsic_token1] = ACTIONS(1042), - [aux_sym_object_creation_expression_token1] = ACTIONS(1042), - [anon_sym_DASH_DASH] = ACTIONS(1040), - [anon_sym_PLUS_PLUS] = ACTIONS(1040), - [aux_sym__list_destructing_token1] = ACTIONS(1042), - [anon_sym_LBRACK] = ACTIONS(1040), - [anon_sym_self] = ACTIONS(1042), - [anon_sym_parent] = ACTIONS(1042), - [aux_sym__argument_name_token1] = ACTIONS(1042), - [aux_sym__argument_name_token2] = ACTIONS(1042), - [anon_sym_POUND_LBRACK] = ACTIONS(1040), - [anon_sym_SQUOTE] = ACTIONS(1040), - [aux_sym_encapsed_string_token1] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [aux_sym_string_token1] = ACTIONS(1040), - [anon_sym_LT_LT_LT] = ACTIONS(1040), - [anon_sym_BQUOTE] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1040), - [aux_sym_yield_expression_token1] = ACTIONS(1042), - [aux_sym_include_expression_token1] = ACTIONS(1042), - [aux_sym_include_once_expression_token1] = ACTIONS(1042), - [aux_sym_require_expression_token1] = ACTIONS(1042), - [aux_sym_require_once_expression_token1] = ACTIONS(1042), + [ts_builtin_sym_end] = ACTIONS(1042), + [sym_name] = ACTIONS(1044), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1042), + [aux_sym_function_static_declaration_token1] = ACTIONS(1044), + [aux_sym_global_declaration_token1] = ACTIONS(1044), + [aux_sym_namespace_definition_token1] = ACTIONS(1044), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1044), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1044), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1044), + [anon_sym_BSLASH] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [aux_sym_trait_declaration_token1] = ACTIONS(1044), + [aux_sym_interface_declaration_token1] = ACTIONS(1044), + [aux_sym_enum_declaration_token1] = ACTIONS(1044), + [aux_sym_enum_case_token1] = ACTIONS(1044), + [aux_sym_class_declaration_token1] = ACTIONS(1044), + [aux_sym_final_modifier_token1] = ACTIONS(1044), + [aux_sym_abstract_modifier_token1] = ACTIONS(1044), + [aux_sym_readonly_modifier_token1] = ACTIONS(1044), + [aux_sym_visibility_modifier_token1] = ACTIONS(1044), + [aux_sym_visibility_modifier_token2] = ACTIONS(1044), + [aux_sym_visibility_modifier_token3] = ACTIONS(1044), + [aux_sym__arrow_function_header_token1] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1042), + [aux_sym_cast_type_token1] = ACTIONS(1044), + [aux_sym_echo_statement_token1] = ACTIONS(1044), + [anon_sym_unset] = ACTIONS(1044), + [aux_sym_declare_statement_token1] = ACTIONS(1044), + [aux_sym_declare_statement_token2] = ACTIONS(1044), + [sym_float] = ACTIONS(1044), + [aux_sym_try_statement_token1] = ACTIONS(1044), + [aux_sym_goto_statement_token1] = ACTIONS(1044), + [aux_sym_continue_statement_token1] = ACTIONS(1044), + [aux_sym_break_statement_token1] = ACTIONS(1044), + [sym_integer] = ACTIONS(1044), + [aux_sym_return_statement_token1] = ACTIONS(1044), + [aux_sym_throw_expression_token1] = ACTIONS(1044), + [aux_sym_while_statement_token1] = ACTIONS(1044), + [aux_sym_while_statement_token2] = ACTIONS(1044), + [aux_sym_do_statement_token1] = ACTIONS(1044), + [aux_sym_for_statement_token1] = ACTIONS(1044), + [aux_sym_for_statement_token2] = ACTIONS(1044), + [aux_sym_foreach_statement_token1] = ACTIONS(1044), + [aux_sym_foreach_statement_token2] = ACTIONS(1044), + [aux_sym_if_statement_token1] = ACTIONS(1044), + [aux_sym_if_statement_token2] = ACTIONS(1044), + [aux_sym_else_if_clause_token1] = ACTIONS(1044), + [aux_sym_else_clause_token1] = ACTIONS(1044), + [aux_sym_match_expression_token1] = ACTIONS(1044), + [aux_sym_match_default_expression_token1] = ACTIONS(1044), + [aux_sym_switch_statement_token1] = ACTIONS(1044), + [aux_sym_switch_block_token1] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1042), + [aux_sym_clone_expression_token1] = ACTIONS(1044), + [aux_sym_print_intrinsic_token1] = ACTIONS(1044), + [aux_sym_object_creation_expression_token1] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [aux_sym__list_destructing_token1] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_self] = ACTIONS(1044), + [anon_sym_parent] = ACTIONS(1044), + [aux_sym__argument_name_token1] = ACTIONS(1044), + [aux_sym__argument_name_token2] = ACTIONS(1044), + [anon_sym_POUND_LBRACK] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [aux_sym_encapsed_string_token1] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [aux_sym_string_token1] = ACTIONS(1042), + [anon_sym_LT_LT_LT] = ACTIONS(1042), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [aux_sym_yield_expression_token1] = ACTIONS(1044), + [aux_sym_include_expression_token1] = ACTIONS(1044), + [aux_sym_include_once_expression_token1] = ACTIONS(1044), + [aux_sym_require_expression_token1] = ACTIONS(1044), + [aux_sym_require_once_expression_token1] = ACTIONS(1044), [sym_comment] = ACTIONS(5), }, [566] = { [sym_text_interpolation] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(1540), - [sym_name] = ACTIONS(1542), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1540), - [aux_sym_function_static_declaration_token1] = ACTIONS(1542), - [aux_sym_global_declaration_token1] = ACTIONS(1542), - [aux_sym_namespace_definition_token1] = ACTIONS(1542), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1542), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1542), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1542), - [anon_sym_BSLASH] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [aux_sym_trait_declaration_token1] = ACTIONS(1542), - [aux_sym_interface_declaration_token1] = ACTIONS(1542), - [aux_sym_enum_declaration_token1] = ACTIONS(1542), - [aux_sym_enum_case_token1] = ACTIONS(1542), - [aux_sym_class_declaration_token1] = ACTIONS(1542), - [aux_sym_final_modifier_token1] = ACTIONS(1542), - [aux_sym_abstract_modifier_token1] = ACTIONS(1542), - [aux_sym_readonly_modifier_token1] = ACTIONS(1542), - [aux_sym_visibility_modifier_token1] = ACTIONS(1542), - [aux_sym_visibility_modifier_token2] = ACTIONS(1542), - [aux_sym_visibility_modifier_token3] = ACTIONS(1542), - [aux_sym__arrow_function_header_token1] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1540), - [aux_sym_cast_type_token1] = ACTIONS(1542), - [aux_sym_echo_statement_token1] = ACTIONS(1542), - [anon_sym_unset] = ACTIONS(1542), - [aux_sym_declare_statement_token1] = ACTIONS(1542), - [aux_sym_declare_statement_token2] = ACTIONS(1542), - [sym_float] = ACTIONS(1542), - [aux_sym_try_statement_token1] = ACTIONS(1542), - [aux_sym_goto_statement_token1] = ACTIONS(1542), - [aux_sym_continue_statement_token1] = ACTIONS(1542), - [aux_sym_break_statement_token1] = ACTIONS(1542), - [sym_integer] = ACTIONS(1542), - [aux_sym_return_statement_token1] = ACTIONS(1542), - [aux_sym_throw_expression_token1] = ACTIONS(1542), - [aux_sym_while_statement_token1] = ACTIONS(1542), - [aux_sym_while_statement_token2] = ACTIONS(1542), - [aux_sym_do_statement_token1] = ACTIONS(1542), - [aux_sym_for_statement_token1] = ACTIONS(1542), - [aux_sym_for_statement_token2] = ACTIONS(1542), - [aux_sym_foreach_statement_token1] = ACTIONS(1542), - [aux_sym_foreach_statement_token2] = ACTIONS(1542), - [aux_sym_if_statement_token1] = ACTIONS(1542), - [aux_sym_if_statement_token2] = ACTIONS(1542), - [aux_sym_else_if_clause_token1] = ACTIONS(1542), - [aux_sym_else_clause_token1] = ACTIONS(1542), - [aux_sym_match_expression_token1] = ACTIONS(1542), - [aux_sym_match_default_expression_token1] = ACTIONS(1542), - [aux_sym_switch_statement_token1] = ACTIONS(1542), - [aux_sym_switch_block_token1] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_AT] = ACTIONS(1540), - [aux_sym_clone_expression_token1] = ACTIONS(1542), - [aux_sym_print_intrinsic_token1] = ACTIONS(1542), - [aux_sym_object_creation_expression_token1] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [aux_sym__list_destructing_token1] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_self] = ACTIONS(1542), - [anon_sym_parent] = ACTIONS(1542), - [aux_sym__argument_name_token1] = ACTIONS(1542), - [aux_sym__argument_name_token2] = ACTIONS(1542), - [anon_sym_POUND_LBRACK] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(1540), - [aux_sym_encapsed_string_token1] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [aux_sym_string_token1] = ACTIONS(1540), - [anon_sym_LT_LT_LT] = ACTIONS(1540), - [anon_sym_BQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1540), - [aux_sym_yield_expression_token1] = ACTIONS(1542), - [aux_sym_include_expression_token1] = ACTIONS(1542), - [aux_sym_include_once_expression_token1] = ACTIONS(1542), - [aux_sym_require_expression_token1] = ACTIONS(1542), - [aux_sym_require_once_expression_token1] = ACTIONS(1542), + [ts_builtin_sym_end] = ACTIONS(1542), + [sym_name] = ACTIONS(1544), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1542), + [aux_sym_function_static_declaration_token1] = ACTIONS(1544), + [aux_sym_global_declaration_token1] = ACTIONS(1544), + [aux_sym_namespace_definition_token1] = ACTIONS(1544), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1544), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1544), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1544), + [anon_sym_BSLASH] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [aux_sym_trait_declaration_token1] = ACTIONS(1544), + [aux_sym_interface_declaration_token1] = ACTIONS(1544), + [aux_sym_enum_declaration_token1] = ACTIONS(1544), + [aux_sym_enum_case_token1] = ACTIONS(1544), + [aux_sym_class_declaration_token1] = ACTIONS(1544), + [aux_sym_final_modifier_token1] = ACTIONS(1544), + [aux_sym_abstract_modifier_token1] = ACTIONS(1544), + [aux_sym_readonly_modifier_token1] = ACTIONS(1544), + [aux_sym_visibility_modifier_token1] = ACTIONS(1544), + [aux_sym_visibility_modifier_token2] = ACTIONS(1544), + [aux_sym_visibility_modifier_token3] = ACTIONS(1544), + [aux_sym__arrow_function_header_token1] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1542), + [aux_sym_cast_type_token1] = ACTIONS(1544), + [aux_sym_echo_statement_token1] = ACTIONS(1544), + [anon_sym_unset] = ACTIONS(1544), + [aux_sym_declare_statement_token1] = ACTIONS(1544), + [aux_sym_declare_statement_token2] = ACTIONS(1544), + [sym_float] = ACTIONS(1544), + [aux_sym_try_statement_token1] = ACTIONS(1544), + [aux_sym_goto_statement_token1] = ACTIONS(1544), + [aux_sym_continue_statement_token1] = ACTIONS(1544), + [aux_sym_break_statement_token1] = ACTIONS(1544), + [sym_integer] = ACTIONS(1544), + [aux_sym_return_statement_token1] = ACTIONS(1544), + [aux_sym_throw_expression_token1] = ACTIONS(1544), + [aux_sym_while_statement_token1] = ACTIONS(1544), + [aux_sym_while_statement_token2] = ACTIONS(1544), + [aux_sym_do_statement_token1] = ACTIONS(1544), + [aux_sym_for_statement_token1] = ACTIONS(1544), + [aux_sym_for_statement_token2] = ACTIONS(1544), + [aux_sym_foreach_statement_token1] = ACTIONS(1544), + [aux_sym_foreach_statement_token2] = ACTIONS(1544), + [aux_sym_if_statement_token1] = ACTIONS(1544), + [aux_sym_if_statement_token2] = ACTIONS(1544), + [aux_sym_else_if_clause_token1] = ACTIONS(1544), + [aux_sym_else_clause_token1] = ACTIONS(1544), + [aux_sym_match_expression_token1] = ACTIONS(1544), + [aux_sym_match_default_expression_token1] = ACTIONS(1544), + [aux_sym_switch_statement_token1] = ACTIONS(1544), + [aux_sym_switch_block_token1] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_AT] = ACTIONS(1542), + [aux_sym_clone_expression_token1] = ACTIONS(1544), + [aux_sym_print_intrinsic_token1] = ACTIONS(1544), + [aux_sym_object_creation_expression_token1] = ACTIONS(1544), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [aux_sym__list_destructing_token1] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_self] = ACTIONS(1544), + [anon_sym_parent] = ACTIONS(1544), + [aux_sym__argument_name_token1] = ACTIONS(1544), + [aux_sym__argument_name_token2] = ACTIONS(1544), + [anon_sym_POUND_LBRACK] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [aux_sym_encapsed_string_token1] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [aux_sym_string_token1] = ACTIONS(1542), + [anon_sym_LT_LT_LT] = ACTIONS(1542), + [anon_sym_BQUOTE] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1542), + [aux_sym_yield_expression_token1] = ACTIONS(1544), + [aux_sym_include_expression_token1] = ACTIONS(1544), + [aux_sym_include_once_expression_token1] = ACTIONS(1544), + [aux_sym_require_expression_token1] = ACTIONS(1544), + [aux_sym_require_once_expression_token1] = ACTIONS(1544), [sym_comment] = ACTIONS(5), }, [567] = { [sym_text_interpolation] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(1536), - [sym_name] = ACTIONS(1538), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1536), - [aux_sym_function_static_declaration_token1] = ACTIONS(1538), - [aux_sym_global_declaration_token1] = ACTIONS(1538), - [aux_sym_namespace_definition_token1] = ACTIONS(1538), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1538), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1538), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1538), - [anon_sym_BSLASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [aux_sym_trait_declaration_token1] = ACTIONS(1538), - [aux_sym_interface_declaration_token1] = ACTIONS(1538), - [aux_sym_enum_declaration_token1] = ACTIONS(1538), - [aux_sym_enum_case_token1] = ACTIONS(1538), - [aux_sym_class_declaration_token1] = ACTIONS(1538), - [aux_sym_final_modifier_token1] = ACTIONS(1538), - [aux_sym_abstract_modifier_token1] = ACTIONS(1538), - [aux_sym_readonly_modifier_token1] = ACTIONS(1538), - [aux_sym_visibility_modifier_token1] = ACTIONS(1538), - [aux_sym_visibility_modifier_token2] = ACTIONS(1538), - [aux_sym_visibility_modifier_token3] = ACTIONS(1538), - [aux_sym__arrow_function_header_token1] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [aux_sym_cast_type_token1] = ACTIONS(1538), - [aux_sym_echo_statement_token1] = ACTIONS(1538), - [anon_sym_unset] = ACTIONS(1538), - [aux_sym_declare_statement_token1] = ACTIONS(1538), - [aux_sym_declare_statement_token2] = ACTIONS(1538), - [sym_float] = ACTIONS(1538), - [aux_sym_try_statement_token1] = ACTIONS(1538), - [aux_sym_goto_statement_token1] = ACTIONS(1538), - [aux_sym_continue_statement_token1] = ACTIONS(1538), - [aux_sym_break_statement_token1] = ACTIONS(1538), - [sym_integer] = ACTIONS(1538), - [aux_sym_return_statement_token1] = ACTIONS(1538), - [aux_sym_throw_expression_token1] = ACTIONS(1538), - [aux_sym_while_statement_token1] = ACTIONS(1538), - [aux_sym_while_statement_token2] = ACTIONS(1538), - [aux_sym_do_statement_token1] = ACTIONS(1538), - [aux_sym_for_statement_token1] = ACTIONS(1538), - [aux_sym_for_statement_token2] = ACTIONS(1538), - [aux_sym_foreach_statement_token1] = ACTIONS(1538), - [aux_sym_foreach_statement_token2] = ACTIONS(1538), - [aux_sym_if_statement_token1] = ACTIONS(1538), - [aux_sym_if_statement_token2] = ACTIONS(1538), - [aux_sym_else_if_clause_token1] = ACTIONS(1538), - [aux_sym_else_clause_token1] = ACTIONS(1538), - [aux_sym_match_expression_token1] = ACTIONS(1538), - [aux_sym_match_default_expression_token1] = ACTIONS(1538), - [aux_sym_switch_statement_token1] = ACTIONS(1538), - [aux_sym_switch_block_token1] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1538), - [anon_sym_TILDE] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_AT] = ACTIONS(1536), - [aux_sym_clone_expression_token1] = ACTIONS(1538), - [aux_sym_print_intrinsic_token1] = ACTIONS(1538), - [aux_sym_object_creation_expression_token1] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1536), - [anon_sym_PLUS_PLUS] = ACTIONS(1536), - [aux_sym__list_destructing_token1] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_self] = ACTIONS(1538), - [anon_sym_parent] = ACTIONS(1538), - [aux_sym__argument_name_token1] = ACTIONS(1538), - [aux_sym__argument_name_token2] = ACTIONS(1538), - [anon_sym_POUND_LBRACK] = ACTIONS(1536), - [anon_sym_SQUOTE] = ACTIONS(1536), - [aux_sym_encapsed_string_token1] = ACTIONS(1536), - [anon_sym_DQUOTE] = ACTIONS(1536), - [aux_sym_string_token1] = ACTIONS(1536), - [anon_sym_LT_LT_LT] = ACTIONS(1536), - [anon_sym_BQUOTE] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1536), - [aux_sym_yield_expression_token1] = ACTIONS(1538), - [aux_sym_include_expression_token1] = ACTIONS(1538), - [aux_sym_include_once_expression_token1] = ACTIONS(1538), - [aux_sym_require_expression_token1] = ACTIONS(1538), - [aux_sym_require_once_expression_token1] = ACTIONS(1538), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_name] = ACTIONS(1540), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1538), + [aux_sym_function_static_declaration_token1] = ACTIONS(1540), + [aux_sym_global_declaration_token1] = ACTIONS(1540), + [aux_sym_namespace_definition_token1] = ACTIONS(1540), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1540), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1540), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1540), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [aux_sym_trait_declaration_token1] = ACTIONS(1540), + [aux_sym_interface_declaration_token1] = ACTIONS(1540), + [aux_sym_enum_declaration_token1] = ACTIONS(1540), + [aux_sym_enum_case_token1] = ACTIONS(1540), + [aux_sym_class_declaration_token1] = ACTIONS(1540), + [aux_sym_final_modifier_token1] = ACTIONS(1540), + [aux_sym_abstract_modifier_token1] = ACTIONS(1540), + [aux_sym_readonly_modifier_token1] = ACTIONS(1540), + [aux_sym_visibility_modifier_token1] = ACTIONS(1540), + [aux_sym_visibility_modifier_token2] = ACTIONS(1540), + [aux_sym_visibility_modifier_token3] = ACTIONS(1540), + [aux_sym__arrow_function_header_token1] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1538), + [aux_sym_cast_type_token1] = ACTIONS(1540), + [aux_sym_echo_statement_token1] = ACTIONS(1540), + [anon_sym_unset] = ACTIONS(1540), + [aux_sym_declare_statement_token1] = ACTIONS(1540), + [aux_sym_declare_statement_token2] = ACTIONS(1540), + [sym_float] = ACTIONS(1540), + [aux_sym_try_statement_token1] = ACTIONS(1540), + [aux_sym_goto_statement_token1] = ACTIONS(1540), + [aux_sym_continue_statement_token1] = ACTIONS(1540), + [aux_sym_break_statement_token1] = ACTIONS(1540), + [sym_integer] = ACTIONS(1540), + [aux_sym_return_statement_token1] = ACTIONS(1540), + [aux_sym_throw_expression_token1] = ACTIONS(1540), + [aux_sym_while_statement_token1] = ACTIONS(1540), + [aux_sym_while_statement_token2] = ACTIONS(1540), + [aux_sym_do_statement_token1] = ACTIONS(1540), + [aux_sym_for_statement_token1] = ACTIONS(1540), + [aux_sym_for_statement_token2] = ACTIONS(1540), + [aux_sym_foreach_statement_token1] = ACTIONS(1540), + [aux_sym_foreach_statement_token2] = ACTIONS(1540), + [aux_sym_if_statement_token1] = ACTIONS(1540), + [aux_sym_if_statement_token2] = ACTIONS(1540), + [aux_sym_else_if_clause_token1] = ACTIONS(1540), + [aux_sym_else_clause_token1] = ACTIONS(1540), + [aux_sym_match_expression_token1] = ACTIONS(1540), + [aux_sym_match_default_expression_token1] = ACTIONS(1540), + [aux_sym_switch_statement_token1] = ACTIONS(1540), + [aux_sym_switch_block_token1] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [aux_sym_clone_expression_token1] = ACTIONS(1540), + [aux_sym_print_intrinsic_token1] = ACTIONS(1540), + [aux_sym_object_creation_expression_token1] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [aux_sym__list_destructing_token1] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_self] = ACTIONS(1540), + [anon_sym_parent] = ACTIONS(1540), + [aux_sym__argument_name_token1] = ACTIONS(1540), + [aux_sym__argument_name_token2] = ACTIONS(1540), + [anon_sym_POUND_LBRACK] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [aux_sym_encapsed_string_token1] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [aux_sym_string_token1] = ACTIONS(1538), + [anon_sym_LT_LT_LT] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [aux_sym_yield_expression_token1] = ACTIONS(1540), + [aux_sym_include_expression_token1] = ACTIONS(1540), + [aux_sym_include_once_expression_token1] = ACTIONS(1540), + [aux_sym_require_expression_token1] = ACTIONS(1540), + [aux_sym_require_once_expression_token1] = ACTIONS(1540), [sym_comment] = ACTIONS(5), }, [568] = { [sym_text_interpolation] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1544), - [sym_name] = ACTIONS(1546), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1544), - [aux_sym_function_static_declaration_token1] = ACTIONS(1546), - [aux_sym_global_declaration_token1] = ACTIONS(1546), - [aux_sym_namespace_definition_token1] = ACTIONS(1546), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1546), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1546), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1546), - [anon_sym_BSLASH] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [aux_sym_trait_declaration_token1] = ACTIONS(1546), - [aux_sym_interface_declaration_token1] = ACTIONS(1546), - [aux_sym_enum_declaration_token1] = ACTIONS(1546), - [aux_sym_enum_case_token1] = ACTIONS(1546), - [aux_sym_class_declaration_token1] = ACTIONS(1546), - [aux_sym_final_modifier_token1] = ACTIONS(1546), - [aux_sym_abstract_modifier_token1] = ACTIONS(1546), - [aux_sym_readonly_modifier_token1] = ACTIONS(1546), - [aux_sym_visibility_modifier_token1] = ACTIONS(1546), - [aux_sym_visibility_modifier_token2] = ACTIONS(1546), - [aux_sym_visibility_modifier_token3] = ACTIONS(1546), - [aux_sym__arrow_function_header_token1] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1544), - [aux_sym_cast_type_token1] = ACTIONS(1546), - [aux_sym_echo_statement_token1] = ACTIONS(1546), - [anon_sym_unset] = ACTIONS(1546), - [aux_sym_declare_statement_token1] = ACTIONS(1546), - [aux_sym_declare_statement_token2] = ACTIONS(1546), - [sym_float] = ACTIONS(1546), - [aux_sym_try_statement_token1] = ACTIONS(1546), - [aux_sym_goto_statement_token1] = ACTIONS(1546), - [aux_sym_continue_statement_token1] = ACTIONS(1546), - [aux_sym_break_statement_token1] = ACTIONS(1546), - [sym_integer] = ACTIONS(1546), - [aux_sym_return_statement_token1] = ACTIONS(1546), - [aux_sym_throw_expression_token1] = ACTIONS(1546), - [aux_sym_while_statement_token1] = ACTIONS(1546), - [aux_sym_while_statement_token2] = ACTIONS(1546), - [aux_sym_do_statement_token1] = ACTIONS(1546), - [aux_sym_for_statement_token1] = ACTIONS(1546), - [aux_sym_for_statement_token2] = ACTIONS(1546), - [aux_sym_foreach_statement_token1] = ACTIONS(1546), - [aux_sym_foreach_statement_token2] = ACTIONS(1546), - [aux_sym_if_statement_token1] = ACTIONS(1546), - [aux_sym_if_statement_token2] = ACTIONS(1546), - [aux_sym_else_if_clause_token1] = ACTIONS(1546), - [aux_sym_else_clause_token1] = ACTIONS(1546), - [aux_sym_match_expression_token1] = ACTIONS(1546), - [aux_sym_match_default_expression_token1] = ACTIONS(1546), - [aux_sym_switch_statement_token1] = ACTIONS(1546), - [aux_sym_switch_block_token1] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1544), - [anon_sym_AT] = ACTIONS(1544), - [aux_sym_clone_expression_token1] = ACTIONS(1546), - [aux_sym_print_intrinsic_token1] = ACTIONS(1546), - [aux_sym_object_creation_expression_token1] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [aux_sym__list_destructing_token1] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_self] = ACTIONS(1546), - [anon_sym_parent] = ACTIONS(1546), - [aux_sym__argument_name_token1] = ACTIONS(1546), - [aux_sym__argument_name_token2] = ACTIONS(1546), - [anon_sym_POUND_LBRACK] = ACTIONS(1544), - [anon_sym_SQUOTE] = ACTIONS(1544), - [aux_sym_encapsed_string_token1] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [aux_sym_string_token1] = ACTIONS(1544), - [anon_sym_LT_LT_LT] = ACTIONS(1544), - [anon_sym_BQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1544), - [aux_sym_yield_expression_token1] = ACTIONS(1546), - [aux_sym_include_expression_token1] = ACTIONS(1546), - [aux_sym_include_once_expression_token1] = ACTIONS(1546), - [aux_sym_require_expression_token1] = ACTIONS(1546), - [aux_sym_require_once_expression_token1] = ACTIONS(1546), - [sym_comment] = ACTIONS(5), - }, - [569] = { - [sym_text_interpolation] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(1546), [sym_name] = ACTIONS(1548), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1546), [aux_sym_function_static_declaration_token1] = ACTIONS(1548), [aux_sym_global_declaration_token1] = ACTIONS(1548), [aux_sym_namespace_definition_token1] = ACTIONS(1548), [aux_sym_namespace_use_declaration_token1] = ACTIONS(1548), [aux_sym_namespace_use_declaration_token2] = ACTIONS(1548), [aux_sym_namespace_use_declaration_token3] = ACTIONS(1548), - [anon_sym_BSLASH] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_BSLASH] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), [aux_sym_trait_declaration_token1] = ACTIONS(1548), [aux_sym_interface_declaration_token1] = ACTIONS(1548), [aux_sym_enum_declaration_token1] = ACTIONS(1548), - [anon_sym_COLON] = ACTIONS(1550), + [aux_sym_enum_case_token1] = ACTIONS(1548), [aux_sym_class_declaration_token1] = ACTIONS(1548), [aux_sym_final_modifier_token1] = ACTIONS(1548), [aux_sym_abstract_modifier_token1] = ACTIONS(1548), @@ -77573,11 +77445,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_visibility_modifier_token2] = ACTIONS(1548), [aux_sym_visibility_modifier_token3] = ACTIONS(1548), [aux_sym__arrow_function_header_token1] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1546), [aux_sym_cast_type_token1] = ACTIONS(1548), [aux_sym_echo_statement_token1] = ACTIONS(1548), [anon_sym_unset] = ACTIONS(1548), [aux_sym_declare_statement_token1] = ACTIONS(1548), + [aux_sym_declare_statement_token2] = ACTIONS(1548), [sym_float] = ACTIONS(1548), [aux_sym_try_statement_token1] = ACTIONS(1548), [aux_sym_goto_statement_token1] = ACTIONS(1548), @@ -77587,36 +77460,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_return_statement_token1] = ACTIONS(1548), [aux_sym_throw_expression_token1] = ACTIONS(1548), [aux_sym_while_statement_token1] = ACTIONS(1548), + [aux_sym_while_statement_token2] = ACTIONS(1548), [aux_sym_do_statement_token1] = ACTIONS(1548), [aux_sym_for_statement_token1] = ACTIONS(1548), + [aux_sym_for_statement_token2] = ACTIONS(1548), [aux_sym_foreach_statement_token1] = ACTIONS(1548), + [aux_sym_foreach_statement_token2] = ACTIONS(1548), [aux_sym_if_statement_token1] = ACTIONS(1548), + [aux_sym_if_statement_token2] = ACTIONS(1548), + [aux_sym_else_if_clause_token1] = ACTIONS(1548), + [aux_sym_else_clause_token1] = ACTIONS(1548), [aux_sym_match_expression_token1] = ACTIONS(1548), + [aux_sym_match_default_expression_token1] = ACTIONS(1548), [aux_sym_switch_statement_token1] = ACTIONS(1548), + [aux_sym_switch_block_token1] = ACTIONS(1548), [anon_sym_PLUS] = ACTIONS(1548), [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_AT] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_AT] = ACTIONS(1546), [aux_sym_clone_expression_token1] = ACTIONS(1548), [aux_sym_print_intrinsic_token1] = ACTIONS(1548), [aux_sym_object_creation_expression_token1] = ACTIONS(1548), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_PLUS_PLUS] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), [aux_sym__list_destructing_token1] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1546), [anon_sym_self] = ACTIONS(1548), [anon_sym_parent] = ACTIONS(1548), [aux_sym__argument_name_token1] = ACTIONS(1548), [aux_sym__argument_name_token2] = ACTIONS(1548), - [anon_sym_POUND_LBRACK] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [aux_sym_encapsed_string_token1] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [aux_sym_string_token1] = ACTIONS(1550), - [anon_sym_LT_LT_LT] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), + [anon_sym_POUND_LBRACK] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [aux_sym_encapsed_string_token1] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [aux_sym_string_token1] = ACTIONS(1546), + [anon_sym_LT_LT_LT] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1546), [aux_sym_yield_expression_token1] = ACTIONS(1548), [aux_sym_include_expression_token1] = ACTIONS(1548), [aux_sym_include_once_expression_token1] = ACTIONS(1548), @@ -77624,6 +77505,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(1548), [sym_comment] = ACTIONS(5), }, + [569] = { + [sym_text_interpolation] = STATE(569), + [sym_name] = ACTIONS(1550), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1552), + [aux_sym_function_static_declaration_token1] = ACTIONS(1550), + [aux_sym_global_declaration_token1] = ACTIONS(1550), + [aux_sym_namespace_definition_token1] = ACTIONS(1550), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1550), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1550), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1550), + [anon_sym_BSLASH] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [aux_sym_trait_declaration_token1] = ACTIONS(1550), + [aux_sym_interface_declaration_token1] = ACTIONS(1550), + [aux_sym_enum_declaration_token1] = ACTIONS(1550), + [anon_sym_COLON] = ACTIONS(1552), + [aux_sym_class_declaration_token1] = ACTIONS(1550), + [aux_sym_final_modifier_token1] = ACTIONS(1550), + [aux_sym_abstract_modifier_token1] = ACTIONS(1550), + [aux_sym_readonly_modifier_token1] = ACTIONS(1550), + [aux_sym_visibility_modifier_token1] = ACTIONS(1550), + [aux_sym_visibility_modifier_token2] = ACTIONS(1550), + [aux_sym_visibility_modifier_token3] = ACTIONS(1550), + [aux_sym__arrow_function_header_token1] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1552), + [aux_sym_cast_type_token1] = ACTIONS(1550), + [aux_sym_echo_statement_token1] = ACTIONS(1550), + [anon_sym_unset] = ACTIONS(1550), + [aux_sym_declare_statement_token1] = ACTIONS(1550), + [sym_float] = ACTIONS(1550), + [aux_sym_try_statement_token1] = ACTIONS(1550), + [aux_sym_goto_statement_token1] = ACTIONS(1550), + [aux_sym_continue_statement_token1] = ACTIONS(1550), + [aux_sym_break_statement_token1] = ACTIONS(1550), + [sym_integer] = ACTIONS(1550), + [aux_sym_return_statement_token1] = ACTIONS(1550), + [aux_sym_throw_expression_token1] = ACTIONS(1550), + [aux_sym_while_statement_token1] = ACTIONS(1550), + [aux_sym_do_statement_token1] = ACTIONS(1550), + [aux_sym_for_statement_token1] = ACTIONS(1550), + [aux_sym_foreach_statement_token1] = ACTIONS(1550), + [aux_sym_if_statement_token1] = ACTIONS(1550), + [aux_sym_match_expression_token1] = ACTIONS(1550), + [aux_sym_switch_statement_token1] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_AT] = ACTIONS(1552), + [aux_sym_clone_expression_token1] = ACTIONS(1550), + [aux_sym_print_intrinsic_token1] = ACTIONS(1550), + [aux_sym_object_creation_expression_token1] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [aux_sym__list_destructing_token1] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_self] = ACTIONS(1550), + [anon_sym_parent] = ACTIONS(1550), + [aux_sym__argument_name_token1] = ACTIONS(1550), + [aux_sym__argument_name_token2] = ACTIONS(1550), + [anon_sym_POUND_LBRACK] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [aux_sym_encapsed_string_token1] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [aux_sym_string_token1] = ACTIONS(1552), + [anon_sym_LT_LT_LT] = ACTIONS(1552), + [anon_sym_BQUOTE] = ACTIONS(1552), + [anon_sym_DOLLAR] = ACTIONS(1552), + [aux_sym_yield_expression_token1] = ACTIONS(1550), + [aux_sym_include_expression_token1] = ACTIONS(1550), + [aux_sym_include_once_expression_token1] = ACTIONS(1550), + [aux_sym_require_expression_token1] = ACTIONS(1550), + [aux_sym_require_once_expression_token1] = ACTIONS(1550), + [sym_comment] = ACTIONS(5), + }, [570] = { [sym_text_interpolation] = STATE(570), [sym_qualified_name] = STATE(711), @@ -77667,35 +77624,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = STATE(646), [sym__reserved_identifier] = STATE(1591), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(1552), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(1554), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(629), - [aux_sym_print_intrinsic_token1] = ACTIONS(639), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1556), + [sym_name] = ACTIONS(1554), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(1556), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(631), + [aux_sym_print_intrinsic_token1] = ACTIONS(641), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(1558), [sym_comment] = ACTIONS(5), }, [571] = { @@ -77741,35 +77698,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = STATE(780), [sym__reserved_identifier] = STATE(1593), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(1558), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(659), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(1560), - [aux_sym_cast_type_token1] = ACTIONS(246), - [sym_float] = ACTIONS(254), - [sym_integer] = ACTIONS(254), - [aux_sym_throw_expression_token1] = ACTIONS(266), - [aux_sym_print_intrinsic_token1] = ACTIONS(290), - [aux_sym_object_creation_expression_token1] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(294), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(302), - [aux_sym__argument_name_token2] = ACTIONS(304), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(308), - [aux_sym_encapsed_string_token1] = ACTIONS(310), - [anon_sym_DQUOTE] = ACTIONS(310), - [aux_sym_string_token1] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(312), - [anon_sym_BQUOTE] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(1562), + [sym_name] = ACTIONS(1560), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(661), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(1562), + [aux_sym_cast_type_token1] = ACTIONS(248), + [sym_float] = ACTIONS(256), + [sym_integer] = ACTIONS(256), + [aux_sym_throw_expression_token1] = ACTIONS(268), + [aux_sym_print_intrinsic_token1] = ACTIONS(292), + [aux_sym_object_creation_expression_token1] = ACTIONS(294), + [anon_sym_DASH_DASH] = ACTIONS(296), + [anon_sym_PLUS_PLUS] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(304), + [aux_sym__argument_name_token2] = ACTIONS(306), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(310), + [aux_sym_encapsed_string_token1] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [anon_sym_LT_LT_LT] = ACTIONS(314), + [anon_sym_BQUOTE] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(1564), [sym_comment] = ACTIONS(5), }, [572] = { @@ -77815,35 +77772,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = STATE(646), [sym__reserved_identifier] = STATE(1591), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(1552), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(1554), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(591), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1556), + [sym_name] = ACTIONS(1554), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(1556), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(581), + [aux_sym_print_intrinsic_token1] = ACTIONS(593), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(1558), [sym_comment] = ACTIONS(5), }, [573] = { @@ -77889,174 +77846,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = STATE(646), [sym__reserved_identifier] = STATE(1591), [aux_sym_attribute_list_repeat1] = STATE(1362), - [sym_name] = ACTIONS(1552), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(563), - [aux_sym_namespace_definition_token1] = ACTIONS(565), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(567), - [anon_sym_BSLASH] = ACTIONS(218), - [aux_sym__arrow_function_header_token1] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(1554), - [aux_sym_cast_type_token1] = ACTIONS(575), - [sym_float] = ACTIONS(577), - [sym_integer] = ACTIONS(577), - [aux_sym_throw_expression_token1] = ACTIONS(671), - [aux_sym_print_intrinsic_token1] = ACTIONS(681), - [aux_sym_object_creation_expression_token1] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_self] = ACTIONS(300), - [anon_sym_parent] = ACTIONS(300), - [aux_sym__argument_name_token1] = ACTIONS(599), - [aux_sym__argument_name_token2] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(306), - [anon_sym_SQUOTE] = ACTIONS(603), - [aux_sym_encapsed_string_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(605), - [aux_sym_string_token1] = ACTIONS(603), - [anon_sym_LT_LT_LT] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1556), + [sym_name] = ACTIONS(1554), + [anon_sym_QMARK_GT] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(565), + [aux_sym_namespace_definition_token1] = ACTIONS(567), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(569), + [anon_sym_BSLASH] = ACTIONS(220), + [aux_sym__arrow_function_header_token1] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(1556), + [aux_sym_cast_type_token1] = ACTIONS(577), + [sym_float] = ACTIONS(579), + [sym_integer] = ACTIONS(579), + [aux_sym_throw_expression_token1] = ACTIONS(673), + [aux_sym_print_intrinsic_token1] = ACTIONS(683), + [aux_sym_object_creation_expression_token1] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_self] = ACTIONS(302), + [anon_sym_parent] = ACTIONS(302), + [aux_sym__argument_name_token1] = ACTIONS(601), + [aux_sym__argument_name_token2] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(308), + [anon_sym_SQUOTE] = ACTIONS(605), + [aux_sym_encapsed_string_token1] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_LT_LT_LT] = ACTIONS(609), + [anon_sym_BQUOTE] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(1558), [sym_comment] = ACTIONS(5), }, [574] = { [sym_text_interpolation] = STATE(574), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1566), - [anon_sym_COMMA] = ACTIONS(1564), - [anon_sym_EQ] = ACTIONS(1566), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [aux_sym_base_clause_token1] = ACTIONS(1564), - [anon_sym_COLON] = ACTIONS(1566), - [aux_sym_class_interface_clause_token1] = ACTIONS(1564), - [anon_sym_EQ_GT] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1564), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_COLON_COLON] = ACTIONS(1564), - [anon_sym_DASH_DASH] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1564), - [anon_sym_STAR_EQ] = ACTIONS(1564), - [anon_sym_SLASH_EQ] = ACTIONS(1564), - [anon_sym_PERCENT_EQ] = ACTIONS(1564), - [anon_sym_PLUS_EQ] = ACTIONS(1564), - [anon_sym_DASH_EQ] = ACTIONS(1564), - [anon_sym_DOT_EQ] = ACTIONS(1564), - [anon_sym_LT_LT_EQ] = ACTIONS(1564), - [anon_sym_GT_GT_EQ] = ACTIONS(1564), - [anon_sym_AMP_EQ] = ACTIONS(1564), - [anon_sym_CARET_EQ] = ACTIONS(1564), - [anon_sym_PIPE_EQ] = ACTIONS(1564), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1564), - [anon_sym_DASH_GT] = ACTIONS(1564), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_RBRACK] = ACTIONS(1564), - [aux_sym_binary_expression_token1] = ACTIONS(1564), - [anon_sym_QMARK_QMARK] = ACTIONS(1566), - [anon_sym_STAR_STAR] = ACTIONS(1566), - [aux_sym_binary_expression_token2] = ACTIONS(1564), - [aux_sym_binary_expression_token3] = ACTIONS(1564), - [aux_sym_binary_expression_token4] = ACTIONS(1564), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1566), - [anon_sym_EQ_EQ] = ACTIONS(1566), - [anon_sym_BANG_EQ] = ACTIONS(1566), - [anon_sym_LT_GT] = ACTIONS(1564), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1566), - [anon_sym_GT] = ACTIONS(1566), - [anon_sym_LT_EQ] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_LT_EQ_GT] = ACTIONS(1564), - [anon_sym_LT_LT] = ACTIONS(1566), - [anon_sym_GT_GT] = ACTIONS(1566), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_SLASH] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(1566), - [sym_comment] = ACTIONS(5), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(1568), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [aux_sym_base_clause_token1] = ACTIONS(1566), + [anon_sym_COLON] = ACTIONS(1568), + [aux_sym_class_interface_clause_token1] = ACTIONS(1566), + [anon_sym_EQ_GT] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_COLON_COLON] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1566), + [anon_sym_PLUS_PLUS] = ACTIONS(1566), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1566), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_DOT_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1566), + [anon_sym_DASH_GT] = ACTIONS(1566), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1566), + [aux_sym_binary_expression_token1] = ACTIONS(1566), + [anon_sym_QMARK_QMARK] = ACTIONS(1568), + [anon_sym_STAR_STAR] = ACTIONS(1568), + [aux_sym_binary_expression_token2] = ACTIONS(1566), + [aux_sym_binary_expression_token3] = ACTIONS(1566), + [aux_sym_binary_expression_token4] = ACTIONS(1566), + [anon_sym_PIPE_PIPE] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym_EQ_EQ] = ACTIONS(1568), + [anon_sym_BANG_EQ] = ACTIONS(1568), + [anon_sym_LT_GT] = ACTIONS(1566), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1566), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_LT_EQ] = ACTIONS(1568), + [anon_sym_GT_EQ] = ACTIONS(1566), + [anon_sym_LT_EQ_GT] = ACTIONS(1566), + [anon_sym_LT_LT] = ACTIONS(1568), + [anon_sym_GT_GT] = ACTIONS(1568), + [anon_sym_DOT] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1568), + [anon_sym_PERCENT] = ACTIONS(1568), + [sym_comment] = ACTIONS(1570), }, [575] = { [sym_text_interpolation] = STATE(575), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1570), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [aux_sym_base_clause_token1] = ACTIONS(1568), - [anon_sym_COLON] = ACTIONS(1570), - [aux_sym_class_interface_clause_token1] = ACTIONS(1568), - [anon_sym_EQ_GT] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_DASH_DASH] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1568), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1568), - [anon_sym_STAR_EQ] = ACTIONS(1568), - [anon_sym_SLASH_EQ] = ACTIONS(1568), - [anon_sym_PERCENT_EQ] = ACTIONS(1568), - [anon_sym_PLUS_EQ] = ACTIONS(1568), - [anon_sym_DASH_EQ] = ACTIONS(1568), - [anon_sym_DOT_EQ] = ACTIONS(1568), - [anon_sym_LT_LT_EQ] = ACTIONS(1568), - [anon_sym_GT_GT_EQ] = ACTIONS(1568), - [anon_sym_AMP_EQ] = ACTIONS(1568), - [anon_sym_CARET_EQ] = ACTIONS(1568), - [anon_sym_PIPE_EQ] = ACTIONS(1568), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1568), - [anon_sym_DASH_GT] = ACTIONS(1568), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_RBRACK] = ACTIONS(1568), - [aux_sym_binary_expression_token1] = ACTIONS(1568), - [anon_sym_QMARK_QMARK] = ACTIONS(1570), - [anon_sym_STAR_STAR] = ACTIONS(1570), - [aux_sym_binary_expression_token2] = ACTIONS(1568), - [aux_sym_binary_expression_token3] = ACTIONS(1568), - [aux_sym_binary_expression_token4] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1568), - [anon_sym_AMP_AMP] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1570), - [anon_sym_EQ_EQ] = ACTIONS(1570), - [anon_sym_BANG_EQ] = ACTIONS(1570), - [anon_sym_LT_GT] = ACTIONS(1568), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1568), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(1570), - [anon_sym_GT] = ACTIONS(1570), - [anon_sym_LT_EQ] = ACTIONS(1570), - [anon_sym_GT_EQ] = ACTIONS(1568), - [anon_sym_LT_EQ_GT] = ACTIONS(1568), - [anon_sym_LT_LT] = ACTIONS(1570), - [anon_sym_GT_GT] = ACTIONS(1570), - [anon_sym_DOT] = ACTIONS(1570), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1570), - [anon_sym_PERCENT] = ACTIONS(1570), - [sym_comment] = ACTIONS(5), - }, - [576] = { - [sym_text_interpolation] = STATE(576), - [anon_sym_QMARK_GT] = ACTIONS(18), + [anon_sym_QMARK_GT] = ACTIONS(20), [anon_sym_SEMI] = ACTIONS(1572), [anon_sym_AMP] = ACTIONS(1574), [anon_sym_COMMA] = ACTIONS(1572), @@ -78119,11 +78009,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1574), [anon_sym_SLASH] = ACTIONS(1574), [anon_sym_PERCENT] = ACTIONS(1574), - [sym_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(1570), }, - [577] = { - [sym_text_interpolation] = STATE(577), - [anon_sym_QMARK_GT] = ACTIONS(18), + [576] = { + [sym_text_interpolation] = STATE(576), + [anon_sym_QMARK_GT] = ACTIONS(20), [anon_sym_SEMI] = ACTIONS(1576), [anon_sym_AMP] = ACTIONS(1578), [anon_sym_COMMA] = ACTIONS(1576), @@ -78186,23 +78076,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1578), [anon_sym_SLASH] = ACTIONS(1578), [anon_sym_PERCENT] = ACTIONS(1578), - [sym_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(1570), + }, + [577] = { + [sym_text_interpolation] = STATE(577), + [anon_sym_QMARK_GT] = ACTIONS(20), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1582), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [aux_sym_base_clause_token1] = ACTIONS(1580), + [anon_sym_COLON] = ACTIONS(1582), + [aux_sym_class_interface_clause_token1] = ACTIONS(1580), + [anon_sym_EQ_GT] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_COLON_COLON] = ACTIONS(1580), + [anon_sym_DASH_DASH] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1580), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1580), + [anon_sym_STAR_EQ] = ACTIONS(1580), + [anon_sym_SLASH_EQ] = ACTIONS(1580), + [anon_sym_PERCENT_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1580), + [anon_sym_DASH_EQ] = ACTIONS(1580), + [anon_sym_DOT_EQ] = ACTIONS(1580), + [anon_sym_LT_LT_EQ] = ACTIONS(1580), + [anon_sym_GT_GT_EQ] = ACTIONS(1580), + [anon_sym_AMP_EQ] = ACTIONS(1580), + [anon_sym_CARET_EQ] = ACTIONS(1580), + [anon_sym_PIPE_EQ] = ACTIONS(1580), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1580), + [anon_sym_DASH_GT] = ACTIONS(1580), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_RBRACK] = ACTIONS(1580), + [aux_sym_binary_expression_token1] = ACTIONS(1580), + [anon_sym_QMARK_QMARK] = ACTIONS(1582), + [anon_sym_STAR_STAR] = ACTIONS(1582), + [aux_sym_binary_expression_token2] = ACTIONS(1580), + [aux_sym_binary_expression_token3] = ACTIONS(1580), + [aux_sym_binary_expression_token4] = ACTIONS(1580), + [anon_sym_PIPE_PIPE] = ACTIONS(1580), + [anon_sym_AMP_AMP] = ACTIONS(1580), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1582), + [anon_sym_BANG_EQ] = ACTIONS(1582), + [anon_sym_LT_GT] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1580), + [anon_sym_LT_EQ_GT] = ACTIONS(1580), + [anon_sym_LT_LT] = ACTIONS(1582), + [anon_sym_GT_GT] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1582), + [anon_sym_PERCENT] = ACTIONS(1582), + [sym_comment] = ACTIONS(1570), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(578), 1, sym_text_interpolation, STATE(589), 1, sym_arguments, - ACTIONS(1582), 21, + ACTIONS(1586), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78224,7 +78181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1580), 38, + ACTIONS(1584), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78264,17 +78221,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [79] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(579), 1, sym_text_interpolation, STATE(593), 1, sym_arguments, - ACTIONS(1588), 21, + ACTIONS(1592), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78296,7 +78253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1586), 38, + ACTIONS(1590), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78336,17 +78293,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [158] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(580), 1, sym_text_interpolation, STATE(595), 1, sym_arguments, - ACTIONS(1592), 21, + ACTIONS(1596), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78368,7 +78325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1590), 38, + ACTIONS(1594), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78408,28 +78365,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [237] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1598), 1, + ACTIONS(1602), 1, anon_sym_EQ, STATE(581), 1, sym_text_interpolation, STATE(584), 1, sym_arguments, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1604), 13, + ACTIONS(1608), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78443,7 +78400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 18, + ACTIONS(1598), 18, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78462,7 +78419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1596), 20, + ACTIONS(1600), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -78484,17 +78441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [324] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(582), 1, sym_text_interpolation, STATE(592), 1, sym_arguments, - ACTIONS(1608), 21, + ACTIONS(1612), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78516,7 +78473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1606), 38, + ACTIONS(1610), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78556,17 +78513,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [403] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(583), 1, sym_text_interpolation, STATE(587), 1, sym_arguments, - ACTIONS(1612), 21, + ACTIONS(1616), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78588,7 +78545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1610), 38, + ACTIONS(1614), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78628,13 +78585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [482] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(584), 1, sym_text_interpolation, - ACTIONS(1616), 21, + ACTIONS(1620), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78656,7 +78613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1614), 39, + ACTIONS(1618), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78697,13 +78654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [556] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(585), 1, sym_text_interpolation, - ACTIONS(1620), 21, + ACTIONS(1624), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78725,7 +78682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1618), 39, + ACTIONS(1622), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78766,13 +78723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [630] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(586), 1, sym_text_interpolation, - ACTIONS(1624), 21, + ACTIONS(1628), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78794,7 +78751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1622), 39, + ACTIONS(1626), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78835,13 +78792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [704] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(587), 1, sym_text_interpolation, - ACTIONS(1628), 21, + ACTIONS(1632), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78863,7 +78820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1626), 39, + ACTIONS(1630), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78904,13 +78861,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [778] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(588), 1, sym_text_interpolation, - ACTIONS(1632), 21, + ACTIONS(1636), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78932,7 +78889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1630), 39, + ACTIONS(1634), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78973,13 +78930,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [852] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(589), 1, sym_text_interpolation, - ACTIONS(1636), 21, + ACTIONS(1640), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79001,7 +78958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1634), 39, + ACTIONS(1638), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79042,13 +78999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [926] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(590), 1, sym_text_interpolation, - ACTIONS(1640), 21, + ACTIONS(1644), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79070,7 +79027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1638), 39, + ACTIONS(1642), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79111,13 +79068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1000] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(591), 1, sym_text_interpolation, - ACTIONS(1644), 21, + ACTIONS(1648), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79139,7 +79096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1642), 39, + ACTIONS(1646), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79180,13 +79137,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1074] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(592), 1, sym_text_interpolation, - ACTIONS(1648), 21, + ACTIONS(1652), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79208,7 +79165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1646), 39, + ACTIONS(1650), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79249,13 +79206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1148] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(593), 1, sym_text_interpolation, - ACTIONS(1652), 21, + ACTIONS(1656), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79277,7 +79234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1650), 39, + ACTIONS(1654), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79318,13 +79275,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1222] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(594), 1, sym_text_interpolation, - ACTIONS(1656), 21, + ACTIONS(1660), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79346,7 +79303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1654), 39, + ACTIONS(1658), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79387,13 +79344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1296] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(595), 1, sym_text_interpolation, - ACTIONS(1660), 21, + ACTIONS(1664), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79415,7 +79372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1658), 39, + ACTIONS(1662), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79456,13 +79413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1370] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(596), 1, sym_text_interpolation, - ACTIONS(1664), 21, + ACTIONS(1668), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79484,7 +79441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1662), 39, + ACTIONS(1666), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79525,24 +79482,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1444] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1598), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1602), 1, anon_sym_EQ, STATE(597), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1604), 13, + ACTIONS(1608), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79556,7 +79513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 18, + ACTIONS(1598), 18, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79575,7 +79532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1596), 20, + ACTIONS(1600), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -79597,28 +79554,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1525] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1666), 1, + ACTIONS(1670), 1, anon_sym_EQ, STATE(584), 1, sym_arguments, STATE(598), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1668), 13, + ACTIONS(1672), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79632,7 +79589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 16, + ACTIONS(1598), 16, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -79649,7 +79606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1596), 20, + ACTIONS(1600), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -79671,28 +79628,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1610] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1670), 1, + ACTIONS(1674), 1, anon_sym_EQ, STATE(584), 1, sym_arguments, STATE(599), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1672), 13, + ACTIONS(1676), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79706,7 +79663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 16, + ACTIONS(1598), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79723,7 +79680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79744,28 +79701,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1694] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1674), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1678), 1, anon_sym_EQ, - ACTIONS(1676), 1, + ACTIONS(1680), 1, anon_sym_LPAREN, STATE(600), 1, sym_text_interpolation, STATE(621), 1, sym_arguments, - ACTIONS(1678), 2, + ACTIONS(1682), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1680), 13, + ACTIONS(1684), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79779,7 +79736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 15, + ACTIONS(1598), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79795,7 +79752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79816,17 +79773,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1777] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1680), 1, anon_sym_LPAREN, STATE(601), 1, sym_text_interpolation, STATE(616), 1, sym_arguments, - ACTIONS(1612), 20, + ACTIONS(1616), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79847,7 +79804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1610), 35, + ACTIONS(1614), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79884,17 +79841,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1852] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1680), 1, anon_sym_LPAREN, STATE(602), 1, sym_text_interpolation, STATE(617), 1, sym_arguments, - ACTIONS(1588), 20, + ACTIONS(1592), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79915,7 +79872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1586), 35, + ACTIONS(1590), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79952,17 +79909,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1927] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1680), 1, anon_sym_LPAREN, STATE(603), 1, sym_text_interpolation, STATE(611), 1, sym_arguments, - ACTIONS(1592), 20, + ACTIONS(1596), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79983,7 +79940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1590), 35, + ACTIONS(1594), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80020,24 +79977,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2002] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1666), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1670), 1, anon_sym_EQ, STATE(604), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1668), 13, + ACTIONS(1672), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80051,7 +80008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 16, + ACTIONS(1598), 16, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -80068,7 +80025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1596), 20, + ACTIONS(1600), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -80090,17 +80047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2081] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1666), 1, + ACTIONS(1670), 1, anon_sym_EQ, - ACTIONS(1682), 1, + ACTIONS(1686), 1, anon_sym_RPAREN, STATE(584), 1, sym_arguments, @@ -80108,16 +80065,16 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2190), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 12, + ACTIONS(1598), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80130,7 +80087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1668), 13, + ACTIONS(1672), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80144,7 +80101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80165,28 +80122,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2170] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1598), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1602), 1, anon_sym_EQ, - ACTIONS(1676), 1, + ACTIONS(1680), 1, anon_sym_LPAREN, STATE(606), 1, sym_text_interpolation, STATE(621), 1, sym_arguments, - ACTIONS(1678), 2, + ACTIONS(1682), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1604), 13, + ACTIONS(1608), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80200,7 +80157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 15, + ACTIONS(1598), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80216,7 +80173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80237,28 +80194,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2253] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1598), 1, + ACTIONS(1602), 1, anon_sym_EQ, STATE(584), 1, sym_arguments, STATE(607), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 12, + ACTIONS(1598), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80271,7 +80228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1604), 16, + ACTIONS(1608), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, @@ -80288,7 +80245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_RBRACK, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80309,17 +80266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2336] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1680), 1, anon_sym_LPAREN, STATE(608), 1, sym_text_interpolation, STATE(625), 1, sym_arguments, - ACTIONS(1582), 20, + ACTIONS(1586), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80340,7 +80297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1580), 35, + ACTIONS(1584), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80377,17 +80334,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2411] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1680), 1, anon_sym_LPAREN, STATE(609), 1, sym_text_interpolation, STATE(626), 1, sym_arguments, - ACTIONS(1608), 20, + ACTIONS(1612), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80408,7 +80365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1606), 35, + ACTIONS(1610), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80445,13 +80402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2486] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(610), 1, sym_text_interpolation, - ACTIONS(1570), 20, + ACTIONS(1574), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80472,7 +80429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1568), 36, + ACTIONS(1572), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80510,13 +80467,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2556] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(611), 1, sym_text_interpolation, - ACTIONS(1660), 20, + ACTIONS(1664), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80537,7 +80494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1658), 36, + ACTIONS(1662), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80575,31 +80532,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2626] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1670), 1, + ACTIONS(1674), 1, anon_sym_EQ, STATE(584), 1, sym_arguments, STATE(612), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1684), 2, + ACTIONS(1688), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 12, + ACTIONS(1598), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80612,7 +80569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1672), 13, + ACTIONS(1676), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80626,7 +80583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80647,13 +80604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2710] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(613), 1, sym_text_interpolation, - ACTIONS(1632), 20, + ACTIONS(1636), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80674,7 +80631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1630), 36, + ACTIONS(1634), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80712,13 +80669,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2780] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(614), 1, sym_text_interpolation, - ACTIONS(1640), 20, + ACTIONS(1644), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80739,7 +80696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1638), 36, + ACTIONS(1642), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80777,13 +80734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2850] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(615), 1, sym_text_interpolation, - ACTIONS(1664), 20, + ACTIONS(1668), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80804,7 +80761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1662), 36, + ACTIONS(1666), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80842,13 +80799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2920] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(616), 1, sym_text_interpolation, - ACTIONS(1628), 20, + ACTIONS(1632), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80869,7 +80826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1626), 36, + ACTIONS(1630), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80907,13 +80864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2990] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(617), 1, sym_text_interpolation, - ACTIONS(1652), 20, + ACTIONS(1656), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80934,7 +80891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1650), 36, + ACTIONS(1654), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80972,13 +80929,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3060] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(618), 1, sym_text_interpolation, - ACTIONS(1578), 20, + ACTIONS(1582), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80999,7 +80956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1576), 36, + ACTIONS(1580), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81037,24 +80994,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3130] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1670), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1674), 1, anon_sym_EQ, STATE(619), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1672), 13, + ACTIONS(1676), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81068,7 +81025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 16, + ACTIONS(1598), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -81085,7 +81042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81106,13 +81063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [3208] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(620), 1, sym_text_interpolation, - ACTIONS(1574), 20, + ACTIONS(1578), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81133,7 +81090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1572), 36, + ACTIONS(1576), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81171,13 +81128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3278] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(621), 1, sym_text_interpolation, - ACTIONS(1616), 20, + ACTIONS(1620), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81198,7 +81155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1614), 36, + ACTIONS(1618), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81236,31 +81193,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3348] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1666), 1, + ACTIONS(1670), 1, anon_sym_EQ, STATE(584), 1, sym_arguments, STATE(622), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1687), 2, + ACTIONS(1691), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 12, + ACTIONS(1598), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -81273,7 +81230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1668), 13, + ACTIONS(1672), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81287,7 +81244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81308,13 +81265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [3432] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(623), 1, sym_text_interpolation, - ACTIONS(1566), 20, + ACTIONS(1568), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81335,7 +81292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1564), 36, + ACTIONS(1566), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81373,28 +81330,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3502] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1689), 1, + ACTIONS(1693), 1, anon_sym_EQ, STATE(584), 1, sym_arguments, STATE(624), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1691), 13, + ACTIONS(1695), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81408,7 +81365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 14, + ACTIONS(1598), 14, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -81423,7 +81380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81444,13 +81401,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [3584] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(625), 1, sym_text_interpolation, - ACTIONS(1636), 20, + ACTIONS(1640), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81471,7 +81428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1634), 36, + ACTIONS(1638), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81509,13 +81466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3654] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(626), 1, sym_text_interpolation, - ACTIONS(1648), 20, + ACTIONS(1652), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81536,7 +81493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1646), 36, + ACTIONS(1650), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81574,13 +81531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3724] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(627), 1, sym_text_interpolation, - ACTIONS(1656), 20, + ACTIONS(1660), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81601,7 +81558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1654), 36, + ACTIONS(1658), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81639,31 +81596,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3794] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1666), 1, + ACTIONS(1670), 1, anon_sym_EQ, STATE(584), 1, sym_arguments, STATE(628), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1693), 2, + ACTIONS(1697), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 12, + ACTIONS(1598), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -81676,7 +81633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1668), 13, + ACTIONS(1672), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81690,7 +81647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81711,13 +81668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [3878] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(629), 1, sym_text_interpolation, - ACTIONS(1620), 20, + ACTIONS(1624), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81738,7 +81695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1618), 36, + ACTIONS(1622), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81776,13 +81733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3948] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(630), 1, sym_text_interpolation, - ACTIONS(1644), 20, + ACTIONS(1648), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81803,7 +81760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1642), 36, + ACTIONS(1646), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81841,13 +81798,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [4018] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(631), 1, sym_text_interpolation, - ACTIONS(1624), 20, + ACTIONS(1628), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81868,7 +81825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1622), 36, + ACTIONS(1626), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81906,24 +81863,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [4088] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1598), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1602), 1, anon_sym_EQ, STATE(632), 1, sym_text_interpolation, - ACTIONS(1678), 2, + ACTIONS(1682), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1604), 13, + ACTIONS(1608), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81937,7 +81894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 15, + ACTIONS(1598), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81953,7 +81910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81974,24 +81931,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4165] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1598), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1602), 1, anon_sym_EQ, STATE(633), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 12, + ACTIONS(1598), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -82004,7 +81961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1604), 16, + ACTIONS(1608), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, @@ -82021,7 +81978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_RBRACK, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82042,31 +81999,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4242] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1670), 1, + ACTIONS(1674), 1, anon_sym_EQ, STATE(584), 1, sym_arguments, STATE(634), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1695), 2, + ACTIONS(1699), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 11, + ACTIONS(1598), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -82078,7 +82035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1672), 13, + ACTIONS(1676), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82092,7 +82049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82113,24 +82070,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4325] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1674), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1678), 1, anon_sym_EQ, STATE(635), 1, sym_text_interpolation, - ACTIONS(1678), 2, + ACTIONS(1682), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1680), 13, + ACTIONS(1684), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82144,7 +82101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 15, + ACTIONS(1598), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82160,7 +82117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82181,30 +82138,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4402] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1666), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1670), 1, anon_sym_EQ, - ACTIONS(1682), 1, + ACTIONS(1686), 1, anon_sym_RPAREN, STATE(636), 1, sym_text_interpolation, STATE(2190), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 12, + ACTIONS(1598), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -82217,7 +82174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1668), 13, + ACTIONS(1672), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82231,7 +82188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82252,27 +82209,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4485] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1666), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1670), 1, anon_sym_EQ, STATE(637), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1693), 2, + ACTIONS(1697), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 12, + ACTIONS(1598), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -82285,7 +82242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1668), 13, + ACTIONS(1672), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82299,7 +82256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82320,24 +82277,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4563] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1689), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1693), 1, anon_sym_EQ, STATE(638), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1691), 13, + ACTIONS(1695), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82351,7 +82308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 14, + ACTIONS(1598), 14, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -82366,7 +82323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82387,27 +82344,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4639] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1670), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1674), 1, anon_sym_EQ, STATE(639), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1684), 2, + ACTIONS(1688), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 12, + ACTIONS(1598), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -82420,7 +82377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1672), 13, + ACTIONS(1676), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82434,7 +82391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82455,27 +82412,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4717] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1666), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1670), 1, anon_sym_EQ, STATE(640), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1687), 2, + ACTIONS(1691), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 12, + ACTIONS(1598), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -82488,7 +82445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1668), 13, + ACTIONS(1672), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82502,7 +82459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82523,27 +82480,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4795] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1670), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1674), 1, anon_sym_EQ, STATE(641), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1695), 2, + ACTIONS(1699), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 11, + ACTIONS(1598), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -82555,7 +82512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1672), 13, + ACTIONS(1676), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82569,7 +82526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1596), 19, + ACTIONS(1600), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82590,13 +82547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4872] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(642), 1, sym_text_interpolation, - ACTIONS(1698), 21, + ACTIONS(1702), 22, anon_sym_AMP, aux_sym_function_static_declaration_token1, aux_sym_namespace_aliasing_clause_token1, @@ -82617,8 +82574,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, + anon_sym_SLASH, sym_name, - ACTIONS(1700), 29, + ACTIONS(1704), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -82646,37 +82604,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [4936] = 30, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(234), 1, - aux_sym_final_modifier_token1, ACTIONS(236), 1, + aux_sym_final_modifier_token1, + ACTIONS(238), 1, aux_sym_abstract_modifier_token1, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1704), 1, + ACTIONS(1708), 1, aux_sym_function_static_declaration_token1, - ACTIONS(1706), 1, - aux_sym_namespace_use_declaration_token2, ACTIONS(1710), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1714), 1, aux_sym_readonly_modifier_token1, - ACTIONS(1712), 1, - sym_var_modifier, ACTIONS(1716), 1, + sym_var_modifier, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, + ACTIONS(1722), 1, anon_sym_QMARK, - ACTIONS(1720), 1, + ACTIONS(1724), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, - sym_comment, STATE(643), 1, sym_text_interpolation, STATE(1021), 1, @@ -82699,7 +82656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2658), 1, sym_namespace_name, - ACTIONS(1714), 3, + ACTIONS(1718), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -82717,7 +82674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -82732,34 +82689,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [5049] = 30, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(234), 1, - aux_sym_final_modifier_token1, ACTIONS(236), 1, + aux_sym_final_modifier_token1, + ACTIONS(238), 1, aux_sym_abstract_modifier_token1, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1704), 1, + ACTIONS(1708), 1, aux_sym_function_static_declaration_token1, - ACTIONS(1706), 1, - aux_sym_namespace_use_declaration_token2, ACTIONS(1710), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1714), 1, aux_sym_readonly_modifier_token1, - ACTIONS(1712), 1, - sym_var_modifier, ACTIONS(1716), 1, + sym_var_modifier, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, + ACTIONS(1722), 1, anon_sym_QMARK, - ACTIONS(1720), 1, + ACTIONS(1724), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, - sym_comment, STATE(644), 1, sym_text_interpolation, STATE(1021), 1, @@ -82782,7 +82739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2658), 1, sym_namespace_name, - ACTIONS(1714), 3, + ACTIONS(1718), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -82800,7 +82757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -82815,13 +82772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [5162] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1724), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(1727), 1, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(645), 1, sym_text_interpolation, @@ -82829,13 +82786,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82847,7 +82804,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 27, + anon_sym_SLASH, + ACTIONS(1598), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82873,29 +82831,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5233] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1727), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(646), 1, sym_text_interpolation, STATE(659), 1, sym_arguments, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 12, + ACTIONS(1600), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82908,7 +82865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 26, + anon_sym_SLASH, + ACTIONS(1598), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82933,20 +82891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5302] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1727), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(647), 1, sym_text_interpolation, STATE(661), 1, sym_arguments, - ACTIONS(1582), 12, + ACTIONS(1586), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82959,7 +82916,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 33, + anon_sym_SLASH, + ACTIONS(1584), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82991,16 +82949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5367] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(648), 1, sym_text_interpolation, - ACTIONS(1632), 12, + ACTIONS(1636), 13, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -83013,7 +82970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1630), 35, + anon_sym_SLASH, + ACTIONS(1634), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83047,26 +83005,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5428] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1727), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(649), 1, sym_text_interpolation, STATE(659), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1598), 12, + ACTIONS(1602), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83079,7 +83036,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1604), 28, + anon_sym_SLASH, + ACTIONS(1608), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83106,16 +83064,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5495] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1724), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(1733), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(650), 1, sym_text_interpolation, @@ -83123,13 +83080,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1731), 11, + ACTIONS(1733), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83141,7 +83098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1729), 27, + anon_sym_SLASH, + ACTIONS(1731), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83167,20 +83125,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5566] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1727), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(651), 1, sym_text_interpolation, STATE(680), 1, sym_arguments, - ACTIONS(1612), 12, + ACTIONS(1616), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83193,7 +83150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1610), 33, + anon_sym_SLASH, + ACTIONS(1614), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83225,20 +83183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5631] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1727), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(652), 1, sym_text_interpolation, STATE(673), 1, sym_arguments, - ACTIONS(1608), 12, + ACTIONS(1612), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83251,7 +83208,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1606), 33, + anon_sym_SLASH, + ACTIONS(1610), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83283,16 +83241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5696] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, STATE(584), 1, sym_arguments, @@ -83300,13 +83257,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83318,7 +83275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 27, + anon_sym_SLASH, + ACTIONS(1598), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83344,20 +83302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5767] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1727), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(654), 1, sym_text_interpolation, STATE(678), 1, sym_arguments, - ACTIONS(1592), 12, + ACTIONS(1596), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83370,7 +83327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1590), 33, + anon_sym_SLASH, + ACTIONS(1594), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83402,20 +83360,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5832] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1727), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(655), 1, sym_text_interpolation, STATE(677), 1, sym_arguments, - ACTIONS(1588), 12, + ACTIONS(1592), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83428,7 +83385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1586), 33, + anon_sym_SLASH, + ACTIONS(1590), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83460,34 +83418,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5897] = 30, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1706), 1, sym_name, - ACTIONS(1735), 1, - anon_sym_AMP, ACTIONS(1737), 1, - anon_sym_COMMA, + anon_sym_AMP, ACTIONS(1739), 1, - anon_sym_LPAREN, + anon_sym_COMMA, ACTIONS(1741), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(1743), 1, - anon_sym_DOT_DOT_DOT, + anon_sym_RPAREN, ACTIONS(1745), 1, - anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, ACTIONS(1747), 1, - anon_sym_POUND_LBRACK, + anon_sym_QMARK, ACTIONS(1749), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(656), 1, sym_text_interpolation, @@ -83513,7 +83470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2658), 1, sym_namespace_name, - ACTIONS(240), 3, + ACTIONS(242), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -83529,7 +83486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -83546,29 +83503,29 @@ static const uint16_t ts_small_parse_table[] = { [6008] = 30, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1706), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(1739), 1, + ACTIONS(1741), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(1745), 1, - anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, ACTIONS(1747), 1, - anon_sym_POUND_LBRACK, + anon_sym_QMARK, ACTIONS(1749), 1, - anon_sym_DOLLAR, + anon_sym_POUND_LBRACK, ACTIONS(1751), 1, - anon_sym_COMMA, + anon_sym_DOLLAR, ACTIONS(1753), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, anon_sym_RPAREN, STATE(657), 1, sym_text_interpolation, @@ -83594,7 +83551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2658), 1, sym_namespace_name, - ACTIONS(240), 3, + ACTIONS(242), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -83610,7 +83567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -83625,13 +83582,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [6119] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, STATE(584), 1, sym_arguments, @@ -83639,13 +83596,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1757), 11, + ACTIONS(1759), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83657,7 +83614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 27, + anon_sym_SLASH, + ACTIONS(1757), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83683,16 +83641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6190] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(659), 1, sym_text_interpolation, - ACTIONS(1616), 12, + ACTIONS(1620), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83705,7 +83662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1614), 34, + anon_sym_SLASH, + ACTIONS(1618), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83738,32 +83696,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6250] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1706), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(1739), 1, + ACTIONS(1741), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(1745), 1, - anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, ACTIONS(1747), 1, - anon_sym_POUND_LBRACK, + anon_sym_QMARK, ACTIONS(1749), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(1759), 1, + ACTIONS(1761), 1, anon_sym_RPAREN, STATE(660), 1, sym_text_interpolation, @@ -83789,7 +83746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2658), 1, sym_namespace_name, - ACTIONS(240), 3, + ACTIONS(242), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -83805,7 +83762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -83820,13 +83777,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [6358] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(661), 1, sym_text_interpolation, - ACTIONS(1636), 12, + ACTIONS(1640), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83839,7 +83796,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1634), 34, + anon_sym_SLASH, + ACTIONS(1638), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83872,32 +83830,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6418] = 30, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1761), 1, - sym_name, ACTIONS(1763), 1, - aux_sym_class_declaration_token1, + sym_name, ACTIONS(1765), 1, - anon_sym_LPAREN, + aux_sym_class_declaration_token1, ACTIONS(1767), 1, + anon_sym_LPAREN, + ACTIONS(1769), 1, anon_sym_DOLLAR, STATE(662), 1, sym_text_interpolation, @@ -83917,10 +83874,10 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2701), 1, sym__scope_resolution_qualifier, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(691), 2, @@ -83929,7 +83886,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1705), 2, sym_class_constant_access_expression, sym_cast_variable, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -83955,13 +83912,13 @@ static const uint16_t ts_small_parse_table[] = { sym_array_creation_expression, sym__string, [6528] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(663), 1, sym_text_interpolation, - ACTIONS(1640), 12, + ACTIONS(1644), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83974,7 +83931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1638), 34, + anon_sym_SLASH, + ACTIONS(1642), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84007,32 +83965,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6588] = 30, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1769), 1, + ACTIONS(1771), 1, sym_name, - ACTIONS(1773), 1, - aux_sym_class_declaration_token1, ACTIONS(1775), 1, + aux_sym_class_declaration_token1, + ACTIONS(1777), 1, anon_sym_DOLLAR, STATE(664), 1, sym_text_interpolation, @@ -84052,10 +84009,10 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2661), 1, sym_namespace_name_as_prefix, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(841), 2, @@ -84064,7 +84021,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1705), 2, sym_class_constant_access_expression, sym_cast_variable, - ACTIONS(1771), 3, + ACTIONS(1773), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -84090,13 +84047,13 @@ static const uint16_t ts_small_parse_table[] = { sym_array_creation_expression, sym__string, [6698] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(665), 1, sym_text_interpolation, - ACTIONS(1656), 12, + ACTIONS(1660), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84109,7 +84066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1654), 34, + anon_sym_SLASH, + ACTIONS(1658), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84142,16 +84100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6758] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(666), 1, sym_text_interpolation, - ACTIONS(1620), 12, + ACTIONS(1624), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84164,7 +84121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1618), 34, + anon_sym_SLASH, + ACTIONS(1622), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84197,16 +84155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6818] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(667), 1, sym_text_interpolation, - ACTIONS(1566), 12, + ACTIONS(1568), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84219,7 +84176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1564), 34, + anon_sym_SLASH, + ACTIONS(1566), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84252,32 +84210,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6878] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1706), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(1739), 1, + ACTIONS(1741), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(1745), 1, - anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, ACTIONS(1747), 1, - anon_sym_POUND_LBRACK, + anon_sym_QMARK, ACTIONS(1749), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(1777), 1, + ACTIONS(1779), 1, anon_sym_RPAREN, STATE(668), 1, sym_text_interpolation, @@ -84303,7 +84260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2658), 1, sym_namespace_name, - ACTIONS(240), 3, + ACTIONS(242), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -84319,7 +84276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -84336,27 +84293,27 @@ static const uint16_t ts_small_parse_table[] = { [6986] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1706), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(1739), 1, + ACTIONS(1741), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(1745), 1, - anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, ACTIONS(1747), 1, - anon_sym_POUND_LBRACK, + anon_sym_QMARK, ACTIONS(1749), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(1779), 1, + ACTIONS(1781), 1, anon_sym_RPAREN, STATE(669), 1, sym_text_interpolation, @@ -84382,7 +84339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2658), 1, sym_namespace_name, - ACTIONS(240), 3, + ACTIONS(242), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -84398,7 +84355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -84413,13 +84370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [7094] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(670), 1, sym_text_interpolation, - ACTIONS(1644), 12, + ACTIONS(1648), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84432,7 +84389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1642), 34, + anon_sym_SLASH, + ACTIONS(1646), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84465,20 +84423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7154] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(596), 1, sym_arguments, STATE(671), 1, sym_text_interpolation, - ACTIONS(1783), 11, + ACTIONS(1785), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84490,7 +84447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1781), 33, + anon_sym_SLASH, + ACTIONS(1783), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84522,16 +84480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7218] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(672), 1, sym_text_interpolation, - ACTIONS(1624), 12, + ACTIONS(1628), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84544,7 +84501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1622), 34, + anon_sym_SLASH, + ACTIONS(1626), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84577,16 +84535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7278] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(673), 1, sym_text_interpolation, - ACTIONS(1648), 12, + ACTIONS(1652), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84599,7 +84556,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1646), 34, + anon_sym_SLASH, + ACTIONS(1650), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84632,16 +84590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7338] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(674), 1, sym_text_interpolation, - ACTIONS(1664), 12, + ACTIONS(1668), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84654,7 +84611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1662), 34, + anon_sym_SLASH, + ACTIONS(1666), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84687,16 +84645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7398] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(675), 1, sym_text_interpolation, - ACTIONS(1574), 12, + ACTIONS(1578), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84709,7 +84666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1572), 34, + anon_sym_SLASH, + ACTIONS(1576), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84742,16 +84700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7458] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(676), 1, sym_text_interpolation, - ACTIONS(1570), 12, + ACTIONS(1574), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84764,7 +84721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1568), 34, + anon_sym_SLASH, + ACTIONS(1572), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84797,16 +84755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7518] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(677), 1, sym_text_interpolation, - ACTIONS(1652), 12, + ACTIONS(1656), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84819,7 +84776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1650), 34, + anon_sym_SLASH, + ACTIONS(1654), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84852,16 +84810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7578] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(678), 1, sym_text_interpolation, - ACTIONS(1660), 12, + ACTIONS(1664), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84874,7 +84831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1658), 34, + anon_sym_SLASH, + ACTIONS(1662), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84907,16 +84865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7638] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(679), 1, sym_text_interpolation, - ACTIONS(1578), 12, + ACTIONS(1582), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84929,7 +84886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 34, + anon_sym_SLASH, + ACTIONS(1580), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84962,16 +84920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7698] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(680), 1, sym_text_interpolation, - ACTIONS(1628), 12, + ACTIONS(1632), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84984,7 +84941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1626), 34, + anon_sym_SLASH, + ACTIONS(1630), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85017,20 +84975,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7758] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(589), 1, sym_arguments, STATE(681), 1, sym_text_interpolation, - ACTIONS(1787), 11, + ACTIONS(1789), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85042,7 +84999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1785), 33, + anon_sym_SLASH, + ACTIONS(1787), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85074,16 +85032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7822] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(682), 1, sym_text_interpolation, - ACTIONS(1632), 12, + ACTIONS(1636), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85096,7 +85053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1630), 34, + anon_sym_SLASH, + ACTIONS(1634), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85129,32 +85087,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7882] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1706), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(1739), 1, + ACTIONS(1741), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(1745), 1, - anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, ACTIONS(1747), 1, - anon_sym_POUND_LBRACK, + anon_sym_QMARK, ACTIONS(1749), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(1789), 1, + ACTIONS(1791), 1, anon_sym_RPAREN, STATE(683), 1, sym_text_interpolation, @@ -85180,7 +85137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2658), 1, sym_namespace_name, - ACTIONS(240), 3, + ACTIONS(242), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -85196,7 +85153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -85211,17 +85168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [7990] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1733), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(684), 1, sym_text_interpolation, STATE(729), 1, sym_arguments, - ACTIONS(1582), 11, + ACTIONS(1586), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85233,7 +85190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 32, + anon_sym_SLASH, + ACTIONS(1584), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85264,20 +85222,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8053] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1727), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(661), 1, sym_arguments, STATE(685), 1, sym_text_interpolation, - ACTIONS(1787), 11, + ACTIONS(1789), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85289,7 +85246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1785), 32, + anon_sym_SLASH, + ACTIONS(1787), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85320,20 +85278,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8116] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1733), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(686), 1, sym_text_interpolation, STATE(754), 1, sym_arguments, - ACTIONS(1592), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85345,7 +85302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1590), 32, + anon_sym_SLASH, + ACTIONS(1594), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85376,30 +85334,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8179] = 27, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1791), 1, - sym_name, ACTIONS(1793), 1, + sym_name, + ACTIONS(1795), 1, anon_sym_RBRACE, STATE(687), 1, sym_text_interpolation, @@ -85417,10 +85374,10 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1590), 2, @@ -85429,7 +85386,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2223), 2, sym_use_instead_of_clause, sym_use_as_clause, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -85455,29 +85412,29 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [8282] = 29, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(296), 1, + ACTIONS(298), 1, aux_sym__list_destructing_token1, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(701), 1, + ACTIONS(703), 1, anon_sym_AMP, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1797), 1, sym_name, STATE(688), 1, sym_text_interpolation, @@ -85497,16 +85454,16 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1590), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -85533,23 +85490,23 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [8389] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(689), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85561,7 +85518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 27, + anon_sym_SLASH, + ACTIONS(1598), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85587,20 +85545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8454] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1733), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(690), 1, sym_text_interpolation, STATE(746), 1, sym_arguments, - ACTIONS(1588), 11, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85612,7 +85569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1586), 32, + anon_sym_SLASH, + ACTIONS(1590), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85643,26 +85601,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8517] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1733), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(691), 1, sym_text_interpolation, STATE(735), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1731), 11, + ACTIONS(1733), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85674,7 +85631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1729), 27, + anon_sym_SLASH, + ACTIONS(1731), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85700,26 +85658,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8582] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(692), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1757), 11, + ACTIONS(1759), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85731,7 +85688,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 27, + anon_sym_SLASH, + ACTIONS(1757), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85757,30 +85715,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8647] = 28, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1706), 1, sym_name, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(1739), 1, + ACTIONS(1741), 1, anon_sym_LPAREN, - ACTIONS(1743), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(1745), 1, - anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, ACTIONS(1747), 1, - anon_sym_POUND_LBRACK, + anon_sym_QMARK, ACTIONS(1749), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(693), 1, sym_text_interpolation, @@ -85806,7 +85763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2658), 1, sym_namespace_name, - ACTIONS(240), 3, + ACTIONS(242), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -85822,7 +85779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -85837,17 +85794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [8752] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1733), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(694), 1, sym_text_interpolation, STATE(761), 1, sym_arguments, - ACTIONS(1612), 11, + ACTIONS(1616), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85859,7 +85816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1610), 32, + anon_sym_SLASH, + ACTIONS(1614), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85890,26 +85848,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8815] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(695), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85921,7 +85878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 27, + anon_sym_SLASH, + ACTIONS(1598), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85947,20 +85905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8880] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1727), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(674), 1, sym_arguments, STATE(696), 1, sym_text_interpolation, - ACTIONS(1783), 11, + ACTIONS(1785), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85972,7 +85929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1781), 32, + anon_sym_SLASH, + ACTIONS(1783), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86003,26 +85961,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8943] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(697), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1757), 11, + ACTIONS(1759), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86034,7 +85991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 27, + anon_sym_SLASH, + ACTIONS(1757), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86060,26 +86018,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9008] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1797), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1799), 1, anon_sym_LPAREN, STATE(698), 1, sym_text_interpolation, STATE(919), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1731), 11, + ACTIONS(1733), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86091,7 +86048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1729), 27, + anon_sym_SLASH, + ACTIONS(1731), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86117,18 +86075,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9073] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(587), 1, sym_arguments, STATE(699), 1, sym_text_interpolation, - ACTIONS(1612), 11, + ACTIONS(1616), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86140,7 +86097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1610), 33, + anon_sym_SLASH, + ACTIONS(1614), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86172,26 +86130,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9134] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1733), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(700), 1, sym_text_interpolation, STATE(735), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1731), 11, + ACTIONS(1733), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86203,7 +86160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1729), 27, + anon_sym_SLASH, + ACTIONS(1731), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86229,18 +86187,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9199] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(592), 1, sym_arguments, STATE(701), 1, sym_text_interpolation, - ACTIONS(1608), 11, + ACTIONS(1612), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86252,7 +86209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1606), 33, + anon_sym_SLASH, + ACTIONS(1610), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86284,22 +86242,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9260] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(702), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1598), 12, + ACTIONS(1602), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86312,7 +86269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1604), 28, + anon_sym_SLASH, + ACTIONS(1608), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86339,20 +86297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9321] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1733), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(703), 1, sym_text_interpolation, STATE(760), 1, sym_arguments, - ACTIONS(1608), 11, + ACTIONS(1612), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86364,7 +86321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1606), 32, + anon_sym_SLASH, + ACTIONS(1610), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86395,26 +86353,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9384] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1733), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(704), 1, sym_text_interpolation, STATE(725), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1801), 11, + ACTIONS(1803), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86426,7 +86383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1799), 27, + anon_sym_SLASH, + ACTIONS(1801), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86452,30 +86410,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9449] = 27, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1791), 1, + ACTIONS(1793), 1, sym_name, - ACTIONS(1803), 1, + ACTIONS(1805), 1, anon_sym_RBRACE, STATE(687), 1, aux_sym_use_list_repeat1, @@ -86493,10 +86450,10 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1590), 2, @@ -86505,7 +86462,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2223), 2, sym_use_instead_of_clause, sym_use_as_clause, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -86531,18 +86488,18 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [9552] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1812), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1814), 1, anon_sym_EQ, STATE(706), 1, sym_text_interpolation, - ACTIONS(1809), 2, + ACTIONS(1811), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1807), 11, + ACTIONS(1809), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86554,7 +86511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1805), 31, + anon_sym_SLASH, + ACTIONS(1807), 30, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, @@ -86584,26 +86542,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9615] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1733), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(707), 1, sym_text_interpolation, STATE(725), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1816), 11, + ACTIONS(1818), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86615,7 +86572,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1814), 27, + anon_sym_SLASH, + ACTIONS(1816), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86641,18 +86599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9680] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(595), 1, sym_arguments, STATE(708), 1, sym_text_interpolation, - ACTIONS(1592), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86664,7 +86621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1590), 33, + anon_sym_SLASH, + ACTIONS(1594), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86696,18 +86654,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9741] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(593), 1, sym_arguments, STATE(709), 1, sym_text_interpolation, - ACTIONS(1588), 11, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86719,7 +86676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1586), 33, + anon_sym_SLASH, + ACTIONS(1590), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86751,18 +86709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9802] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(589), 1, sym_arguments, STATE(710), 1, sym_text_interpolation, - ACTIONS(1582), 11, + ACTIONS(1586), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86774,7 +86731,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 33, + anon_sym_SLASH, + ACTIONS(1584), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86806,26 +86764,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9863] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1727), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(659), 1, sym_arguments, STATE(711), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86837,7 +86794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 27, + anon_sym_SLASH, + ACTIONS(1598), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86863,26 +86821,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9928] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1733), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(712), 1, sym_text_interpolation, STATE(725), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1598), 11, + ACTIONS(1602), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86894,7 +86851,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1604), 27, + anon_sym_SLASH, + ACTIONS(1608), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86920,26 +86878,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9993] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1727), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(659), 1, sym_arguments, STATE(713), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86951,7 +86908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 27, + anon_sym_SLASH, + ACTIONS(1598), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86977,20 +86935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10058] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(587), 1, sym_arguments, STATE(714), 1, sym_text_interpolation, - ACTIONS(1612), 11, + ACTIONS(1616), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87002,7 +86959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1610), 32, + anon_sym_SLASH, + ACTIONS(1614), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87033,20 +86991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10121] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(592), 1, sym_arguments, STATE(715), 1, sym_text_interpolation, - ACTIONS(1608), 11, + ACTIONS(1612), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87058,7 +87015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1606), 32, + anon_sym_SLASH, + ACTIONS(1610), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87089,32 +87047,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10184] = 29, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(296), 1, + ACTIONS(298), 1, aux_sym__list_destructing_token1, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(701), 1, + ACTIONS(703), 1, anon_sym_AMP, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1797), 1, sym_name, STATE(716), 1, sym_text_interpolation, @@ -87134,16 +87091,16 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1590), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -87170,17 +87127,17 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [10291] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(595), 1, sym_arguments, STATE(717), 1, sym_text_interpolation, - ACTIONS(1592), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87192,7 +87149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1590), 32, + anon_sym_SLASH, + ACTIONS(1594), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87223,20 +87181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10354] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(593), 1, sym_arguments, STATE(718), 1, sym_text_interpolation, - ACTIONS(1588), 11, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87248,7 +87205,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1586), 32, + anon_sym_SLASH, + ACTIONS(1590), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87279,20 +87237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10417] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(589), 1, sym_arguments, STATE(719), 1, sym_text_interpolation, - ACTIONS(1582), 11, + ACTIONS(1586), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87304,7 +87261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 32, + anon_sym_SLASH, + ACTIONS(1584), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87335,30 +87293,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10480] = 26, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1818), 1, + ACTIONS(1820), 1, sym_name, - ACTIONS(1824), 1, + ACTIONS(1826), 1, aux_sym_namespace_definition_token1, - ACTIONS(1827), 1, + ACTIONS(1829), 1, anon_sym_BSLASH, - ACTIONS(1830), 1, - anon_sym_RBRACE, ACTIONS(1832), 1, + anon_sym_RBRACE, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1837), 1, aux_sym_cast_type_token1, - ACTIONS(1838), 1, + ACTIONS(1840), 1, anon_sym_LBRACK, - ACTIONS(1847), 1, + ACTIONS(1849), 1, anon_sym_LT_LT_LT, - ACTIONS(1850), 1, + ACTIONS(1852), 1, anon_sym_DOLLAR, STATE(1570), 1, sym_class_constant_access_expression, @@ -87372,10 +87329,10 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(1841), 2, + ACTIONS(1843), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(1844), 2, + ACTIONS(1846), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(720), 2, @@ -87387,7 +87344,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2223), 2, sym_use_instead_of_clause, sym_use_as_clause, - ACTIONS(1821), 3, + ACTIONS(1823), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -87413,22 +87370,22 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [10581] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(721), 1, sym_text_interpolation, - ACTIONS(1602), 2, + ACTIONS(1606), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 12, + ACTIONS(1600), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87441,7 +87398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 26, + anon_sym_SLASH, + ACTIONS(1598), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87466,16 +87424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10644] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(722), 1, sym_text_interpolation, - ACTIONS(1664), 11, + ACTIONS(1668), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87487,7 +87444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1662), 33, + anon_sym_SLASH, + ACTIONS(1666), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87519,16 +87477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10702] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(723), 1, sym_text_interpolation, - ACTIONS(1855), 11, + ACTIONS(1857), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87540,7 +87497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1853), 33, + anon_sym_SLASH, + ACTIONS(1855), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87572,16 +87530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10760] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(724), 1, sym_text_interpolation, - ACTIONS(1859), 11, + ACTIONS(1861), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87593,7 +87550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1857), 33, + anon_sym_SLASH, + ACTIONS(1859), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87625,16 +87583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10818] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(725), 1, sym_text_interpolation, - ACTIONS(1616), 11, + ACTIONS(1620), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87646,7 +87603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1614), 33, + anon_sym_SLASH, + ACTIONS(1618), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87678,16 +87636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10876] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(726), 1, sym_text_interpolation, - ACTIONS(1863), 11, + ACTIONS(1865), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87699,7 +87656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1861), 33, + anon_sym_SLASH, + ACTIONS(1863), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87731,16 +87689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10934] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(727), 1, sym_text_interpolation, - ACTIONS(1867), 11, + ACTIONS(1869), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87752,7 +87709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1865), 33, + anon_sym_SLASH, + ACTIONS(1867), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87784,16 +87742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10992] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(728), 1, sym_text_interpolation, - ACTIONS(1640), 11, + ACTIONS(1644), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87805,7 +87762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1638), 33, + anon_sym_SLASH, + ACTIONS(1642), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87837,16 +87795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11050] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(729), 1, sym_text_interpolation, - ACTIONS(1636), 11, + ACTIONS(1640), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87858,7 +87815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1634), 33, + anon_sym_SLASH, + ACTIONS(1638), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87890,16 +87848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11108] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(730), 1, sym_text_interpolation, - ACTIONS(1548), 11, + ACTIONS(1550), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87911,7 +87868,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1550), 33, + anon_sym_SLASH, + ACTIONS(1552), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87943,16 +87901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11166] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(731), 1, sym_text_interpolation, - ACTIONS(1871), 11, + ACTIONS(1873), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87964,7 +87921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1869), 33, + anon_sym_SLASH, + ACTIONS(1871), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87996,16 +87954,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11224] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(732), 1, sym_text_interpolation, - ACTIONS(1875), 11, + ACTIONS(1877), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88017,7 +87974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1873), 33, + anon_sym_SLASH, + ACTIONS(1875), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88049,16 +88007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11282] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(733), 1, sym_text_interpolation, - ACTIONS(1879), 11, + ACTIONS(1881), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88070,7 +88027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1877), 33, + anon_sym_SLASH, + ACTIONS(1879), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88102,16 +88060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11340] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(734), 1, sym_text_interpolation, - ACTIONS(1807), 11, + ACTIONS(1809), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88123,7 +88080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1805), 33, + anon_sym_SLASH, + ACTIONS(1807), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88155,23 +88113,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11398] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(735), 1, sym_text_interpolation, - ACTIONS(1614), 6, + ACTIONS(1618), 6, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1883), 11, + ACTIONS(1885), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88183,7 +88140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1881), 27, + anon_sym_SLASH, + ACTIONS(1883), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88209,16 +88167,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11458] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(736), 1, sym_text_interpolation, - ACTIONS(1887), 11, + ACTIONS(1889), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88230,7 +88187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1885), 33, + anon_sym_SLASH, + ACTIONS(1887), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88262,16 +88220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11516] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(737), 1, sym_text_interpolation, - ACTIONS(1891), 11, + ACTIONS(1893), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88283,7 +88240,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1889), 33, + anon_sym_SLASH, + ACTIONS(1891), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88315,16 +88273,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11574] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(738), 1, sym_text_interpolation, - ACTIONS(1895), 11, + ACTIONS(1897), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88336,7 +88293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1893), 33, + anon_sym_SLASH, + ACTIONS(1895), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88368,16 +88326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11632] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(739), 1, sym_text_interpolation, - ACTIONS(1899), 11, + ACTIONS(1901), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88389,7 +88346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1897), 33, + anon_sym_SLASH, + ACTIONS(1899), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88421,16 +88379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11690] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(740), 1, sym_text_interpolation, - ACTIONS(1903), 11, + ACTIONS(1905), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88442,7 +88399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1901), 33, + anon_sym_SLASH, + ACTIONS(1903), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88474,30 +88432,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11748] = 28, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(701), 1, + ACTIONS(703), 1, anon_sym_AMP, - ACTIONS(853), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1797), 1, sym_name, STATE(741), 1, sym_text_interpolation, @@ -88517,16 +88474,16 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1590), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -88553,13 +88510,13 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [11852] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(742), 1, sym_text_interpolation, - ACTIONS(1907), 11, + ACTIONS(1909), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88571,7 +88528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1905), 33, + anon_sym_SLASH, + ACTIONS(1907), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88603,16 +88561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11910] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(743), 1, sym_text_interpolation, - ACTIONS(1911), 11, + ACTIONS(1913), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88624,7 +88581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1909), 33, + anon_sym_SLASH, + ACTIONS(1911), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88656,16 +88614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11968] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(744), 1, sym_text_interpolation, - ACTIONS(1644), 11, + ACTIONS(1648), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88677,7 +88634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1642), 33, + anon_sym_SLASH, + ACTIONS(1646), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88709,16 +88667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12026] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(745), 1, sym_text_interpolation, - ACTIONS(1624), 11, + ACTIONS(1628), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88730,7 +88687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1622), 33, + anon_sym_SLASH, + ACTIONS(1626), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88762,16 +88720,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12084] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(746), 1, sym_text_interpolation, - ACTIONS(1652), 11, + ACTIONS(1656), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88783,7 +88740,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1650), 33, + anon_sym_SLASH, + ACTIONS(1654), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88815,16 +88773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12142] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(747), 1, sym_text_interpolation, - ACTIONS(1915), 11, + ACTIONS(1917), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88836,7 +88793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1913), 33, + anon_sym_SLASH, + ACTIONS(1915), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88868,16 +88826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12200] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(748), 1, sym_text_interpolation, - ACTIONS(1620), 11, + ACTIONS(1624), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88889,7 +88846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1618), 33, + anon_sym_SLASH, + ACTIONS(1622), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88921,16 +88879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12258] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(749), 1, sym_text_interpolation, - ACTIONS(1656), 11, + ACTIONS(1660), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88942,7 +88899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1654), 33, + anon_sym_SLASH, + ACTIONS(1658), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88974,16 +88932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12316] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(750), 1, sym_text_interpolation, - ACTIONS(1578), 11, + ACTIONS(1582), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88995,7 +88952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 33, + anon_sym_SLASH, + ACTIONS(1580), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89027,16 +88985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12374] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(751), 1, sym_text_interpolation, - ACTIONS(1574), 11, + ACTIONS(1578), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89048,7 +89005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1572), 33, + anon_sym_SLASH, + ACTIONS(1576), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89080,16 +89038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12432] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(752), 1, sym_text_interpolation, - ACTIONS(1570), 11, + ACTIONS(1574), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89101,7 +89058,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1568), 33, + anon_sym_SLASH, + ACTIONS(1572), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89133,16 +89091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12490] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(753), 1, sym_text_interpolation, - ACTIONS(1919), 11, + ACTIONS(1921), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89154,7 +89111,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1917), 33, + anon_sym_SLASH, + ACTIONS(1919), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89186,16 +89144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12548] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(754), 1, sym_text_interpolation, - ACTIONS(1660), 11, + ACTIONS(1664), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89207,7 +89164,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1658), 33, + anon_sym_SLASH, + ACTIONS(1662), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89239,18 +89197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12606] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1921), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1923), 1, anon_sym_COLON_COLON, STATE(755), 1, sym_text_interpolation, - ACTIONS(1632), 11, + ACTIONS(1636), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89262,7 +89219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1630), 32, + anon_sym_SLASH, + ACTIONS(1634), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89293,16 +89251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12666] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(756), 1, sym_text_interpolation, - ACTIONS(1925), 11, + ACTIONS(1927), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89314,7 +89271,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1923), 33, + anon_sym_SLASH, + ACTIONS(1925), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89346,16 +89304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12724] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(757), 1, sym_text_interpolation, - ACTIONS(1929), 11, + ACTIONS(1931), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89367,7 +89324,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1927), 33, + anon_sym_SLASH, + ACTIONS(1929), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89399,16 +89357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12782] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(758), 1, sym_text_interpolation, - ACTIONS(1933), 11, + ACTIONS(1935), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89420,7 +89377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1931), 33, + anon_sym_SLASH, + ACTIONS(1933), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89452,16 +89410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12840] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(759), 1, sym_text_interpolation, - ACTIONS(1937), 11, + ACTIONS(1939), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89473,7 +89430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1935), 33, + anon_sym_SLASH, + ACTIONS(1937), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89505,16 +89463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12898] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(760), 1, sym_text_interpolation, - ACTIONS(1648), 11, + ACTIONS(1652), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89526,7 +89483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1646), 33, + anon_sym_SLASH, + ACTIONS(1650), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89558,16 +89516,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12956] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(761), 1, sym_text_interpolation, - ACTIONS(1628), 11, + ACTIONS(1632), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89579,7 +89536,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1626), 33, + anon_sym_SLASH, + ACTIONS(1630), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89611,16 +89569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13014] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(762), 1, sym_text_interpolation, - ACTIONS(1566), 11, + ACTIONS(1568), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89632,7 +89589,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1564), 33, + anon_sym_SLASH, + ACTIONS(1566), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89664,16 +89622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13072] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(763), 1, sym_text_interpolation, - ACTIONS(1941), 11, + ACTIONS(1943), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89685,7 +89642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1939), 33, + anon_sym_SLASH, + ACTIONS(1941), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89717,20 +89675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13130] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1809), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1811), 1, anon_sym_RPAREN, - ACTIONS(1812), 1, + ACTIONS(1814), 1, anon_sym_EQ, STATE(764), 1, sym_text_interpolation, - ACTIONS(1807), 10, + ACTIONS(1809), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89741,7 +89698,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1805), 31, + anon_sym_SLASH, + ACTIONS(1807), 30, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -89771,16 +89729,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13191] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1680), 1, anon_sym_LPAREN, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, STATE(621), 1, sym_arguments, @@ -89788,13 +89745,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 10, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89805,7 +89762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 24, + anon_sym_SLASH, + ACTIONS(1598), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89828,20 +89786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13258] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1943), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(766), 1, sym_text_interpolation, STATE(788), 1, sym_arguments, - ACTIONS(1612), 11, + ACTIONS(1616), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89853,7 +89810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1610), 30, + anon_sym_SLASH, + ACTIONS(1614), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89882,20 +89840,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13319] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1943), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(767), 1, sym_text_interpolation, STATE(787), 1, sym_arguments, - ACTIONS(1608), 11, + ACTIONS(1612), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89907,7 +89864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1606), 30, + anon_sym_SLASH, + ACTIONS(1610), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89936,16 +89894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13380] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(768), 1, sym_text_interpolation, - ACTIONS(1042), 10, + ACTIONS(1044), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89956,7 +89913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1040), 33, + anon_sym_SLASH, + ACTIONS(1042), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89988,22 +89946,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13437] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(769), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1598), 11, + ACTIONS(1602), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90015,7 +89972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1604), 27, + anon_sym_SLASH, + ACTIONS(1608), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90041,20 +89999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13496] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1943), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(770), 1, sym_text_interpolation, STATE(797), 1, sym_arguments, - ACTIONS(1582), 11, + ACTIONS(1586), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90066,7 +90023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 30, + anon_sym_SLASH, + ACTIONS(1584), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90095,20 +90053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13557] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1943), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(771), 1, sym_text_interpolation, STATE(799), 1, sym_arguments, - ACTIONS(1588), 11, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90120,7 +90077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1586), 30, + anon_sym_SLASH, + ACTIONS(1590), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90149,20 +90107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13618] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1943), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(772), 1, sym_text_interpolation, STATE(800), 1, sym_arguments, - ACTIONS(1592), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90174,7 +90131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1590), 30, + anon_sym_SLASH, + ACTIONS(1594), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90203,22 +90161,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13679] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(773), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1816), 11, + ACTIONS(1818), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90230,7 +90187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1814), 27, + anon_sym_SLASH, + ACTIONS(1816), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90256,26 +90214,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13738] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1943), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(774), 1, sym_text_interpolation, STATE(804), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1598), 11, + ACTIONS(1602), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90287,7 +90244,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1604), 25, + anon_sym_SLASH, + ACTIONS(1608), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90311,22 +90269,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13801] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(775), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1757), 11, + ACTIONS(1759), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90338,7 +90295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 27, + anon_sym_SLASH, + ACTIONS(1757), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90364,16 +90322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13860] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1724), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(1943), 1, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(776), 1, sym_text_interpolation, @@ -90381,13 +90338,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 10, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90398,7 +90355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 24, + anon_sym_SLASH, + ACTIONS(1598), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90421,16 +90379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13927] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(777), 1, sym_text_interpolation, - ACTIONS(1947), 18, + ACTIONS(1949), 18, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, @@ -90449,7 +90406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_DOLLAR, - ACTIONS(1945), 25, + ACTIONS(1947), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -90476,19 +90433,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_require_once_expression_token1, sym_name, [13984] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(778), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90500,7 +90457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 27, + anon_sym_SLASH, + ACTIONS(1598), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90526,22 +90484,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14043] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(779), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1801), 11, + ACTIONS(1803), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90553,7 +90510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1799), 27, + anon_sym_SLASH, + ACTIONS(1801), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90579,29 +90537,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14102] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1943), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(780), 1, sym_text_interpolation, STATE(804), 1, sym_arguments, - ACTIONS(1678), 2, + ACTIONS(1682), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90613,7 +90570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 23, + anon_sym_SLASH, + ACTIONS(1598), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90635,16 +90593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14167] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(781), 1, sym_text_interpolation, - ACTIONS(1034), 10, + ACTIONS(1036), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90655,7 +90612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1032), 33, + anon_sym_SLASH, + ACTIONS(1034), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90687,16 +90645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14224] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, STATE(584), 1, sym_arguments, @@ -90704,13 +90661,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1757), 10, + ACTIONS(1759), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90721,7 +90678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 24, + anon_sym_SLASH, + ACTIONS(1757), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90744,16 +90702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14291] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1724), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(783), 1, sym_text_interpolation, @@ -90761,13 +90718,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1731), 10, + ACTIONS(1733), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90778,7 +90735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1729), 24, + anon_sym_SLASH, + ACTIONS(1731), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90801,16 +90759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14358] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(784), 1, sym_text_interpolation, - ACTIONS(1664), 11, + ACTIONS(1668), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90822,7 +90779,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1662), 31, + anon_sym_SLASH, + ACTIONS(1666), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90852,16 +90810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14414] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(785), 1, sym_text_interpolation, - ACTIONS(1656), 11, + ACTIONS(1660), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90873,7 +90830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1654), 31, + anon_sym_SLASH, + ACTIONS(1658), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90903,16 +90861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14470] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(786), 1, sym_text_interpolation, - ACTIONS(1620), 11, + ACTIONS(1624), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90924,7 +90881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1618), 31, + anon_sym_SLASH, + ACTIONS(1622), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90954,16 +90912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14526] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(787), 1, sym_text_interpolation, - ACTIONS(1648), 11, + ACTIONS(1652), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90975,7 +90932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1646), 31, + anon_sym_SLASH, + ACTIONS(1650), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91005,16 +90963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14582] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(788), 1, sym_text_interpolation, - ACTIONS(1628), 11, + ACTIONS(1632), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91026,7 +90983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1626), 31, + anon_sym_SLASH, + ACTIONS(1630), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91056,16 +91014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14638] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(789), 1, sym_text_interpolation, - ACTIONS(1632), 11, + ACTIONS(1636), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91077,7 +91034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1630), 31, + anon_sym_SLASH, + ACTIONS(1634), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91107,18 +91065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14694] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1680), 1, anon_sym_LPAREN, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(1951), 1, + ACTIONS(1953), 1, anon_sym_COLON, STATE(621), 1, sym_arguments, @@ -91126,13 +91083,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 10, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91143,7 +91100,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 22, + anon_sym_SLASH, + ACTIONS(1598), 21, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_PLUS, @@ -91164,16 +91122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14762] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(791), 1, sym_text_interpolation, - ACTIONS(1624), 11, + ACTIONS(1628), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91185,7 +91142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1622), 31, + anon_sym_SLASH, + ACTIONS(1626), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91215,16 +91173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14818] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(792), 1, sym_text_interpolation, - ACTIONS(1955), 17, + ACTIONS(1957), 17, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, @@ -91242,7 +91199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_DOLLAR, - ACTIONS(1953), 25, + ACTIONS(1955), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -91269,13 +91226,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_require_once_expression_token1, sym_name, [14874] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(793), 1, sym_text_interpolation, - ACTIONS(1574), 11, + ACTIONS(1578), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91287,7 +91244,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1572), 31, + anon_sym_SLASH, + ACTIONS(1576), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91317,18 +91275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14930] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(1957), 1, + ACTIONS(1959), 1, anon_sym_COLON, STATE(584), 1, sym_arguments, @@ -91336,13 +91293,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 10, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91353,7 +91310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 22, + anon_sym_SLASH, + ACTIONS(1598), 21, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, @@ -91374,16 +91332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14998] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(795), 1, sym_text_interpolation, - ACTIONS(1570), 11, + ACTIONS(1574), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91395,7 +91352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1568), 31, + anon_sym_SLASH, + ACTIONS(1572), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91425,16 +91383,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15054] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(796), 1, sym_text_interpolation, - ACTIONS(1640), 11, + ACTIONS(1644), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91446,7 +91403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1638), 31, + anon_sym_SLASH, + ACTIONS(1642), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91476,16 +91434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15110] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(797), 1, sym_text_interpolation, - ACTIONS(1636), 11, + ACTIONS(1640), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91497,7 +91454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1634), 31, + anon_sym_SLASH, + ACTIONS(1638), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91527,16 +91485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15166] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(798), 1, sym_text_interpolation, - ACTIONS(1644), 11, + ACTIONS(1648), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91548,7 +91505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1642), 31, + anon_sym_SLASH, + ACTIONS(1646), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91578,16 +91536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15222] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(799), 1, sym_text_interpolation, - ACTIONS(1652), 11, + ACTIONS(1656), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91599,7 +91556,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1650), 31, + anon_sym_SLASH, + ACTIONS(1654), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91629,16 +91587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15278] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(800), 1, sym_text_interpolation, - ACTIONS(1660), 11, + ACTIONS(1664), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91650,7 +91607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1658), 31, + anon_sym_SLASH, + ACTIONS(1662), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91680,18 +91638,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15334] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1680), 1, anon_sym_LPAREN, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(1959), 1, + ACTIONS(1961), 1, anon_sym_COLON, STATE(621), 1, sym_arguments, @@ -91699,13 +91656,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 10, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91716,7 +91673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 22, + anon_sym_SLASH, + ACTIONS(1598), 21, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_PLUS, @@ -91737,16 +91695,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15402] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(802), 1, sym_text_interpolation, - ACTIONS(1566), 11, + ACTIONS(1568), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91758,7 +91715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1564), 31, + anon_sym_SLASH, + ACTIONS(1566), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91788,16 +91746,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15458] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(803), 1, sym_text_interpolation, - ACTIONS(1578), 11, + ACTIONS(1582), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91809,7 +91766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 31, + anon_sym_SLASH, + ACTIONS(1580), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91839,16 +91797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15514] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(804), 1, sym_text_interpolation, - ACTIONS(1616), 11, + ACTIONS(1620), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91860,7 +91817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1614), 31, + anon_sym_SLASH, + ACTIONS(1618), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91890,20 +91848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15570] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1943), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(784), 1, sym_arguments, STATE(805), 1, sym_text_interpolation, - ACTIONS(1783), 10, + ACTIONS(1785), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91914,7 +91871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1781), 29, + anon_sym_SLASH, + ACTIONS(1783), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91942,26 +91900,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15629] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1680), 1, anon_sym_LPAREN, STATE(621), 1, sym_arguments, STATE(806), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 10, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91972,7 +91929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 24, + anon_sym_SLASH, + ACTIONS(1598), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91995,28 +91953,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15690] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1797), 1, sym_name, STATE(807), 1, sym_text_interpolation, @@ -92032,16 +91989,16 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1590), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -92068,17 +92025,17 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [15785] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1949), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(808), 1, sym_text_interpolation, STATE(879), 1, sym_arguments, - ACTIONS(1582), 10, + ACTIONS(1586), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92089,7 +92046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 29, + anon_sym_SLASH, + ACTIONS(1584), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92117,26 +92075,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15844] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1949), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(809), 1, sym_text_interpolation, STATE(887), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1598), 10, + ACTIONS(1602), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92147,7 +92104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1604), 24, + anon_sym_SLASH, + ACTIONS(1608), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92170,20 +92128,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15905] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(587), 1, sym_arguments, STATE(810), 1, sym_text_interpolation, - ACTIONS(1612), 10, + ACTIONS(1616), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92194,7 +92151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1610), 29, + anon_sym_SLASH, + ACTIONS(1614), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92222,28 +92180,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15964] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1554), 1, - anon_sym_LPAREN, ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1558), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1961), 1, + ACTIONS(1963), 1, sym_name, STATE(811), 1, sym_text_interpolation, @@ -92259,16 +92216,16 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2685), 1, sym__scope_resolution_qualifier, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1591), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -92295,13 +92252,13 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [16059] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(812), 1, sym_text_interpolation, - ACTIONS(1632), 10, + ACTIONS(1636), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92312,7 +92269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1630), 31, + anon_sym_SLASH, + ACTIONS(1634), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92342,28 +92300,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16114] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, - anon_sym_LPAREN, ACTIONS(1767), 1, + anon_sym_LPAREN, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(1963), 1, + ACTIONS(1965), 1, sym_name, STATE(813), 1, sym_text_interpolation, @@ -92377,10 +92334,10 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_resolution_qualifier, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(697), 2, @@ -92389,7 +92346,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1705), 2, sym_class_constant_access_expression, sym_cast_variable, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -92415,25 +92372,25 @@ static const uint16_t ts_small_parse_table[] = { sym_array_creation_expression, sym__string, [16209] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(1965), 1, + ACTIONS(1967), 1, sym_name, STATE(814), 1, sym_text_interpolation, @@ -92447,10 +92404,10 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2661), 1, sym_namespace_name_as_prefix, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(843), 2, @@ -92459,7 +92416,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1705), 2, sym_class_constant_access_expression, sym_cast_variable, - ACTIONS(1771), 3, + ACTIONS(1773), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -92485,17 +92442,17 @@ static const uint16_t ts_small_parse_table[] = { sym_array_creation_expression, sym__string, [16304] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(592), 1, sym_arguments, STATE(815), 1, sym_text_interpolation, - ACTIONS(1608), 10, + ACTIONS(1612), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92506,7 +92463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1606), 29, + anon_sym_SLASH, + ACTIONS(1610), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92534,28 +92492,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16363] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, - sym_name, ACTIONS(1969), 1, + sym_name, + ACTIONS(1971), 1, anon_sym_LPAREN, STATE(816), 1, sym_text_interpolation, @@ -92571,16 +92528,16 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1598), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -92607,17 +92564,17 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [16458] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(595), 1, sym_arguments, STATE(817), 1, sym_text_interpolation, - ACTIONS(1592), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92628,7 +92585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1590), 29, + anon_sym_SLASH, + ACTIONS(1594), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92656,22 +92614,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16517] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(818), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1598), 11, + ACTIONS(1602), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92683,7 +92640,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1604), 25, + anon_sym_SLASH, + ACTIONS(1608), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92707,18 +92665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16574] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(587), 1, sym_arguments, STATE(819), 1, sym_text_interpolation, - ACTIONS(1612), 10, + ACTIONS(1616), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92729,7 +92686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1610), 30, + anon_sym_SLASH, + ACTIONS(1614), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92758,18 +92716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16631] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(592), 1, sym_arguments, STATE(820), 1, sym_text_interpolation, - ACTIONS(1608), 10, + ACTIONS(1612), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92780,7 +92737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1606), 30, + anon_sym_SLASH, + ACTIONS(1610), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92809,28 +92767,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16688] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1971), 1, - sym_name, ACTIONS(1973), 1, + sym_name, + ACTIONS(1975), 1, anon_sym_LPAREN, STATE(821), 1, sym_text_interpolation, @@ -92846,16 +92803,16 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1593), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -92882,23 +92839,23 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [16783] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1943), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(804), 1, sym_arguments, STATE(822), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 10, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92909,7 +92866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 24, + anon_sym_SLASH, + ACTIONS(1598), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92932,18 +92890,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16844] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1812), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1814), 1, anon_sym_EQ, STATE(823), 1, sym_text_interpolation, - ACTIONS(1807), 10, + ACTIONS(1809), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92954,7 +92911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1805), 30, + anon_sym_SLASH, + ACTIONS(1807), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92983,26 +92941,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16901] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1680), 1, anon_sym_LPAREN, STATE(621), 1, sym_arguments, STATE(824), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 10, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93013,7 +92970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 24, + anon_sym_SLASH, + ACTIONS(1598), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93036,28 +92994,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16962] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1797), 1, sym_name, STATE(825), 1, sym_text_interpolation, @@ -93071,10 +93028,10 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(773), 2, @@ -93083,7 +93040,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1590), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -93109,23 +93066,23 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [17057] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1949), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(826), 1, sym_text_interpolation, STATE(887), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1801), 10, + ACTIONS(1803), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93136,7 +93093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1799), 24, + anon_sym_SLASH, + ACTIONS(1801), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93159,16 +93117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17118] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(827), 1, sym_text_interpolation, - ACTIONS(1146), 10, + ACTIONS(1148), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93179,7 +93136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1144), 31, + anon_sym_SLASH, + ACTIONS(1146), 30, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -93209,26 +93167,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17173] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1943), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(804), 1, sym_arguments, STATE(828), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 10, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93239,7 +93196,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 24, + anon_sym_SLASH, + ACTIONS(1598), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93262,20 +93220,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17234] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1680), 1, anon_sym_LPAREN, STATE(625), 1, sym_arguments, STATE(829), 1, sym_text_interpolation, - ACTIONS(1787), 10, + ACTIONS(1789), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93286,7 +93243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1785), 29, + anon_sym_SLASH, + ACTIONS(1787), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93314,28 +93272,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17293] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1797), 1, sym_name, STATE(830), 1, sym_text_interpolation, @@ -93351,16 +93308,16 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1590), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -93387,17 +93344,17 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [17388] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1949), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(831), 1, sym_text_interpolation, STATE(898), 1, sym_arguments, - ACTIONS(1612), 10, + ACTIONS(1616), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93408,7 +93365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1610), 29, + anon_sym_SLASH, + ACTIONS(1614), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93436,20 +93394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17447] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1680), 1, anon_sym_LPAREN, STATE(615), 1, sym_arguments, STATE(832), 1, sym_text_interpolation, - ACTIONS(1783), 10, + ACTIONS(1785), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93460,7 +93417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1781), 29, + anon_sym_SLASH, + ACTIONS(1783), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93488,28 +93446,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17506] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, - anon_sym_LPAREN, ACTIONS(1767), 1, + anon_sym_LPAREN, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(1975), 1, + ACTIONS(1977), 1, sym_name, STATE(833), 1, sym_text_interpolation, @@ -93523,10 +93480,10 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(773), 2, @@ -93535,7 +93492,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1585), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -93561,13 +93518,13 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [17601] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(834), 1, sym_text_interpolation, - ACTIONS(1124), 10, + ACTIONS(1126), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93578,7 +93535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1122), 31, + anon_sym_SLASH, + ACTIONS(1124), 30, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -93608,20 +93566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17656] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1949), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(835), 1, sym_text_interpolation, STATE(897), 1, sym_arguments, - ACTIONS(1608), 10, + ACTIONS(1612), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93632,7 +93589,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1606), 29, + anon_sym_SLASH, + ACTIONS(1610), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93660,26 +93618,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17715] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(836), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1757), 10, + ACTIONS(1759), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93690,7 +93647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 24, + anon_sym_SLASH, + ACTIONS(1757), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93713,26 +93671,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17776] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1949), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(837), 1, sym_text_interpolation, STATE(866), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1731), 10, + ACTIONS(1733), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93743,60 +93700,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1729), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, anon_sym_SLASH, - anon_sym_PERCENT, - [17837] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1977), 1, - anon_sym_LPAREN, - STATE(838), 1, - sym_text_interpolation, - STATE(1132), 1, - sym_arguments, - ACTIONS(1600), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1731), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - ACTIONS(1729), 24, + ACTIONS(1731), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93819,28 +93724,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_PERCENT, + [17837] = 8, + ACTIONS(20), 1, + anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1979), 1, + anon_sym_LPAREN, + STATE(838), 1, + sym_text_interpolation, + STATE(1132), 1, + sym_arguments, + ACTIONS(1604), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1733), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1731), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_PERCENT, [17898] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(1975), 1, + ACTIONS(1977), 1, sym_name, - ACTIONS(1979), 1, + ACTIONS(1981), 1, anon_sym_LPAREN, STATE(839), 1, sym_text_interpolation, @@ -93856,16 +93813,16 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2669), 1, sym__scope_resolution_qualifier, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1585), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -93892,15 +93849,15 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [17993] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(595), 1, sym_arguments, STATE(840), 1, sym_text_interpolation, - ACTIONS(1592), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93911,7 +93868,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1590), 30, + anon_sym_SLASH, + ACTIONS(1594), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93940,26 +93898,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18050] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1949), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(841), 1, sym_text_interpolation, STATE(866), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1731), 10, + ACTIONS(1733), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93970,7 +93927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1729), 24, + anon_sym_SLASH, + ACTIONS(1731), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93993,18 +93951,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18111] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(593), 1, sym_arguments, STATE(842), 1, sym_text_interpolation, - ACTIONS(1588), 10, + ACTIONS(1592), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94015,7 +93972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1586), 30, + anon_sym_SLASH, + ACTIONS(1590), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94044,26 +94002,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18168] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(843), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1757), 10, + ACTIONS(1759), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94074,7 +94031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 24, + anon_sym_SLASH, + ACTIONS(1757), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94097,25 +94055,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18229] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(844), 1, sym_text_interpolation, - ACTIONS(1678), 2, + ACTIONS(1682), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94127,7 +94084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 23, + anon_sym_SLASH, + ACTIONS(1598), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94149,20 +94107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18288] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1943), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(797), 1, sym_arguments, STATE(845), 1, sym_text_interpolation, - ACTIONS(1787), 10, + ACTIONS(1789), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94173,7 +94130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1785), 29, + anon_sym_SLASH, + ACTIONS(1787), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94201,28 +94159,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18347] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, - sym_name, ACTIONS(1969), 1, + sym_name, + ACTIONS(1971), 1, anon_sym_LPAREN, STATE(846), 1, sym_text_interpolation, @@ -94238,16 +94195,16 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1598), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -94274,17 +94231,17 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [18442] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(593), 1, sym_arguments, STATE(847), 1, sym_text_interpolation, - ACTIONS(1588), 10, + ACTIONS(1592), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94295,7 +94252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1586), 29, + anon_sym_SLASH, + ACTIONS(1590), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94323,28 +94281,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18501] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1797), 1, sym_name, STATE(848), 1, sym_text_interpolation, @@ -94360,16 +94317,16 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1590), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -94396,23 +94353,23 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [18596] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1949), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(849), 1, sym_text_interpolation, STATE(887), 1, sym_arguments, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1816), 10, + ACTIONS(1818), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94423,7 +94380,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1814), 24, + anon_sym_SLASH, + ACTIONS(1816), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94446,28 +94404,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18657] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(1969), 1, sym_name, STATE(850), 1, sym_text_interpolation, @@ -94481,10 +94438,10 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(905), 2, @@ -94493,7 +94450,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1598), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -94519,17 +94476,17 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [18752] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1949), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(851), 1, sym_text_interpolation, STATE(885), 1, sym_arguments, - ACTIONS(1592), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94540,7 +94497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1590), 29, + anon_sym_SLASH, + ACTIONS(1594), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94568,20 +94526,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18811] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1588), 1, anon_sym_LPAREN, STATE(589), 1, sym_arguments, STATE(852), 1, sym_text_interpolation, - ACTIONS(1582), 10, + ACTIONS(1586), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94592,7 +94549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 29, + anon_sym_SLASH, + ACTIONS(1584), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94620,28 +94578,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18870] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(1975), 1, + ACTIONS(1977), 1, sym_name, - ACTIONS(1979), 1, + ACTIONS(1981), 1, anon_sym_LPAREN, STATE(853), 1, sym_text_interpolation, @@ -94657,16 +94614,16 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2669), 1, sym__scope_resolution_qualifier, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1585), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -94693,25 +94650,25 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [18965] = 25, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(575), 1, + ACTIONS(577), 1, aux_sym_cast_type_token1, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1172), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1797), 1, sym_name, STATE(854), 1, sym_text_interpolation, @@ -94727,16 +94684,16 @@ static const uint16_t ts_small_parse_table[] = { sym_relative_scope, STATE(2658), 1, sym_namespace_name, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(1590), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(300), 3, + ACTIONS(302), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -94763,17 +94720,17 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [19060] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1949), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(855), 1, sym_text_interpolation, STATE(858), 1, sym_arguments, - ACTIONS(1588), 10, + ACTIONS(1592), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94784,7 +94741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1586), 29, + anon_sym_SLASH, + ACTIONS(1590), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94812,18 +94770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19119] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(589), 1, sym_arguments, STATE(856), 1, sym_text_interpolation, - ACTIONS(1582), 10, + ACTIONS(1586), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94834,7 +94791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 30, + anon_sym_SLASH, + ACTIONS(1584), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94863,16 +94821,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19176] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(857), 1, sym_text_interpolation, - ACTIONS(1698), 10, + ACTIONS(1702), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94883,7 +94840,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1700), 31, + anon_sym_SLASH, + ACTIONS(1704), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94913,16 +94871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19231] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(858), 1, sym_text_interpolation, - ACTIONS(1652), 10, + ACTIONS(1656), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94933,7 +94890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1650), 30, + anon_sym_SLASH, + ACTIONS(1654), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94962,16 +94920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19285] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(859), 1, sym_text_interpolation, - ACTIONS(1807), 10, + ACTIONS(1809), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94982,7 +94939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1805), 30, + anon_sym_SLASH, + ACTIONS(1807), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95011,16 +94969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19339] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(860), 1, sym_text_interpolation, - ACTIONS(1887), 10, + ACTIONS(1889), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95031,7 +94988,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1885), 30, + anon_sym_SLASH, + ACTIONS(1887), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95060,16 +95018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19393] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(861), 1, sym_text_interpolation, - ACTIONS(1929), 10, + ACTIONS(1931), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95080,7 +95037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1927), 30, + anon_sym_SLASH, + ACTIONS(1929), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95109,16 +95067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19447] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(862), 1, sym_text_interpolation, - ACTIONS(1855), 10, + ACTIONS(1857), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95129,7 +95086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1853), 30, + anon_sym_SLASH, + ACTIONS(1855), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95158,16 +95116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19501] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(863), 1, sym_text_interpolation, - ACTIONS(1925), 10, + ACTIONS(1927), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95178,7 +95135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1923), 30, + anon_sym_SLASH, + ACTIONS(1925), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95207,16 +95165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19555] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(864), 1, sym_text_interpolation, - ACTIONS(1911), 10, + ACTIONS(1913), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95227,7 +95184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1909), 30, + anon_sym_SLASH, + ACTIONS(1911), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95256,16 +95214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19609] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(865), 1, sym_text_interpolation, - ACTIONS(1903), 10, + ACTIONS(1905), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95276,7 +95233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1901), 30, + anon_sym_SLASH, + ACTIONS(1903), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95305,23 +95263,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19663] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(866), 1, sym_text_interpolation, - ACTIONS(1614), 6, + ACTIONS(1618), 6, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1883), 10, + ACTIONS(1885), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95332,7 +95289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1881), 24, + anon_sym_SLASH, + ACTIONS(1883), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95355,16 +95313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19719] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(867), 1, sym_text_interpolation, - ACTIONS(1566), 10, + ACTIONS(1568), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95375,7 +95332,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1564), 30, + anon_sym_SLASH, + ACTIONS(1566), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95404,16 +95362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19773] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(868), 1, sym_text_interpolation, - ACTIONS(1879), 10, + ACTIONS(1881), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95424,7 +95381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1877), 30, + anon_sym_SLASH, + ACTIONS(1879), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95453,16 +95411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19827] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(869), 1, sym_text_interpolation, - ACTIONS(1899), 10, + ACTIONS(1901), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95473,7 +95430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1897), 30, + anon_sym_SLASH, + ACTIONS(1899), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95502,16 +95460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19881] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(870), 1, sym_text_interpolation, - ACTIONS(1871), 10, + ACTIONS(1873), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95522,7 +95479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1869), 30, + anon_sym_SLASH, + ACTIONS(1871), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95551,16 +95509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19935] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(871), 1, sym_text_interpolation, - ACTIONS(1867), 10, + ACTIONS(1869), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95571,7 +95528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1865), 30, + anon_sym_SLASH, + ACTIONS(1867), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95600,16 +95558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19989] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(872), 1, sym_text_interpolation, - ACTIONS(1937), 10, + ACTIONS(1939), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95620,7 +95577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1935), 30, + anon_sym_SLASH, + ACTIONS(1937), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95649,16 +95607,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20043] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(873), 1, sym_text_interpolation, - ACTIONS(1907), 10, + ACTIONS(1909), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95669,7 +95626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1905), 30, + anon_sym_SLASH, + ACTIONS(1907), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95698,16 +95656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20097] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(874), 1, sym_text_interpolation, - ACTIONS(1640), 10, + ACTIONS(1644), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95718,7 +95675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1638), 30, + anon_sym_SLASH, + ACTIONS(1642), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95747,16 +95705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20151] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(875), 1, sym_text_interpolation, - ACTIONS(1548), 10, + ACTIONS(1550), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95767,7 +95724,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1550), 30, + anon_sym_SLASH, + ACTIONS(1552), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95796,16 +95754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20205] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(876), 1, sym_text_interpolation, - ACTIONS(1624), 10, + ACTIONS(1628), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95816,7 +95773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1622), 30, + anon_sym_SLASH, + ACTIONS(1626), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95845,16 +95803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20259] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(877), 1, sym_text_interpolation, - ACTIONS(1570), 10, + ACTIONS(1574), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95865,7 +95822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1568), 30, + anon_sym_SLASH, + ACTIONS(1572), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95894,16 +95852,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20313] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(878), 1, sym_text_interpolation, - ACTIONS(1875), 10, + ACTIONS(1877), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95914,7 +95871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1873), 30, + anon_sym_SLASH, + ACTIONS(1875), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95943,16 +95901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20367] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(879), 1, sym_text_interpolation, - ACTIONS(1636), 10, + ACTIONS(1640), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95963,7 +95920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1634), 30, + anon_sym_SLASH, + ACTIONS(1638), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95992,16 +95950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20421] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(880), 1, sym_text_interpolation, - ACTIONS(1933), 10, + ACTIONS(1935), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96012,7 +95969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1931), 30, + anon_sym_SLASH, + ACTIONS(1933), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96041,16 +95999,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20475] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(881), 1, sym_text_interpolation, - ACTIONS(1644), 10, + ACTIONS(1648), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96061,7 +96018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1642), 30, + anon_sym_SLASH, + ACTIONS(1646), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96090,16 +96048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20529] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(882), 1, sym_text_interpolation, - ACTIONS(1891), 10, + ACTIONS(1893), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96110,7 +96067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1889), 30, + anon_sym_SLASH, + ACTIONS(1891), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96139,16 +96097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20583] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(883), 1, sym_text_interpolation, - ACTIONS(1941), 10, + ACTIONS(1943), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96159,7 +96116,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1939), 30, + anon_sym_SLASH, + ACTIONS(1941), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96188,16 +96146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20637] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(884), 1, sym_text_interpolation, - ACTIONS(1919), 10, + ACTIONS(1921), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96208,7 +96165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1917), 30, + anon_sym_SLASH, + ACTIONS(1919), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96237,16 +96195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20691] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(885), 1, sym_text_interpolation, - ACTIONS(1660), 10, + ACTIONS(1664), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96257,7 +96214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1658), 30, + anon_sym_SLASH, + ACTIONS(1662), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96286,16 +96244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20745] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(886), 1, sym_text_interpolation, - ACTIONS(1863), 10, + ACTIONS(1865), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96306,7 +96263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1861), 30, + anon_sym_SLASH, + ACTIONS(1863), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96335,16 +96293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20799] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(887), 1, sym_text_interpolation, - ACTIONS(1616), 10, + ACTIONS(1620), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96355,7 +96312,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1614), 30, + anon_sym_SLASH, + ACTIONS(1618), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96384,16 +96342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20853] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(888), 1, sym_text_interpolation, - ACTIONS(1915), 10, + ACTIONS(1917), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96404,7 +96361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1913), 30, + anon_sym_SLASH, + ACTIONS(1915), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96433,16 +96391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20907] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(889), 1, sym_text_interpolation, - ACTIONS(1574), 10, + ACTIONS(1578), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96453,7 +96410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1572), 30, + anon_sym_SLASH, + ACTIONS(1576), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96482,16 +96440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20961] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(890), 1, sym_text_interpolation, - ACTIONS(1620), 10, + ACTIONS(1624), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96502,7 +96459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1618), 30, + anon_sym_SLASH, + ACTIONS(1622), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96531,16 +96489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21015] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(891), 1, sym_text_interpolation, - ACTIONS(1656), 10, + ACTIONS(1660), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96551,7 +96508,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1654), 30, + anon_sym_SLASH, + ACTIONS(1658), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96580,16 +96538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21069] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(892), 1, sym_text_interpolation, - ACTIONS(1578), 10, + ACTIONS(1582), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96600,7 +96557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 30, + anon_sym_SLASH, + ACTIONS(1580), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96629,16 +96587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21123] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(893), 1, sym_text_interpolation, - ACTIONS(1664), 10, + ACTIONS(1668), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96649,7 +96606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1662), 30, + anon_sym_SLASH, + ACTIONS(1666), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96678,18 +96636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21177] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1812), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1814), 1, anon_sym_EQ, STATE(894), 1, sym_text_interpolation, - ACTIONS(1807), 10, + ACTIONS(1809), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96700,7 +96657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1805), 29, + anon_sym_SLASH, + ACTIONS(1807), 28, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -96728,16 +96686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21233] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(895), 1, sym_text_interpolation, - ACTIONS(1895), 10, + ACTIONS(1897), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96748,7 +96705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1893), 30, + anon_sym_SLASH, + ACTIONS(1895), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96777,16 +96735,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21287] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(896), 1, sym_text_interpolation, - ACTIONS(1859), 10, + ACTIONS(1861), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96797,7 +96754,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1857), 30, + anon_sym_SLASH, + ACTIONS(1859), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96826,16 +96784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21341] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(897), 1, sym_text_interpolation, - ACTIONS(1648), 10, + ACTIONS(1652), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96846,7 +96803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1646), 30, + anon_sym_SLASH, + ACTIONS(1650), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96875,16 +96833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21395] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(898), 1, sym_text_interpolation, - ACTIONS(1628), 10, + ACTIONS(1632), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96895,7 +96852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1626), 30, + anon_sym_SLASH, + ACTIONS(1630), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96924,21 +96882,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21449] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1812), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1814), 1, anon_sym_EQ, STATE(899), 1, sym_text_interpolation, - ACTIONS(1981), 2, + ACTIONS(1983), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1807), 10, + ACTIONS(1809), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96949,7 +96906,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1805), 27, + anon_sym_SLASH, + ACTIONS(1807), 26, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -96975,18 +96933,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21507] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1921), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1923), 1, anon_sym_COLON_COLON, STATE(900), 1, sym_text_interpolation, - ACTIONS(1632), 10, + ACTIONS(1636), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96997,7 +96954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1630), 29, + anon_sym_SLASH, + ACTIONS(1634), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97025,22 +96983,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21563] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(901), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1801), 10, + ACTIONS(1803), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97051,7 +97008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1799), 24, + anon_sym_SLASH, + ACTIONS(1801), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97074,22 +97032,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21618] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(902), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1757), 10, + ACTIONS(1759), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97100,7 +97057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 24, + anon_sym_SLASH, + ACTIONS(1757), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97123,22 +97081,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21673] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(903), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 10, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97149,7 +97106,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 24, + anon_sym_SLASH, + ACTIONS(1598), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97172,22 +97130,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21728] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(904), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1598), 10, + ACTIONS(1602), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97198,7 +97155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1604), 24, + anon_sym_SLASH, + ACTIONS(1608), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97221,22 +97179,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21783] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(905), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1816), 10, + ACTIONS(1818), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97247,7 +97204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1814), 24, + anon_sym_SLASH, + ACTIONS(1816), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97270,16 +97228,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21838] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(906), 1, sym_text_interpolation, - ACTIONS(1985), 9, + ACTIONS(1987), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97289,7 +97246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1983), 29, + anon_sym_SLASH, + ACTIONS(1985), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97317,16 +97275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21890] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(907), 1, sym_text_interpolation, - ACTIONS(1989), 9, + ACTIONS(1991), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97336,7 +97293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1987), 29, + anon_sym_SLASH, + ACTIONS(1989), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97364,16 +97322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21942] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(908), 1, sym_text_interpolation, - ACTIONS(1993), 9, + ACTIONS(1995), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97383,7 +97340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1991), 29, + anon_sym_SLASH, + ACTIONS(1993), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97411,16 +97369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21994] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(909), 1, sym_text_interpolation, - ACTIONS(1997), 9, + ACTIONS(1999), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97430,7 +97387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1995), 29, + anon_sym_SLASH, + ACTIONS(1997), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97458,16 +97416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22046] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(910), 1, sym_text_interpolation, - ACTIONS(2001), 9, + ACTIONS(2003), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97477,7 +97434,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1999), 29, + anon_sym_SLASH, + ACTIONS(2001), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97505,16 +97463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22098] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(911), 1, sym_text_interpolation, - ACTIONS(2005), 9, + ACTIONS(2007), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97524,7 +97481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2003), 29, + anon_sym_SLASH, + ACTIONS(2005), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97552,16 +97510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22150] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(912), 1, sym_text_interpolation, - ACTIONS(2009), 9, + ACTIONS(2011), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97571,7 +97528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2007), 29, + anon_sym_SLASH, + ACTIONS(2009), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97599,16 +97557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22202] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(913), 1, sym_text_interpolation, - ACTIONS(2013), 9, + ACTIONS(2015), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97618,7 +97575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2011), 29, + anon_sym_SLASH, + ACTIONS(2013), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97646,16 +97604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22254] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(914), 1, sym_text_interpolation, - ACTIONS(2017), 9, + ACTIONS(2019), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97665,7 +97622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2015), 29, + anon_sym_SLASH, + ACTIONS(2017), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97693,16 +97651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22306] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(915), 1, sym_text_interpolation, - ACTIONS(2021), 9, + ACTIONS(2023), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97712,7 +97669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2019), 29, + anon_sym_SLASH, + ACTIONS(2021), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97740,16 +97698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22358] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(916), 1, sym_text_interpolation, - ACTIONS(2025), 9, + ACTIONS(2027), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97759,7 +97716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2023), 29, + anon_sym_SLASH, + ACTIONS(2025), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97787,16 +97745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22410] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(917), 1, sym_text_interpolation, - ACTIONS(2029), 9, + ACTIONS(2031), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97806,7 +97763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2027), 29, + anon_sym_SLASH, + ACTIONS(2029), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97834,16 +97792,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22462] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(918), 1, sym_text_interpolation, - ACTIONS(2033), 9, + ACTIONS(2035), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97853,7 +97810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2031), 29, + anon_sym_SLASH, + ACTIONS(2033), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97881,16 +97839,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22514] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(919), 1, sym_text_interpolation, - ACTIONS(1883), 9, + ACTIONS(1885), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97900,7 +97857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1881), 29, + anon_sym_SLASH, + ACTIONS(1883), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97928,16 +97886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22566] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(920), 1, sym_text_interpolation, - ACTIONS(2037), 9, + ACTIONS(2039), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97947,7 +97904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2035), 29, + anon_sym_SLASH, + ACTIONS(2037), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97975,16 +97933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22618] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(921), 1, sym_text_interpolation, - ACTIONS(2041), 9, + ACTIONS(2043), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97994,7 +97951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2039), 29, + anon_sym_SLASH, + ACTIONS(2041), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98022,16 +97980,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22670] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(922), 1, sym_text_interpolation, - ACTIONS(2045), 9, + ACTIONS(2047), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98041,7 +97998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2043), 29, + anon_sym_SLASH, + ACTIONS(2045), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98069,16 +98027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22722] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(923), 1, sym_text_interpolation, - ACTIONS(2049), 9, + ACTIONS(2051), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98088,7 +98045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2047), 29, + anon_sym_SLASH, + ACTIONS(2049), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98116,16 +98074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22774] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(924), 1, sym_text_interpolation, - ACTIONS(2053), 9, + ACTIONS(2055), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98135,7 +98092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2051), 29, + anon_sym_SLASH, + ACTIONS(2053), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98163,16 +98121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22826] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(925), 1, sym_text_interpolation, - ACTIONS(2057), 9, + ACTIONS(2059), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98182,7 +98139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2055), 29, + anon_sym_SLASH, + ACTIONS(2057), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98210,16 +98168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22878] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(926), 1, sym_text_interpolation, - ACTIONS(2061), 9, + ACTIONS(2063), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98229,7 +98186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2059), 29, + anon_sym_SLASH, + ACTIONS(2061), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98257,16 +98215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22930] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(927), 1, sym_text_interpolation, - ACTIONS(2065), 9, + ACTIONS(2067), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98276,7 +98233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2063), 29, + anon_sym_SLASH, + ACTIONS(2065), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98304,16 +98262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22982] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(928), 1, sym_text_interpolation, - ACTIONS(2069), 9, + ACTIONS(2071), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98323,7 +98280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2067), 29, + anon_sym_SLASH, + ACTIONS(2069), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98351,16 +98309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23034] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(929), 1, sym_text_interpolation, - ACTIONS(2073), 9, + ACTIONS(2075), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98370,7 +98327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2071), 29, + anon_sym_SLASH, + ACTIONS(2073), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98398,16 +98356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23086] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(930), 1, sym_text_interpolation, - ACTIONS(2077), 9, + ACTIONS(2079), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98417,7 +98374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2075), 29, + anon_sym_SLASH, + ACTIONS(2077), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98445,16 +98403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23138] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(931), 1, sym_text_interpolation, - ACTIONS(1578), 9, + ACTIONS(1582), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98464,7 +98421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 29, + anon_sym_SLASH, + ACTIONS(1580), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98492,16 +98450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23190] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(932), 1, sym_text_interpolation, - ACTIONS(2081), 9, + ACTIONS(2083), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98511,7 +98468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2079), 29, + anon_sym_SLASH, + ACTIONS(2081), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98539,16 +98497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23242] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(933), 1, sym_text_interpolation, - ACTIONS(2085), 9, + ACTIONS(2087), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98558,7 +98515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2083), 29, + anon_sym_SLASH, + ACTIONS(2085), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98586,16 +98544,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23294] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(934), 1, sym_text_interpolation, - ACTIONS(2089), 9, + ACTIONS(2091), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98605,7 +98562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2087), 29, + anon_sym_SLASH, + ACTIONS(2089), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98633,16 +98591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23346] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(935), 1, sym_text_interpolation, - ACTIONS(2093), 9, + ACTIONS(2095), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98652,7 +98609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2091), 29, + anon_sym_SLASH, + ACTIONS(2093), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98680,16 +98638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23398] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(936), 1, sym_text_interpolation, - ACTIONS(1574), 9, + ACTIONS(1578), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98699,7 +98656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1572), 29, + anon_sym_SLASH, + ACTIONS(1576), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98727,16 +98685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23450] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(937), 1, sym_text_interpolation, - ACTIONS(1570), 9, + ACTIONS(1574), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98746,7 +98703,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1568), 29, + anon_sym_SLASH, + ACTIONS(1572), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98774,16 +98732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23502] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(938), 1, sym_text_interpolation, - ACTIONS(2097), 9, + ACTIONS(2099), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98793,7 +98750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2095), 29, + anon_sym_SLASH, + ACTIONS(2097), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98821,16 +98779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23554] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(939), 1, sym_text_interpolation, - ACTIONS(2101), 9, + ACTIONS(2103), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98840,7 +98797,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2099), 29, + anon_sym_SLASH, + ACTIONS(2101), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98868,16 +98826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23606] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(940), 1, sym_text_interpolation, - ACTIONS(1566), 9, + ACTIONS(1568), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98887,7 +98844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1564), 29, + anon_sym_SLASH, + ACTIONS(1566), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98915,16 +98873,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23658] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(941), 1, sym_text_interpolation, - ACTIONS(2105), 9, + ACTIONS(2107), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98934,7 +98891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2103), 29, + anon_sym_SLASH, + ACTIONS(2105), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98962,16 +98920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23710] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(942), 1, sym_text_interpolation, - ACTIONS(2109), 9, + ACTIONS(2111), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98981,7 +98938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2107), 29, + anon_sym_SLASH, + ACTIONS(2109), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99009,16 +98967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23762] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(943), 1, sym_text_interpolation, - ACTIONS(2113), 9, + ACTIONS(2115), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99028,7 +98985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2111), 29, + anon_sym_SLASH, + ACTIONS(2113), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99056,16 +99014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23814] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(944), 1, sym_text_interpolation, - ACTIONS(2117), 9, + ACTIONS(2119), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99075,7 +99032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2115), 29, + anon_sym_SLASH, + ACTIONS(2117), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99103,16 +99061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23866] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(945), 1, sym_text_interpolation, - ACTIONS(2121), 9, + ACTIONS(2123), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99122,7 +99079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2119), 29, + anon_sym_SLASH, + ACTIONS(2121), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99150,16 +99108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23918] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(946), 1, sym_text_interpolation, - ACTIONS(2125), 9, + ACTIONS(2127), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99169,7 +99126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2123), 29, + anon_sym_SLASH, + ACTIONS(2125), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99197,16 +99155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23970] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(947), 1, sym_text_interpolation, - ACTIONS(2129), 9, + ACTIONS(2131), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99216,7 +99173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2127), 29, + anon_sym_SLASH, + ACTIONS(2129), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99244,16 +99202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24022] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(948), 1, sym_text_interpolation, - ACTIONS(2133), 9, + ACTIONS(2135), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99263,7 +99220,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2131), 29, + anon_sym_SLASH, + ACTIONS(2133), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99291,16 +99249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24074] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(949), 1, sym_text_interpolation, - ACTIONS(2137), 9, + ACTIONS(2139), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99310,7 +99267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2135), 29, + anon_sym_SLASH, + ACTIONS(2137), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99338,16 +99296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24126] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(950), 1, sym_text_interpolation, - ACTIONS(2141), 9, + ACTIONS(2143), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99357,7 +99314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2139), 29, + anon_sym_SLASH, + ACTIONS(2141), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99385,16 +99343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24178] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(951), 1, sym_text_interpolation, - ACTIONS(2145), 9, + ACTIONS(2147), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99404,7 +99361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2143), 29, + anon_sym_SLASH, + ACTIONS(2145), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99432,16 +99390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24230] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(952), 1, sym_text_interpolation, - ACTIONS(2149), 9, + ACTIONS(2151), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99451,7 +99408,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2147), 29, + anon_sym_SLASH, + ACTIONS(2149), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99479,16 +99437,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24282] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(953), 1, sym_text_interpolation, - ACTIONS(2153), 9, + ACTIONS(2155), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99498,7 +99455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2151), 29, + anon_sym_SLASH, + ACTIONS(2153), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99526,18 +99484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24334] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2159), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2161), 1, aux_sym_binary_expression_token1, STATE(954), 1, sym_text_interpolation, - ACTIONS(2157), 9, + ACTIONS(2159), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99547,7 +99504,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2155), 28, + anon_sym_SLASH, + ACTIONS(2157), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99574,16 +99532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24388] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(955), 1, sym_text_interpolation, - ACTIONS(2157), 9, + ACTIONS(2159), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99593,7 +99550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2155), 29, + anon_sym_SLASH, + ACTIONS(2157), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99621,28 +99579,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24440] = 23, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, - sym_name, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1706), 1, + sym_name, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(1739), 1, + ACTIONS(1741), 1, anon_sym_LPAREN, - ACTIONS(1745), 1, + ACTIONS(1747), 1, anon_sym_QMARK, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(2161), 1, + ACTIONS(2163), 1, anon_sym_DOT_DOT_DOT, STATE(956), 1, sym_text_interpolation, @@ -99662,7 +99619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2658), 1, sym_namespace_name, - ACTIONS(240), 3, + ACTIONS(242), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -99674,7 +99631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -99689,13 +99646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [24528] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(957), 1, sym_text_interpolation, - ACTIONS(2165), 9, + ACTIONS(2167), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99705,7 +99662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2163), 29, + anon_sym_SLASH, + ACTIONS(2165), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99733,16 +99691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24580] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(958), 1, sym_text_interpolation, - ACTIONS(2169), 9, + ACTIONS(2171), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99752,7 +99709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2167), 29, + anon_sym_SLASH, + ACTIONS(2169), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99780,16 +99738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24632] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(959), 1, sym_text_interpolation, - ACTIONS(2173), 9, + ACTIONS(2175), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99799,7 +99756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2171), 29, + anon_sym_SLASH, + ACTIONS(2173), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99827,16 +99785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24684] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(960), 1, sym_text_interpolation, - ACTIONS(2177), 9, + ACTIONS(2179), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99846,7 +99803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2175), 29, + anon_sym_SLASH, + ACTIONS(2177), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99874,16 +99832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24736] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(961), 1, sym_text_interpolation, - ACTIONS(2181), 9, + ACTIONS(2183), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99893,7 +99850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2179), 29, + anon_sym_SLASH, + ACTIONS(2181), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99921,16 +99879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24788] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(962), 1, sym_text_interpolation, - ACTIONS(2185), 9, + ACTIONS(2187), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99940,7 +99897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2183), 29, + anon_sym_SLASH, + ACTIONS(2185), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99968,16 +99926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24840] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(963), 1, sym_text_interpolation, - ACTIONS(1596), 9, + ACTIONS(1600), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99987,7 +99944,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 29, + anon_sym_SLASH, + ACTIONS(1598), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100015,16 +99973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24892] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(964), 1, sym_text_interpolation, - ACTIONS(2189), 9, + ACTIONS(2191), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100034,7 +99991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2187), 29, + anon_sym_SLASH, + ACTIONS(2189), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100062,16 +100020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24944] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(965), 1, sym_text_interpolation, - ACTIONS(2193), 9, + ACTIONS(2195), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100081,7 +100038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2191), 29, + anon_sym_SLASH, + ACTIONS(2193), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100109,16 +100067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24996] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(966), 1, sym_text_interpolation, - ACTIONS(2197), 9, + ACTIONS(2199), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100128,7 +100085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2195), 29, + anon_sym_SLASH, + ACTIONS(2197), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100156,16 +100114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [25048] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(967), 1, sym_text_interpolation, - ACTIONS(2201), 9, + ACTIONS(2203), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100175,7 +100132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2199), 29, + anon_sym_SLASH, + ACTIONS(2201), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100203,16 +100161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [25100] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(968), 1, sym_text_interpolation, - ACTIONS(2205), 9, + ACTIONS(2207), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100222,7 +100179,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2203), 29, + anon_sym_SLASH, + ACTIONS(2205), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100250,16 +100208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [25152] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(969), 1, sym_text_interpolation, - ACTIONS(2209), 9, + ACTIONS(2211), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100269,7 +100226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2207), 29, + anon_sym_SLASH, + ACTIONS(2209), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100297,16 +100255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [25204] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(970), 1, sym_text_interpolation, - ACTIONS(2213), 9, + ACTIONS(2215), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100316,7 +100273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2211), 29, + anon_sym_SLASH, + ACTIONS(2213), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100344,16 +100302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [25256] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(971), 1, sym_text_interpolation, - ACTIONS(2217), 9, + ACTIONS(2219), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100363,7 +100320,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2215), 29, + anon_sym_SLASH, + ACTIONS(2217), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100391,16 +100349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [25308] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(972), 1, sym_text_interpolation, - ACTIONS(1146), 10, + ACTIONS(1148), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100411,7 +100368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1144), 27, + anon_sym_SLASH, + ACTIONS(1146), 26, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -100437,16 +100395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [25359] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(973), 1, sym_text_interpolation, - ACTIONS(1124), 10, + ACTIONS(1126), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100457,7 +100414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1122), 27, + anon_sym_SLASH, + ACTIONS(1124), 26, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -100483,59 +100441,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [25410] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2223), 1, - anon_sym_QMARK, + anon_sym_AMP, ACTIONS(2225), 1, + anon_sym_QMARK, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, STATE(974), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2219), 10, + ACTIONS(2221), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100547,62 +100504,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [25492] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, STATE(975), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2255), 7, + ACTIONS(2257), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100611,62 +100568,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [25580] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, STATE(976), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2215), 7, + ACTIONS(2217), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100675,46 +100632,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [25668] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2231), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, STATE(977), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 3, + ACTIONS(1759), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 14, + ACTIONS(1757), 14, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100730,62 +100687,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [25738] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, STATE(978), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2265), 7, + ACTIONS(2267), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100794,62 +100751,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [25826] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, STATE(979), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2267), 7, + ACTIONS(2269), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100858,62 +100815,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [25914] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, STATE(980), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2269), 7, + ACTIONS(2271), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100922,62 +100879,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [26002] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, STATE(981), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2271), 7, + ACTIONS(2273), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100986,62 +100943,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [26090] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, STATE(982), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2273), 7, + ACTIONS(2275), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101050,64 +101007,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [26178] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2275), 1, + ACTIONS(2277), 1, anon_sym_EQ_GT, STATE(983), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2167), 6, + ACTIONS(2169), 6, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101115,62 +101072,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [26268] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, STATE(984), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2277), 7, + ACTIONS(2279), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101179,56 +101136,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [26356] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, + ACTIONS(2259), 1, anon_sym_QMARK, STATE(985), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2279), 10, + ACTIONS(2281), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101240,56 +101197,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [26438] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, + ACTIONS(2259), 1, anon_sym_QMARK, STATE(986), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2281), 10, + ACTIONS(2283), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101301,62 +101258,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [26520] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, STATE(987), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2283), 7, + ACTIONS(2285), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101365,49 +101322,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [26608] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2231), 1, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2237), 1, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, STATE(988), 1, sym_text_interpolation, - ACTIONS(1757), 2, + ACTIONS(1759), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 13, + ACTIONS(1757), 13, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101422,15 +101379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [26682] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2231), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2233), 1, anon_sym_STAR_STAR, STATE(989), 1, sym_text_interpolation, - ACTIONS(1757), 9, + ACTIONS(1759), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101440,7 +101397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 26, + anon_sym_SLASH, + ACTIONS(1757), 25, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101465,59 +101423,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [26734] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2287), 1, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, + ACTIONS(2289), 1, anon_sym_QMARK, STATE(990), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2285), 10, + ACTIONS(2287), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101529,56 +101486,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [26816] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, + ACTIONS(2259), 1, anon_sym_QMARK, STATE(991), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2289), 10, + ACTIONS(2291), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101590,20 +101547,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [26898] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2231), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2251), 1, - anon_sym_STAR, + ACTIONS(2255), 1, + anon_sym_PERCENT, STATE(992), 1, sym_text_interpolation, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101612,7 +101569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 24, + ACTIONS(1757), 24, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101638,26 +101595,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [26954] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2231), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2251), 1, - anon_sym_STAR, + ACTIONS(2255), 1, + anon_sym_PERCENT, STATE(993), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101666,7 +101623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 20, + ACTIONS(1757), 20, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101688,23 +101645,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DOT, [27014] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2231), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2251), 1, - anon_sym_STAR, + ACTIONS(2255), 1, + anon_sym_PERCENT, STATE(994), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101713,7 +101670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 22, + ACTIONS(1757), 22, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101737,28 +101694,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [27072] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2231), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, STATE(995), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101767,7 +101724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 19, + ACTIONS(1757), 19, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101788,56 +101745,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [27134] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1757), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_QMARK, - ACTIONS(2221), 1, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, STATE(996), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 10, + ACTIONS(1757), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101849,15 +101806,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [27216] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2231), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2233), 1, anon_sym_STAR_STAR, STATE(997), 1, sym_text_interpolation, - ACTIONS(1757), 9, + ACTIONS(1759), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101867,7 +101824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 26, + anon_sym_SLASH, + ACTIONS(1757), 25, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101892,43 +101850,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [27268] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2231), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, STATE(998), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1757), 5, + ACTIONS(1759), 5, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1755), 18, + ACTIONS(1757), 18, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101948,47 +101905,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [27334] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2231), 1, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, STATE(999), 1, sym_text_interpolation, - ACTIONS(1757), 2, + ACTIONS(1759), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 14, + ACTIONS(1757), 14, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102004,50 +101961,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [27406] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1757), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_QMARK, - ACTIONS(2221), 1, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2231), 1, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2237), 1, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, STATE(1000), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 13, + ACTIONS(1757), 13, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102062,62 +102019,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [27482] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, STATE(1001), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2291), 7, + ACTIONS(2293), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102126,56 +102083,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [27570] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, + ACTIONS(2259), 1, anon_sym_QMARK, STATE(1002), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 10, + ACTIONS(1757), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102187,60 +102144,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [27652] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, + anon_sym_QMARK, + ACTIONS(2261), 1, aux_sym_binary_expression_token2, - ACTIONS(2263), 1, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, STATE(1003), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 8, + ACTIONS(1757), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102250,52 +102207,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, [27738] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1757), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_QMARK, - ACTIONS(2221), 1, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2231), 1, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2235), 1, - anon_sym_AMP_AMP, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, STATE(1004), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 12, + ACTIONS(1757), 12, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102309,58 +102266,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, [27816] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, + anon_sym_QMARK, + ACTIONS(2261), 1, aux_sym_binary_expression_token2, STATE(1005), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 9, + ACTIONS(1757), 9, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -102371,56 +102328,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [27900] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2287), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2289), 1, anon_sym_QMARK, - ACTIONS(2293), 1, - anon_sym_AMP, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1006), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2285), 9, + ACTIONS(2287), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102431,62 +102388,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [27981] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1007), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2255), 6, + ACTIONS(2257), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102494,62 +102451,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [28068] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1008), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2215), 6, + ACTIONS(2217), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102557,23 +102514,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [28155] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2301), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2303), 1, anon_sym_STAR_STAR, - ACTIONS(2321), 1, - anon_sym_STAR, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1009), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102582,7 +102539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 21, + ACTIONS(1757), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102605,28 +102562,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [28212] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2301), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2303), 1, anon_sym_STAR_STAR, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1010), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102635,7 +102592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 18, + ACTIONS(1757), 18, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102655,40 +102612,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [28273] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2301), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2303), 1, anon_sym_STAR_STAR, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1011), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1757), 5, + ACTIONS(1759), 5, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1755), 17, + ACTIONS(1757), 17, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102707,47 +102664,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [28338] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2295), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2303), 1, anon_sym_STAR_STAR, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1012), 1, sym_text_interpolation, - ACTIONS(1757), 2, + ACTIONS(1759), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 13, + ACTIONS(1757), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102762,15 +102719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [28409] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2301), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2303), 1, anon_sym_STAR_STAR, STATE(1013), 1, sym_text_interpolation, - ACTIONS(1757), 9, + ACTIONS(1759), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102780,7 +102737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 25, + anon_sym_SLASH, + ACTIONS(1757), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102804,59 +102762,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [28460] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, + anon_sym_PERCENT, + ACTIONS(2327), 1, anon_sym_QMARK, STATE(1014), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2281), 9, + ACTIONS(2283), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102867,56 +102824,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [28541] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, + anon_sym_PERCENT, + ACTIONS(2327), 1, anon_sym_QMARK, STATE(1015), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2279), 9, + ACTIONS(2281), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102927,50 +102884,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [28622] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1757), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_QMARK, - ACTIONS(2293), 1, - anon_sym_AMP, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2301), 1, + ACTIONS(2303), 1, anon_sym_STAR_STAR, - ACTIONS(2307), 1, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1016), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 12, + ACTIONS(1757), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102984,46 +102941,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [28697] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2301), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2303), 1, anon_sym_STAR_STAR, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1017), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 3, + ACTIONS(1759), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 13, + ACTIONS(1757), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103038,56 +102995,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [28766] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2223), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2225), 1, anon_sym_QMARK, - ACTIONS(2293), 1, - anon_sym_AMP, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1018), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2219), 9, + ACTIONS(2221), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103098,56 +103055,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [28847] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, + anon_sym_PERCENT, + ACTIONS(2327), 1, anon_sym_QMARK, STATE(1019), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2289), 9, + ACTIONS(2291), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103158,56 +103115,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [28928] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, + anon_sym_PERCENT, + ACTIONS(2327), 1, anon_sym_QMARK, STATE(1020), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 9, + ACTIONS(1757), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103218,30 +103175,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [29009] = 13, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2335), 1, + ACTIONS(2337), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2340), 1, + ACTIONS(2342), 1, aux_sym_final_modifier_token1, - ACTIONS(2343), 1, + ACTIONS(2345), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2346), 1, + ACTIONS(2348), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2349), 1, + ACTIONS(2351), 1, sym_var_modifier, STATE(1320), 1, sym__modifier, STATE(1021), 2, sym_text_interpolation, aux_sym_property_declaration_repeat1, - ACTIONS(2338), 3, + ACTIONS(2340), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2352), 3, + ACTIONS(2354), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -103251,7 +103208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - ACTIONS(2333), 17, + ACTIONS(2335), 17, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, anon_sym_string, @@ -103270,62 +103227,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [29074] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1022), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2291), 6, + ACTIONS(2293), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103333,26 +103290,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [29161] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2301), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2303), 1, anon_sym_STAR_STAR, - ACTIONS(2321), 1, - anon_sym_STAR, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1023), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103361,7 +103318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 19, + ACTIONS(1757), 19, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103382,60 +103339,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DOT, [29220] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, + anon_sym_QMARK, + ACTIONS(2329), 1, aux_sym_binary_expression_token2, - ACTIONS(2331), 1, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1024), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 7, + ACTIONS(1757), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103444,126 +103401,126 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, [29305] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, - ACTIONS(2355), 1, + ACTIONS(2357), 1, anon_sym_EQ_GT, STATE(1025), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2167), 5, + ACTIONS(2169), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, aux_sym_binary_expression_token1, [29394] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1026), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2273), 6, + ACTIONS(2275), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103571,62 +103528,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [29481] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1027), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2271), 6, + ACTIONS(2273), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103634,62 +103591,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [29568] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1028), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2269), 6, + ACTIONS(2271), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103697,20 +103654,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [29655] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2301), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2303), 1, anon_sym_STAR_STAR, - ACTIONS(2321), 1, - anon_sym_STAR, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1029), 1, sym_text_interpolation, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103719,7 +103676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 23, + ACTIONS(1757), 23, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103744,58 +103701,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [29710] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, + anon_sym_QMARK, + ACTIONS(2329), 1, aux_sym_binary_expression_token2, STATE(1030), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 8, + ACTIONS(1757), 8, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103805,62 +103762,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [29793] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1031), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2265), 6, + ACTIONS(2267), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103868,62 +103825,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [29880] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1032), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2277), 6, + ACTIONS(2279), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103931,56 +103888,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [29967] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1757), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_QMARK, - ACTIONS(2293), 1, - anon_sym_AMP, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1033), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 9, + ACTIONS(1757), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103991,62 +103948,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [30048] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1034), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2267), 6, + ACTIONS(2269), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -104054,15 +104011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [30135] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2301), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2303), 1, anon_sym_STAR_STAR, STATE(1035), 1, sym_text_interpolation, - ACTIONS(1757), 9, + ACTIONS(1759), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104072,7 +104029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 25, + anon_sym_SLASH, + ACTIONS(1757), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -104096,65 +104054,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30186] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1036), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2283), 6, + ACTIONS(2285), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -104162,52 +104119,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [30273] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1757), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_QMARK, - ACTIONS(2293), 1, - anon_sym_AMP, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2301), 1, + ACTIONS(2303), 1, anon_sym_STAR_STAR, - ACTIONS(2305), 1, - anon_sym_AMP_AMP, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1037), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 11, + ACTIONS(1757), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -104220,49 +104177,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, [30350] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2295), 1, anon_sym_AMP, - ACTIONS(2301), 1, + ACTIONS(2303), 1, anon_sym_STAR_STAR, - ACTIONS(2307), 1, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2325), 1, + anon_sym_PERCENT, STATE(1038), 1, sym_text_interpolation, - ACTIONS(1757), 2, + ACTIONS(1759), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 12, + ACTIONS(1757), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -104276,56 +104233,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [30423] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2287), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2289), 1, anon_sym_QMARK, - ACTIONS(2357), 1, - anon_sym_AMP, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2389), 1, + anon_sym_PERCENT, STATE(1039), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2285), 8, + ACTIONS(2287), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104335,13 +104292,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [30503] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1040), 1, sym_text_interpolation, - ACTIONS(2025), 9, + ACTIONS(2027), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104351,7 +104308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2023), 25, + anon_sym_SLASH, + ACTIONS(2025), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104375,16 +104333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30551] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1041), 1, sym_text_interpolation, - ACTIONS(2089), 9, + ACTIONS(2091), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104394,50 +104351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2087), 25, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, anon_sym_SLASH, - anon_sym_PERCENT, - [30599] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1042), 1, - sym_text_interpolation, - ACTIONS(2085), 9, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - ACTIONS(2083), 25, + ACTIONS(2089), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104461,63 +104376,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_PERCENT, + [30599] = 5, + ACTIONS(20), 1, + anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, + STATE(1042), 1, + sym_text_interpolation, + ACTIONS(2087), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2085), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_PERCENT, [30647] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, + aux_sym_binary_expression_token2, + ACTIONS(2395), 1, aux_sym_binary_expression_token4, STATE(1043), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 6, + ACTIONS(1757), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104525,75 +104482,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, [30731] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1044), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2255), 5, + ACTIONS(2257), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, [30817] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1045), 1, sym_text_interpolation, - ACTIONS(1566), 9, + ACTIONS(1568), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104603,7 +104560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1564), 25, + anon_sym_SLASH, + ACTIONS(1566), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104627,16 +104585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30865] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1046), 1, sym_text_interpolation, - ACTIONS(2169), 9, + ACTIONS(2171), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104646,7 +104603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2167), 25, + anon_sym_SLASH, + ACTIONS(2169), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104670,78 +104628,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30913] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1047), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2291), 5, + ACTIONS(2293), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, [30999] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1048), 1, sym_text_interpolation, - ACTIONS(1570), 9, + ACTIONS(1574), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104751,7 +104708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1568), 25, + anon_sym_SLASH, + ACTIONS(1572), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104775,59 +104733,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31047] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, + anon_sym_PERCENT, + ACTIONS(2391), 1, anon_sym_QMARK, STATE(1049), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 8, + ACTIONS(1757), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104837,13 +104794,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [31127] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1050), 1, sym_text_interpolation, - ACTIONS(2125), 9, + ACTIONS(2127), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104853,7 +104810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2123), 25, + anon_sym_SLASH, + ACTIONS(2125), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104877,18 +104835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31175] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2365), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2367), 1, anon_sym_STAR_STAR, STATE(1051), 1, sym_text_interpolation, - ACTIONS(1757), 9, + ACTIONS(1759), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104898,7 +104855,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 24, + anon_sym_SLASH, + ACTIONS(1757), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104921,59 +104879,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31225] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1757), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_QMARK, - ACTIONS(2357), 1, - anon_sym_AMP, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2389), 1, + anon_sym_PERCENT, STATE(1052), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 8, + ACTIONS(1757), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104983,13 +104940,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [31305] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1053), 1, sym_text_interpolation, - ACTIONS(2217), 9, + ACTIONS(2219), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104999,7 +104956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2215), 25, + anon_sym_SLASH, + ACTIONS(2217), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105023,16 +104981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31353] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1054), 1, sym_text_interpolation, - ACTIONS(1574), 9, + ACTIONS(1578), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105042,7 +104999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1572), 25, + anon_sym_SLASH, + ACTIONS(1576), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105066,16 +105024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31401] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1055), 1, sym_text_interpolation, - ACTIONS(2129), 9, + ACTIONS(2131), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105085,7 +105042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2127), 25, + anon_sym_SLASH, + ACTIONS(2129), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105109,22 +105067,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31449] = 19, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1716), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(2397), 1, + anon_sym_QMARK, + ACTIONS(2399), 1, sym_name, STATE(1056), 1, sym_text_interpolation, @@ -105142,7 +105099,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reserved_identifier, STATE(2658), 1, sym_namespace_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -105154,7 +105111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -105169,20 +105126,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [31525] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2365), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2367), 1, anon_sym_STAR_STAR, - ACTIONS(2385), 1, - anon_sym_STAR, + ACTIONS(2389), 1, + anon_sym_PERCENT, STATE(1057), 1, sym_text_interpolation, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105191,7 +105148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 22, + ACTIONS(1757), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105215,49 +105172,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [31579] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2359), 1, anon_sym_AMP, - ACTIONS(2365), 1, + ACTIONS(2367), 1, anon_sym_STAR_STAR, - ACTIONS(2371), 1, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2389), 1, + anon_sym_PERCENT, STATE(1058), 1, sym_text_interpolation, - ACTIONS(1757), 2, + ACTIONS(1759), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 11, + ACTIONS(1757), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105270,13 +105227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [31651] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1059), 1, sym_text_interpolation, - ACTIONS(1578), 9, + ACTIONS(1582), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105286,7 +105243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 25, + anon_sym_SLASH, + ACTIONS(1580), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105310,49 +105268,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31699] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2365), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2367), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2389), 1, + anon_sym_PERCENT, STATE(1060), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 3, + ACTIONS(1759), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 12, + ACTIONS(1757), 12, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105366,75 +105323,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [31767] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1061), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2283), 5, + ACTIONS(2285), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, [31853] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1062), 1, sym_text_interpolation, - ACTIONS(2113), 9, + ACTIONS(2115), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105444,7 +105401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2111), 25, + anon_sym_SLASH, + ACTIONS(2113), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105468,16 +105426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31901] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1063), 1, sym_text_interpolation, - ACTIONS(2193), 9, + ACTIONS(2195), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105487,7 +105444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2191), 25, + anon_sym_SLASH, + ACTIONS(2193), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105511,59 +105469,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31949] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2223), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2225), 1, anon_sym_QMARK, - ACTIONS(2357), 1, - anon_sym_AMP, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2389), 1, + anon_sym_PERCENT, STATE(1064), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2219), 8, + ACTIONS(2221), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105573,56 +105530,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [32029] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, + anon_sym_PERCENT, + ACTIONS(2391), 1, anon_sym_QMARK, STATE(1065), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2289), 8, + ACTIONS(2291), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105632,13 +105589,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [32109] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1066), 1, sym_text_interpolation, - ACTIONS(2189), 9, + ACTIONS(2191), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105648,7 +105605,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2187), 25, + anon_sym_SLASH, + ACTIONS(2189), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105672,16 +105630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32157] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1067), 1, sym_text_interpolation, - ACTIONS(2109), 9, + ACTIONS(2111), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105691,7 +105648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2107), 25, + anon_sym_SLASH, + ACTIONS(2109), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105715,16 +105673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32205] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1068), 1, sym_text_interpolation, - ACTIONS(2133), 9, + ACTIONS(2135), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105734,7 +105691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2131), 25, + anon_sym_SLASH, + ACTIONS(2133), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105758,16 +105716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32253] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1069), 1, sym_text_interpolation, - ACTIONS(2105), 9, + ACTIONS(2107), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105777,7 +105734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2103), 25, + anon_sym_SLASH, + ACTIONS(2105), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105801,16 +105759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32301] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1070), 1, sym_text_interpolation, - ACTIONS(1989), 9, + ACTIONS(1991), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105820,7 +105777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1987), 25, + anon_sym_SLASH, + ACTIONS(1989), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105844,16 +105802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32349] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1071), 1, sym_text_interpolation, - ACTIONS(2185), 9, + ACTIONS(2187), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105863,7 +105820,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2183), 25, + anon_sym_SLASH, + ACTIONS(2185), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105887,22 +105845,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32397] = 19, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1716), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(2397), 1, + anon_sym_QMARK, + ACTIONS(2399), 1, sym_name, STATE(1072), 1, sym_text_interpolation, @@ -105920,7 +105877,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reserved_identifier, STATE(2658), 1, sym_namespace_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -105932,7 +105889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -105947,75 +105904,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [32473] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1073), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2277), 5, + ACTIONS(2279), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, [32559] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1074), 1, sym_text_interpolation, - ACTIONS(1985), 9, + ACTIONS(1987), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106025,7 +105982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1983), 25, + anon_sym_SLASH, + ACTIONS(1985), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106049,16 +106007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32607] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1075), 1, sym_text_interpolation, - ACTIONS(2181), 9, + ACTIONS(2183), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106068,7 +106025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2179), 25, + anon_sym_SLASH, + ACTIONS(2181), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106092,16 +106050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32655] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1076), 1, sym_text_interpolation, - ACTIONS(2041), 9, + ACTIONS(2043), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106111,7 +106068,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2039), 25, + anon_sym_SLASH, + ACTIONS(2041), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106135,78 +106093,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32703] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1077), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2265), 5, + ACTIONS(2267), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, [32789] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1078), 1, sym_text_interpolation, - ACTIONS(2093), 9, + ACTIONS(2095), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106216,7 +106173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2091), 25, + anon_sym_SLASH, + ACTIONS(2093), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106240,16 +106198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32837] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1079), 1, sym_text_interpolation, - ACTIONS(2053), 9, + ACTIONS(2055), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106259,7 +106216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2051), 25, + anon_sym_SLASH, + ACTIONS(2053), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106283,16 +106241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32885] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1080), 1, sym_text_interpolation, - ACTIONS(2037), 9, + ACTIONS(2039), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106302,7 +106259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2035), 25, + anon_sym_SLASH, + ACTIONS(2037), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106326,16 +106284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32933] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1081), 1, sym_text_interpolation, - ACTIONS(2153), 9, + ACTIONS(2155), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106345,7 +106302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2151), 25, + anon_sym_SLASH, + ACTIONS(2153), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106369,79 +106327,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32981] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, - ACTIONS(2401), 1, + ACTIONS(2403), 1, anon_sym_EQ_GT, STATE(1082), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2167), 4, + ACTIONS(2169), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, aux_sym_binary_expression_token1, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [33069] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1083), 1, sym_text_interpolation, - ACTIONS(2029), 9, + ACTIONS(2031), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106451,7 +106408,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2027), 25, + anon_sym_SLASH, + ACTIONS(2029), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106475,18 +106433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [33117] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2403), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2405), 1, aux_sym_binary_expression_token1, STATE(1084), 1, sym_text_interpolation, - ACTIONS(2157), 9, + ACTIONS(2159), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106496,7 +106453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2155), 24, + anon_sym_SLASH, + ACTIONS(2157), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106519,16 +106477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [33167] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1085), 1, sym_text_interpolation, - ACTIONS(2149), 9, + ACTIONS(2151), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106538,7 +106495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2147), 25, + anon_sym_SLASH, + ACTIONS(2149), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106562,16 +106520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [33215] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1086), 1, sym_text_interpolation, - ACTIONS(2197), 9, + ACTIONS(2199), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106581,7 +106538,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2195), 25, + anon_sym_SLASH, + ACTIONS(2197), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106605,16 +106563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [33263] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1087), 1, sym_text_interpolation, - ACTIONS(2117), 9, + ACTIONS(2119), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106624,7 +106581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2115), 25, + anon_sym_SLASH, + ACTIONS(2117), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106648,202 +106606,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [33311] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1088), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2273), 5, + ACTIONS(2275), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, [33397] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1089), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2271), 5, + ACTIONS(2273), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, [33483] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1090), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2269), 5, + ACTIONS(2271), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, [33569] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1091), 1, sym_text_interpolation, - ACTIONS(1034), 9, + ACTIONS(1036), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106853,7 +106810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1032), 25, + anon_sym_SLASH, + ACTIONS(1034), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106877,78 +106835,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [33617] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1092), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2267), 5, + ACTIONS(2269), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, [33703] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1093), 1, sym_text_interpolation, - ACTIONS(2121), 9, + ACTIONS(2123), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106958,7 +106915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2119), 25, + anon_sym_SLASH, + ACTIONS(2121), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106982,22 +106940,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [33751] = 19, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1716), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(2397), 1, + anon_sym_QMARK, + ACTIONS(2399), 1, sym_name, STATE(1094), 1, sym_text_interpolation, @@ -107015,7 +106972,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reserved_identifier, STATE(2658), 1, sym_namespace_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -107027,7 +106984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -107042,19 +106999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [33827] = 19, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1716), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(2397), 1, + anon_sym_QMARK, + ACTIONS(2399), 1, sym_name, STATE(1095), 1, sym_text_interpolation, @@ -107072,7 +107029,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reserved_identifier, STATE(2658), 1, sym_namespace_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -107084,7 +107041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -107099,13 +107056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [33903] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1096), 1, sym_text_interpolation, - ACTIONS(2205), 9, + ACTIONS(2207), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107115,7 +107072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2203), 25, + anon_sym_SLASH, + ACTIONS(2205), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107139,16 +107097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [33951] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1097), 1, sym_text_interpolation, - ACTIONS(2073), 9, + ACTIONS(2075), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107158,7 +107115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2071), 25, + anon_sym_SLASH, + ACTIONS(2073), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107182,16 +107140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [33999] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1098), 1, sym_text_interpolation, - ACTIONS(1042), 9, + ACTIONS(1044), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107201,7 +107158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1040), 25, + anon_sym_SLASH, + ACTIONS(1042), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107225,16 +107183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34047] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1099), 1, sym_text_interpolation, - ACTIONS(2005), 9, + ACTIONS(2007), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107244,7 +107201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2003), 25, + anon_sym_SLASH, + ACTIONS(2005), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107268,16 +107226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34095] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1100), 1, sym_text_interpolation, - ACTIONS(2045), 9, + ACTIONS(2047), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107287,7 +107244,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2043), 25, + anon_sym_SLASH, + ACTIONS(2045), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107311,59 +107269,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34143] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, + anon_sym_PERCENT, + ACTIONS(2391), 1, anon_sym_QMARK, STATE(1101), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2279), 8, + ACTIONS(2281), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107373,13 +107330,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [34223] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1102), 1, sym_text_interpolation, - ACTIONS(2033), 9, + ACTIONS(2035), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107389,7 +107346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2031), 25, + anon_sym_SLASH, + ACTIONS(2033), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107413,61 +107371,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34271] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, aux_sym_binary_expression_token2, STATE(1103), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 7, + ACTIONS(1757), 7, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107476,13 +107433,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [34353] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1104), 1, sym_text_interpolation, - ACTIONS(2021), 9, + ACTIONS(2023), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107492,7 +107449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2019), 25, + anon_sym_SLASH, + ACTIONS(2021), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107516,16 +107474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34401] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1105), 1, sym_text_interpolation, - ACTIONS(2017), 9, + ACTIONS(2019), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107535,7 +107492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2015), 25, + anon_sym_SLASH, + ACTIONS(2017), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107559,16 +107517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34449] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1106), 1, sym_text_interpolation, - ACTIONS(2069), 9, + ACTIONS(2071), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107578,7 +107535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2067), 25, + anon_sym_SLASH, + ACTIONS(2069), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107602,16 +107560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34497] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1107), 1, sym_text_interpolation, - ACTIONS(2013), 9, + ACTIONS(2015), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107621,7 +107578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2011), 25, + anon_sym_SLASH, + ACTIONS(2013), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107645,16 +107603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34545] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1108), 1, sym_text_interpolation, - ACTIONS(2001), 9, + ACTIONS(2003), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107664,7 +107621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1999), 25, + anon_sym_SLASH, + ACTIONS(2001), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107688,16 +107646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34593] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1109), 1, sym_text_interpolation, - ACTIONS(2157), 9, + ACTIONS(2159), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107707,7 +107664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2155), 25, + anon_sym_SLASH, + ACTIONS(2157), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107731,16 +107689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34641] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1110), 1, sym_text_interpolation, - ACTIONS(1596), 9, + ACTIONS(1600), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107750,7 +107707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1594), 25, + anon_sym_SLASH, + ACTIONS(1598), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107774,16 +107732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34689] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1111), 1, sym_text_interpolation, - ACTIONS(2101), 9, + ACTIONS(2103), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107793,7 +107750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2099), 25, + anon_sym_SLASH, + ACTIONS(2101), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107817,16 +107775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34737] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1112), 1, sym_text_interpolation, - ACTIONS(2201), 9, + ACTIONS(2203), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107836,7 +107793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2199), 25, + anon_sym_SLASH, + ACTIONS(2201), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107860,16 +107818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34785] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1113), 1, sym_text_interpolation, - ACTIONS(2165), 9, + ACTIONS(2167), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107879,7 +107836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2163), 25, + anon_sym_SLASH, + ACTIONS(2165), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107903,16 +107861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34833] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1114), 1, sym_text_interpolation, - ACTIONS(2061), 9, + ACTIONS(2063), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107922,7 +107879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2059), 25, + anon_sym_SLASH, + ACTIONS(2061), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107946,16 +107904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34881] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1115), 1, sym_text_interpolation, - ACTIONS(2081), 9, + ACTIONS(2083), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107965,7 +107922,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2079), 25, + anon_sym_SLASH, + ACTIONS(2081), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107989,55 +107947,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34929] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1757), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_QMARK, - ACTIONS(2357), 1, - anon_sym_AMP, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2365), 1, + ACTIONS(2367), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_AMP_AMP, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2389), 1, + anon_sym_PERCENT, STATE(1116), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 10, + ACTIONS(1757), 10, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108049,13 +108006,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, [35005] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1117), 1, sym_text_interpolation, - ACTIONS(2097), 9, + ACTIONS(2099), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108065,7 +108022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2095), 25, + anon_sym_SLASH, + ACTIONS(2097), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108089,16 +108047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35053] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1118), 1, sym_text_interpolation, - ACTIONS(2049), 9, + ACTIONS(2051), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108108,7 +108065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2047), 25, + anon_sym_SLASH, + ACTIONS(2049), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108132,16 +108090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35101] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1119), 1, sym_text_interpolation, - ACTIONS(2077), 9, + ACTIONS(2079), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108151,7 +108108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2075), 25, + anon_sym_SLASH, + ACTIONS(2077), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108175,16 +108133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35149] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1120), 1, sym_text_interpolation, - ACTIONS(2065), 9, + ACTIONS(2067), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108194,7 +108151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2063), 25, + anon_sym_SLASH, + ACTIONS(2065), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108218,16 +108176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35197] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1121), 1, sym_text_interpolation, - ACTIONS(1993), 9, + ACTIONS(1995), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108237,7 +108194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1991), 25, + anon_sym_SLASH, + ACTIONS(1993), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108261,16 +108219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35245] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1122), 1, sym_text_interpolation, - ACTIONS(2009), 9, + ACTIONS(2011), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108280,7 +108237,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2007), 25, + anon_sym_SLASH, + ACTIONS(2009), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108304,16 +108262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35293] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1123), 1, sym_text_interpolation, - ACTIONS(2209), 9, + ACTIONS(2211), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108323,7 +108280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2207), 25, + anon_sym_SLASH, + ACTIONS(2209), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108347,16 +108305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35341] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1124), 1, sym_text_interpolation, - ACTIONS(1997), 9, + ACTIONS(1999), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108366,7 +108323,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1995), 25, + anon_sym_SLASH, + ACTIONS(1997), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108390,16 +108348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35389] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1125), 1, sym_text_interpolation, - ACTIONS(2137), 9, + ACTIONS(2139), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108409,7 +108366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2135), 25, + anon_sym_SLASH, + ACTIONS(2137), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108433,53 +108391,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35437] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1757), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_QMARK, - ACTIONS(2357), 1, - anon_sym_AMP, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2365), 1, + ACTIONS(2367), 1, anon_sym_STAR_STAR, - ACTIONS(2371), 1, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2389), 1, + anon_sym_PERCENT, STATE(1126), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 11, + ACTIONS(1757), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108492,56 +108449,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [35511] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, + anon_sym_PERCENT, + ACTIONS(2391), 1, anon_sym_QMARK, STATE(1127), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2281), 8, + ACTIONS(2283), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108551,13 +108508,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [35591] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1128), 1, sym_text_interpolation, - ACTIONS(2141), 9, + ACTIONS(2143), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108567,7 +108524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2139), 25, + anon_sym_SLASH, + ACTIONS(2141), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108591,16 +108549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35639] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1129), 1, sym_text_interpolation, - ACTIONS(2145), 9, + ACTIONS(2147), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108610,7 +108567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2143), 25, + anon_sym_SLASH, + ACTIONS(2145), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108634,16 +108592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35687] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1130), 1, sym_text_interpolation, - ACTIONS(2213), 9, + ACTIONS(2215), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108653,7 +108610,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2211), 25, + anon_sym_SLASH, + ACTIONS(2213), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108677,50 +108635,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35735] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2359), 1, anon_sym_AMP, - ACTIONS(2365), 1, + ACTIONS(2367), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2389), 1, + anon_sym_PERCENT, STATE(1131), 1, sym_text_interpolation, - ACTIONS(1757), 2, + ACTIONS(1759), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 12, + ACTIONS(1757), 12, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108734,13 +108691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [35805] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1132), 1, sym_text_interpolation, - ACTIONS(1883), 9, + ACTIONS(1885), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108750,7 +108707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1881), 25, + anon_sym_SLASH, + ACTIONS(1883), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108774,22 +108732,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35853] = 19, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1716), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(2397), 1, + anon_sym_QMARK, + ACTIONS(2399), 1, sym_name, STATE(1133), 1, sym_text_interpolation, @@ -108807,7 +108764,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reserved_identifier, STATE(2658), 1, sym_namespace_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -108819,7 +108776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -108834,19 +108791,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [35929] = 19, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1716), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(2397), 1, + anon_sym_QMARK, + ACTIONS(2399), 1, sym_name, STATE(1134), 1, sym_text_interpolation, @@ -108864,7 +108821,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reserved_identifier, STATE(2658), 1, sym_namespace_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -108876,7 +108833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -108891,26 +108848,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [36005] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2365), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2367), 1, anon_sym_STAR_STAR, - ACTIONS(2385), 1, - anon_sym_STAR, + ACTIONS(2389), 1, + anon_sym_PERCENT, STATE(1135), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1759), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1757), 18, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DOT, + [36063] = 5, + ACTIONS(20), 1, + anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, + STATE(1136), 1, + sym_text_interpolation, + ACTIONS(2059), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2057), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_PERCENT, - ACTIONS(1757), 8, + [36111] = 11, + ACTIONS(20), 1, + anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2367), 1, + anon_sym_STAR_STAR, + ACTIONS(2385), 1, + anon_sym_DOT, + ACTIONS(2389), 1, + anon_sym_PERCENT, + STATE(1137), 1, + sym_text_interpolation, + ACTIONS(2363), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2383), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108919,100 +108969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 18, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DOT, - [36063] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1136), 1, - sym_text_interpolation, - ACTIONS(2057), 9, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - ACTIONS(2055), 25, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_PERCENT, - [36111] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(2365), 1, - anon_sym_STAR_STAR, - ACTIONS(2383), 1, - anon_sym_DOT, - ACTIONS(2385), 1, - anon_sym_STAR, - STATE(1137), 1, - sym_text_interpolation, - ACTIONS(2361), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2381), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2387), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1755), 17, + ACTIONS(1757), 17, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109031,13 +108988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [36171] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1138), 1, sym_text_interpolation, - ACTIONS(2177), 9, + ACTIONS(2179), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109047,7 +109004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2175), 25, + anon_sym_SLASH, + ACTIONS(2177), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109071,26 +109029,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [36219] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2365), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2367), 1, anon_sym_STAR_STAR, - ACTIONS(2385), 1, - anon_sym_STAR, + ACTIONS(2389), 1, + anon_sym_PERCENT, STATE(1139), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109099,7 +109056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 20, + ACTIONS(1757), 20, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109121,40 +109078,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [36275] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2365), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2367), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2389), 1, + anon_sym_PERCENT, STATE(1140), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1757), 5, + ACTIONS(1759), 5, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1755), 16, + ACTIONS(1757), 16, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109172,13 +109129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36339] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, + ACTIONS(1570), 1, + sym_comment, STATE(1141), 1, sym_text_interpolation, - ACTIONS(2173), 9, + ACTIONS(2175), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109188,7 +109145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2171), 25, + anon_sym_SLASH, + ACTIONS(2173), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109212,80 +109170,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [36387] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1142), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2215), 5, + ACTIONS(2217), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, [36473] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2365), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2367), 1, anon_sym_STAR_STAR, STATE(1143), 1, sym_text_interpolation, - ACTIONS(1757), 9, + ACTIONS(1759), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109295,7 +109252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 24, + anon_sym_SLASH, + ACTIONS(1757), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109318,55 +109276,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [36523] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1757), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_QMARK, - ACTIONS(2405), 1, - anon_sym_AMP, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_PERCENT, STATE(1144), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 9, + ACTIONS(1757), 9, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -109377,178 +109334,178 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, [36598] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1145), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2277), 4, + ACTIONS(2279), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36683] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1146), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2269), 4, + ACTIONS(2271), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36768] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2287), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2289), 1, anon_sym_QMARK, - ACTIONS(2405), 1, - anon_sym_AMP, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, - ACTIONS(2435), 1, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_PERCENT, + ACTIONS(2437), 1, anon_sym_QMARK_QMARK, - ACTIONS(2443), 1, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1147), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2285), 7, + ACTIONS(2287), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -109557,56 +109514,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [36847] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, + anon_sym_QMARK, + ACTIONS(2437), 1, anon_sym_QMARK_QMARK, - ACTIONS(2443), 1, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1148), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2289), 7, + ACTIONS(2291), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -109615,76 +109572,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [36926] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1149), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2255), 4, + ACTIONS(2257), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37011] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2445), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2447), 1, anon_sym_COLON, STATE(1150), 1, sym_text_interpolation, - ACTIONS(2173), 9, + ACTIONS(2175), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109694,7 +109651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2171), 23, + anon_sym_SLASH, + ACTIONS(2173), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, @@ -109716,18 +109674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [37060] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2445), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2447), 1, anon_sym_COLON, STATE(1151), 1, sym_text_interpolation, - ACTIONS(2177), 9, + ACTIONS(2179), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109737,7 +109694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2175), 23, + anon_sym_SLASH, + ACTIONS(2177), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, @@ -109759,120 +109717,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [37109] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1152), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2271), 4, + ACTIONS(2273), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37194] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2223), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2225), 1, anon_sym_QMARK, - ACTIONS(2405), 1, - anon_sym_AMP, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, - ACTIONS(2435), 1, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_PERCENT, + ACTIONS(2437), 1, anon_sym_QMARK_QMARK, - ACTIONS(2443), 1, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1153), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2219), 7, + ACTIONS(2221), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -109881,56 +109838,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [37273] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, + anon_sym_QMARK, + ACTIONS(2437), 1, anon_sym_QMARK_QMARK, - ACTIONS(2443), 1, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1154), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2279), 7, + ACTIONS(2281), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -109939,56 +109896,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [37352] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, + anon_sym_QMARK, + ACTIONS(2437), 1, anon_sym_QMARK_QMARK, - ACTIONS(2443), 1, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1155), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2281), 7, + ACTIONS(2283), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -109997,84 +109954,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [37431] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1156), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2291), 4, + ACTIONS(2293), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37516] = 20, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(238), 1, + ACTIONS(240), 1, aux_sym_readonly_modifier_token1, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1716), 1, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(1749), 1, + anon_sym_QMARK, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(1157), 1, sym_text_interpolation, @@ -110100,7 +110057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -110115,15 +110072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [37593] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2411), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2413), 1, anon_sym_STAR_STAR, STATE(1158), 1, sym_text_interpolation, - ACTIONS(1757), 9, + ACTIONS(1759), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -110133,7 +110090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 23, + anon_sym_SLASH, + ACTIONS(1757), 22, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110155,29 +110113,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [37642] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2411), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2413), 1, anon_sym_STAR_STAR, - ACTIONS(2429), 1, - anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_PERCENT, STATE(1159), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -110186,7 +110143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 17, + ACTIONS(1757), 17, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110205,23 +110162,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DOT, [37699] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2411), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2413), 1, anon_sym_STAR_STAR, - ACTIONS(2429), 1, - anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_PERCENT, STATE(1160), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -110230,7 +110187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 19, + ACTIONS(1757), 19, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110251,56 +110208,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [37754] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1757), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_QMARK, - ACTIONS(2405), 1, - anon_sym_AMP, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, - ACTIONS(2435), 1, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_PERCENT, + ACTIONS(2437), 1, anon_sym_QMARK_QMARK, - ACTIONS(2443), 1, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1161), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 7, + ACTIONS(1757), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110309,28 +110266,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [37833] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2411), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2413), 1, anon_sym_STAR_STAR, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_PERCENT, STATE(1162), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -110339,7 +110296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 16, + ACTIONS(1757), 16, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110357,40 +110314,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [37892] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2411), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2413), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_PERCENT, STATE(1163), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1757), 5, + ACTIONS(1759), 5, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1755), 15, + ACTIONS(1757), 15, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110407,46 +110364,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37955] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2411), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2413), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_PERCENT, STATE(1164), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 3, + ACTIONS(1759), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 11, + ACTIONS(1757), 11, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110459,169 +110416,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [38022] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1165), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2283), 4, + ACTIONS(2285), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [38107] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1166), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2265), 4, + ACTIONS(2267), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [38192] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2407), 1, anon_sym_AMP, - ACTIONS(2411), 1, + ACTIONS(2413), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_PERCENT, STATE(1167), 1, sym_text_interpolation, - ACTIONS(1757), 2, + ACTIONS(1759), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 11, + ACTIONS(1757), 11, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110634,50 +110591,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [38261] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1757), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1759), 1, anon_sym_QMARK, - ACTIONS(2405), 1, - anon_sym_AMP, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, + ACTIONS(2413), 1, anon_sym_STAR_STAR, - ACTIONS(2415), 1, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_PERCENT, STATE(1168), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 10, + ACTIONS(1757), 10, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110689,58 +110646,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [38334] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2439), 1, aux_sym_binary_expression_token2, - ACTIONS(2443), 1, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1169), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 6, + ACTIONS(1757), 6, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110748,116 +110705,116 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [38415] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2439), 1, aux_sym_binary_expression_token2, - ACTIONS(2441), 1, - aux_sym_binary_expression_token4, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1170), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 5, + ACTIONS(1757), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, [38498] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, + anon_sym_QMARK, + ACTIONS(2437), 1, anon_sym_QMARK_QMARK, - ACTIONS(2443), 1, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1171), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 7, + ACTIONS(1757), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110866,15 +110823,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [38577] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2411), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2413), 1, anon_sym_STAR_STAR, STATE(1172), 1, sym_text_interpolation, - ACTIONS(1757), 9, + ACTIONS(1759), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -110884,7 +110841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1755), 23, + anon_sym_SLASH, + ACTIONS(1757), 22, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -110906,113 +110864,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [38626] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1173), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2215), 4, + ACTIONS(2217), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [38711] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2407), 1, anon_sym_AMP, - ACTIONS(2411), 1, + ACTIONS(2413), 1, anon_sym_STAR_STAR, - ACTIONS(2415), 1, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_PERCENT, STATE(1174), 1, sym_text_interpolation, - ACTIONS(1757), 2, + ACTIONS(1759), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1755), 10, + ACTIONS(1757), 10, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -111024,20 +110981,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [38782] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2411), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2413), 1, anon_sym_STAR_STAR, - ACTIONS(2429), 1, - anon_sym_STAR, + ACTIONS(2433), 1, + anon_sym_PERCENT, STATE(1175), 1, sym_text_interpolation, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1757), 8, + ACTIONS(1759), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -111046,7 +111003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1755), 21, + ACTIONS(1757), 21, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -111069,207 +111026,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [38835] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1176), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2273), 4, + ACTIONS(2275), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [38920] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1177), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2267), 4, + ACTIONS(2269), 4, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39005] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, - ACTIONS(2447), 1, + ACTIONS(2449), 1, anon_sym_EQ_GT, STATE(1178), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2167), 3, + ACTIONS(2169), 3, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_binary_expression_token1, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39092] = 20, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(238), 1, + ACTIONS(240), 1, aux_sym_readonly_modifier_token1, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1716), 1, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(1749), 1, + anon_sym_QMARK, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(1179), 1, sym_text_interpolation, @@ -111295,7 +111252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -111310,785 +111267,785 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [39169] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1180), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2449), 3, + ACTIONS(2451), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39253] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, - ACTIONS(2451), 1, + ACTIONS(2453), 1, anon_sym_EQ_GT, STATE(1181), 1, sym_text_interpolation, - ACTIONS(2167), 2, + ACTIONS(2169), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39339] = 26, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, - ACTIONS(2453), 1, - anon_sym_COMMA, ACTIONS(2455), 1, + anon_sym_COMMA, + ACTIONS(2457), 1, anon_sym_EQ_GT, STATE(1182), 1, sym_text_interpolation, STATE(2130), 1, aux_sym_match_condition_list_repeat1, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39427] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, - ACTIONS(2459), 1, + ACTIONS(2461), 1, anon_sym_COMMA, STATE(1183), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2457), 2, + ACTIONS(2459), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39513] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1184), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2461), 3, + ACTIONS(2463), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39597] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, - ACTIONS(2463), 1, + ACTIONS(2465), 1, anon_sym_EQ_GT, STATE(1185), 1, sym_text_interpolation, - ACTIONS(2167), 2, + ACTIONS(2169), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39683] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, - ACTIONS(2465), 1, + ACTIONS(2467), 1, anon_sym_EQ_GT, STATE(1186), 1, sym_text_interpolation, - ACTIONS(2167), 2, + ACTIONS(2169), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39769] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1187), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2467), 3, + ACTIONS(2469), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39853] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, - ACTIONS(2459), 1, + ACTIONS(2461), 1, anon_sym_COMMA, STATE(1188), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2469), 2, + ACTIONS(2471), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39939] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1189), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2471), 2, + ACTIONS(2473), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40022] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1190), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2473), 2, + ACTIONS(2475), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40105] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1191), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2475), 2, + ACTIONS(2477), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40188] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, - ACTIONS(2457), 1, + ACTIONS(2459), 1, anon_sym_RPAREN, - ACTIONS(2477), 1, + ACTIONS(2479), 1, anon_sym_COMMA, STATE(1192), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -112096,27 +112053,27 @@ static const uint16_t ts_small_parse_table[] = { [40273] = 28, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(2479), 1, - aux_sym_function_static_declaration_token1, ACTIONS(2481), 1, - aux_sym_namespace_use_declaration_token1, + aux_sym_function_static_declaration_token1, ACTIONS(2483), 1, - aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token1, ACTIONS(2485), 1, - aux_sym_namespace_use_declaration_token3, + aux_sym_namespace_use_declaration_token2, ACTIONS(2487), 1, - anon_sym_RBRACE, + aux_sym_namespace_use_declaration_token3, ACTIONS(2489), 1, - aux_sym_final_modifier_token1, + anon_sym_RBRACE, ACTIONS(2491), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2493), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2495), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2497), 1, sym_var_modifier, STATE(643), 1, aux_sym_property_declaration_repeat1, @@ -112144,7 +112101,7 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(1804), 1, sym__function_definition_header, - ACTIONS(2497), 3, + ACTIONS(2499), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -112157,544 +112114,544 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, [40364] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1194), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2499), 2, + ACTIONS(2501), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40447] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1195), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2501), 2, + ACTIONS(2503), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40530] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1196), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2503), 2, + ACTIONS(2505), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40613] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1197), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2505), 2, + ACTIONS(2507), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40696] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1198), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2507), 2, + ACTIONS(2509), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40779] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1199), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2509), 2, + ACTIONS(2511), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40862] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1200), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2511), 2, + ACTIONS(2513), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40945] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2513), 1, - anon_sym_EQ_GT, ACTIONS(2515), 1, + anon_sym_EQ_GT, + ACTIONS(2517), 1, anon_sym_RPAREN, STATE(1201), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41030] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, - ACTIONS(2469), 1, + ACTIONS(2471), 1, anon_sym_SEMI, - ACTIONS(2517), 1, + ACTIONS(2519), 1, anon_sym_COMMA, STATE(1202), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41115] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2521), 1, + ACTIONS(2523), 1, aux_sym_namespace_use_declaration_token3, STATE(1203), 1, sym_text_interpolation, @@ -112702,15 +112659,15 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(2659), 1, sym_visibility_modifier, - ACTIONS(240), 3, + ACTIONS(242), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - ACTIONS(2523), 3, + ACTIONS(2525), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2519), 22, + ACTIONS(2521), 22, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -112734,70 +112691,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [41168] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1204), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2525), 2, + ACTIONS(2527), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41251] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2521), 1, + ACTIONS(2523), 1, aux_sym_namespace_use_declaration_token3, STATE(1205), 1, sym_text_interpolation, @@ -112805,15 +112762,15 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(2659), 1, sym_visibility_modifier, - ACTIONS(240), 3, + ACTIONS(242), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - ACTIONS(2523), 3, + ACTIONS(2525), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2519), 22, + ACTIONS(2521), 22, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -112837,119 +112794,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [41304] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1206), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2527), 2, + ACTIONS(2529), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41387] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1207), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2529), 2, + ACTIONS(2531), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -112957,27 +112914,27 @@ static const uint16_t ts_small_parse_table[] = { [41470] = 28, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(2479), 1, - aux_sym_function_static_declaration_token1, ACTIONS(2481), 1, - aux_sym_namespace_use_declaration_token1, + aux_sym_function_static_declaration_token1, ACTIONS(2483), 1, - aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token1, ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2487), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2489), 1, - aux_sym_final_modifier_token1, ACTIONS(2491), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2493), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2495), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2497), 1, sym_var_modifier, - ACTIONS(2531), 1, + ACTIONS(2533), 1, anon_sym_RBRACE, STATE(643), 1, aux_sym_property_declaration_repeat1, @@ -113005,7 +112962,7 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(1804), 1, sym__function_definition_header, - ACTIONS(2497), 3, + ACTIONS(2499), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -113020,27 +112977,27 @@ static const uint16_t ts_small_parse_table[] = { [41561] = 28, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(2479), 1, - aux_sym_function_static_declaration_token1, ACTIONS(2481), 1, - aux_sym_namespace_use_declaration_token1, + aux_sym_function_static_declaration_token1, ACTIONS(2483), 1, - aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token1, ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2487), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2489), 1, - aux_sym_final_modifier_token1, ACTIONS(2491), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2493), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2495), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2497), 1, sym_var_modifier, - ACTIONS(2533), 1, + ACTIONS(2535), 1, anon_sym_RBRACE, STATE(643), 1, aux_sym_property_declaration_repeat1, @@ -113068,7 +113025,7 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(1804), 1, sym__function_definition_header, - ACTIONS(2497), 3, + ACTIONS(2499), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -113081,180 +113038,180 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, [41652] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, STATE(1210), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2535), 2, + ACTIONS(2537), 2, anon_sym_SEMI, anon_sym_COLON, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41735] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2513), 1, + ACTIONS(2515), 1, anon_sym_EQ_GT, - ACTIONS(2537), 1, + ACTIONS(2539), 1, anon_sym_RPAREN, STATE(1211), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41820] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, - ACTIONS(2469), 1, + ACTIONS(2471), 1, anon_sym_RPAREN, - ACTIONS(2477), 1, + ACTIONS(2479), 1, anon_sym_COMMA, STATE(1212), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -113262,27 +113219,27 @@ static const uint16_t ts_small_parse_table[] = { [41905] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2539), 1, + ACTIONS(2541), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2542), 1, + ACTIONS(2544), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2545), 1, + ACTIONS(2547), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2548), 1, + ACTIONS(2550), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2551), 1, - anon_sym_RBRACE, ACTIONS(2553), 1, + anon_sym_RBRACE, + ACTIONS(2555), 1, aux_sym_final_modifier_token1, - ACTIONS(2556), 1, + ACTIONS(2558), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2559), 1, + ACTIONS(2561), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2562), 1, + ACTIONS(2564), 1, sym_var_modifier, - ACTIONS(2568), 1, + ACTIONS(2570), 1, anon_sym_POUND_LBRACK, STATE(643), 1, aux_sym_property_declaration_repeat1, @@ -113309,7 +113266,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1213), 2, sym_text_interpolation, aux_sym_declaration_list_repeat1, - ACTIONS(2565), 3, + ACTIONS(2567), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -113322,60 +113279,60 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, [41994] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1214), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 2, + ACTIONS(2573), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -113383,27 +113340,27 @@ static const uint16_t ts_small_parse_table[] = { [42077] = 28, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(2479), 1, - aux_sym_function_static_declaration_token1, ACTIONS(2481), 1, - aux_sym_namespace_use_declaration_token1, + aux_sym_function_static_declaration_token1, ACTIONS(2483), 1, - aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token1, ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2487), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2489), 1, - aux_sym_final_modifier_token1, ACTIONS(2491), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2493), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2495), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2497), 1, sym_var_modifier, - ACTIONS(2573), 1, + ACTIONS(2575), 1, anon_sym_RBRACE, STATE(643), 1, aux_sym_property_declaration_repeat1, @@ -113431,7 +113388,7 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(1804), 1, sym__function_definition_header, - ACTIONS(2497), 3, + ACTIONS(2499), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -113444,60 +113401,60 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, [42168] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1216), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2575), 2, + ACTIONS(2577), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -113505,27 +113462,27 @@ static const uint16_t ts_small_parse_table[] = { [42251] = 28, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(2479), 1, - aux_sym_function_static_declaration_token1, ACTIONS(2481), 1, - aux_sym_namespace_use_declaration_token1, + aux_sym_function_static_declaration_token1, ACTIONS(2483), 1, - aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token1, ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2487), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2489), 1, - aux_sym_final_modifier_token1, ACTIONS(2491), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2493), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2495), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2497), 1, sym_var_modifier, - ACTIONS(2577), 1, + ACTIONS(2579), 1, anon_sym_RBRACE, STATE(643), 1, aux_sym_property_declaration_repeat1, @@ -113553,7 +113510,7 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(1804), 1, sym__function_definition_header, - ACTIONS(2497), 3, + ACTIONS(2499), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -113566,257 +113523,257 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, [42342] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1218), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2579), 2, + ACTIONS(2581), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42425] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1219), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2581), 2, + ACTIONS(2583), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42508] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1220), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2583), 2, + ACTIONS(2585), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42591] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1221), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2585), 2, + ACTIONS(2587), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42674] = 18, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1716), 1, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(1749), 1, + anon_sym_QMARK, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(1222), 1, sym_text_interpolation, @@ -113840,7 +113797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -113855,200 +113812,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [42745] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1223), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2587), 2, + ACTIONS(2589), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42828] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2513), 1, + ACTIONS(2515), 1, anon_sym_EQ_GT, - ACTIONS(2589), 1, + ACTIONS(2591), 1, anon_sym_RPAREN, STATE(1224), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42913] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, - ACTIONS(2457), 1, + ACTIONS(2459), 1, anon_sym_SEMI, - ACTIONS(2517), 1, + ACTIONS(2519), 1, anon_sym_COMMA, STATE(1225), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42998] = 18, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1716), 1, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(1749), 1, + anon_sym_QMARK, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(1226), 1, sym_text_interpolation, @@ -114072,7 +114029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -114089,27 +114046,27 @@ static const uint16_t ts_small_parse_table[] = { [43069] = 28, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(2479), 1, - aux_sym_function_static_declaration_token1, ACTIONS(2481), 1, - aux_sym_namespace_use_declaration_token1, + aux_sym_function_static_declaration_token1, ACTIONS(2483), 1, - aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token1, ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2487), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2489), 1, - aux_sym_final_modifier_token1, ACTIONS(2491), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2493), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2495), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2497), 1, sym_var_modifier, - ACTIONS(2591), 1, + ACTIONS(2593), 1, anon_sym_RBRACE, STATE(643), 1, aux_sym_property_declaration_repeat1, @@ -114137,7 +114094,7 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(1804), 1, sym__function_definition_header, - ACTIONS(2497), 3, + ACTIONS(2499), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -114150,61 +114107,61 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, [43160] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2513), 1, + ACTIONS(2515), 1, anon_sym_EQ_GT, - ACTIONS(2593), 1, + ACTIONS(2595), 1, anon_sym_RPAREN, STATE(1228), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -114212,27 +114169,27 @@ static const uint16_t ts_small_parse_table[] = { [43245] = 28, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(2479), 1, - aux_sym_function_static_declaration_token1, ACTIONS(2481), 1, - aux_sym_namespace_use_declaration_token1, + aux_sym_function_static_declaration_token1, ACTIONS(2483), 1, - aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token1, ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2487), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2489), 1, - aux_sym_final_modifier_token1, ACTIONS(2491), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2493), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2495), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2497), 1, sym_var_modifier, - ACTIONS(2595), 1, + ACTIONS(2597), 1, anon_sym_RBRACE, STATE(643), 1, aux_sym_property_declaration_repeat1, @@ -114260,7 +114217,7 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(1804), 1, sym__function_definition_header, - ACTIONS(2497), 3, + ACTIONS(2499), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -114273,591 +114230,591 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, [43336] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1230), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2597), 2, + ACTIONS(2599), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43419] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1231), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2599), 2, + ACTIONS(2601), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43502] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1232), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2601), 2, + ACTIONS(2603), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43585] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1233), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2603), 2, + ACTIONS(2605), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43668] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1234), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2605), 2, + ACTIONS(2607), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43751] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1235), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2607), 2, + ACTIONS(2609), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43834] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1236), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2609), 2, + ACTIONS(2611), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43917] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2405), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2407), 1, + anon_sym_AMP, + ACTIONS(2409), 1, anon_sym_PIPE, - ACTIONS(2411), 1, - anon_sym_STAR_STAR, ACTIONS(2413), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(2415), 1, + anon_sym_AMP_AMP, + ACTIONS(2417), 1, anon_sym_CARET, - ACTIONS(2423), 1, + ACTIONS(2425), 1, anon_sym_GT_EQ, - ACTIONS(2427), 1, - anon_sym_DOT, ACTIONS(2429), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2433), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2435), 1, - anon_sym_QMARK_QMARK, + anon_sym_QMARK, ACTIONS(2437), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK_QMARK, ACTIONS(2439), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2441), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token3, ACTIONS(2443), 1, + aux_sym_binary_expression_token4, + ACTIONS(2445), 1, anon_sym_PIPE_PIPE, STATE(1237), 1, sym_text_interpolation, - ACTIONS(2409), 2, + ACTIONS(2411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2417), 2, + ACTIONS(2419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2425), 2, + ACTIONS(2427), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2431), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2611), 2, + ACTIONS(2613), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2421), 3, + ACTIONS(2423), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2419), 4, + ACTIONS(2421), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44000] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1238), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2613), 2, + ACTIONS(2615), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44083] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, STATE(1239), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2615), 2, + ACTIONS(2617), 2, anon_sym_COMMA, anon_sym_EQ_GT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -114865,27 +114822,27 @@ static const uint16_t ts_small_parse_table[] = { [44166] = 28, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(2479), 1, - aux_sym_function_static_declaration_token1, ACTIONS(2481), 1, - aux_sym_namespace_use_declaration_token1, + aux_sym_function_static_declaration_token1, ACTIONS(2483), 1, - aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token1, ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2487), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2489), 1, - aux_sym_final_modifier_token1, ACTIONS(2491), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2493), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2495), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2497), 1, sym_var_modifier, - ACTIONS(2617), 1, + ACTIONS(2619), 1, anon_sym_RBRACE, STATE(643), 1, aux_sym_property_declaration_repeat1, @@ -114913,7 +114870,7 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(1804), 1, sym__function_definition_header, - ACTIONS(2497), 3, + ACTIONS(2499), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -114926,2570 +114883,2570 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, [44257] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2357), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2359), 1, + anon_sym_AMP, + ACTIONS(2361), 1, anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_QMARK_QMARK, ACTIONS(2365), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2367), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2369), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2371), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, anon_sym_CARET, - ACTIONS(2379), 1, + ACTIONS(2381), 1, anon_sym_GT_EQ, - ACTIONS(2383), 1, - anon_sym_DOT, ACTIONS(2385), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2389), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2391), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2393), 1, - aux_sym_binary_expression_token4, + aux_sym_binary_expression_token2, ACTIONS(2395), 1, + aux_sym_binary_expression_token4, + ACTIONS(2397), 1, aux_sym_binary_expression_token3, STATE(1241), 1, sym_text_interpolation, - ACTIONS(2361), 2, + ACTIONS(2363), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2373), 2, + ACTIONS(2375), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2381), 2, + ACTIONS(2383), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2387), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2619), 2, + ACTIONS(2621), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2377), 3, + ACTIONS(2379), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2375), 4, + ACTIONS(2377), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44340] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2621), 1, + ACTIONS(2623), 1, anon_sym_RBRACE, STATE(1242), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44422] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2623), 1, + ACTIONS(2625), 1, anon_sym_RBRACE, STATE(1243), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44504] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2625), 1, + ACTIONS(2627), 1, anon_sym_RBRACE, STATE(1244), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44586] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2627), 1, + ACTIONS(2629), 1, anon_sym_RBRACE, STATE(1245), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44668] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2629), 1, + ACTIONS(2631), 1, anon_sym_RPAREN, STATE(1246), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44750] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, - ACTIONS(2625), 1, + ACTIONS(2627), 1, anon_sym_RBRACK, STATE(1247), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44832] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2631), 1, + ACTIONS(2633), 1, anon_sym_RBRACE, STATE(1248), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44914] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, - ACTIONS(2633), 1, + ACTIONS(2635), 1, anon_sym_RBRACK, STATE(1249), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44996] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2635), 1, + ACTIONS(2637), 1, anon_sym_RBRACE, STATE(1250), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45078] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2637), 1, + ACTIONS(2639), 1, anon_sym_RBRACE, STATE(1251), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45160] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2639), 1, + ACTIONS(2641), 1, anon_sym_RBRACE, STATE(1252), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45242] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2641), 1, + ACTIONS(2643), 1, anon_sym_RBRACE, STATE(1253), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45324] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2643), 1, + ACTIONS(2645), 1, anon_sym_RBRACE, STATE(1254), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45406] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2645), 1, + ACTIONS(2647), 1, anon_sym_EQ_GT, STATE(1255), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45488] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2633), 1, + ACTIONS(2635), 1, anon_sym_RBRACE, STATE(1256), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45570] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2647), 1, + ACTIONS(2649), 1, anon_sym_RBRACE, STATE(1257), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45652] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2649), 1, + ACTIONS(2651), 1, anon_sym_RPAREN, STATE(1258), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45734] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2651), 1, + ACTIONS(2653), 1, anon_sym_RBRACE, STATE(1259), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45816] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, - ACTIONS(2653), 1, + ACTIONS(2655), 1, anon_sym_RBRACK, STATE(1260), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45898] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2655), 1, + ACTIONS(2657), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1261), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45980] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2657), 1, + ACTIONS(2659), 1, anon_sym_RBRACE, STATE(1262), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [46062] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2659), 1, + ACTIONS(2661), 1, anon_sym_COLON, STATE(1263), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [46144] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2661), 1, + ACTIONS(2663), 1, anon_sym_RBRACE, STATE(1264), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [46226] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2663), 1, + ACTIONS(2665), 1, anon_sym_RBRACE, STATE(1265), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [46308] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2665), 1, + ACTIONS(2667), 1, anon_sym_RBRACE, STATE(1266), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [46390] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2667), 1, + ACTIONS(2669), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1267), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [46472] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2669), 1, + ACTIONS(2671), 1, anon_sym_RBRACE, STATE(1268), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [46554] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2671), 1, + ACTIONS(2673), 1, anon_sym_RPAREN, STATE(1269), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [46636] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2673), 1, + ACTIONS(2675), 1, anon_sym_RBRACE, STATE(1270), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [46718] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2675), 1, + ACTIONS(2677), 1, anon_sym_RBRACE, STATE(1271), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [46800] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2677), 1, + ACTIONS(2679), 1, anon_sym_RBRACE, STATE(1272), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [46882] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2679), 1, + ACTIONS(2681), 1, anon_sym_RBRACE, STATE(1273), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [46964] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, - ACTIONS(2681), 1, + ACTIONS(2683), 1, anon_sym_RBRACK, STATE(1274), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [47046] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2681), 1, + ACTIONS(2683), 1, anon_sym_RBRACE, STATE(1275), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [47128] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2683), 1, + ACTIONS(2685), 1, anon_sym_RBRACE, STATE(1276), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [47210] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2685), 1, + ACTIONS(2687), 1, anon_sym_RBRACE, STATE(1277), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [47292] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2687), 1, + ACTIONS(2689), 1, anon_sym_EQ_GT, STATE(1278), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [47374] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2689), 1, + ACTIONS(2691), 1, anon_sym_RBRACE, STATE(1279), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [47456] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2691), 1, + ACTIONS(2693), 1, anon_sym_RBRACE, STATE(1280), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [47538] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2693), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, STATE(1281), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [47620] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2695), 1, + ACTIONS(2697), 1, anon_sym_COLON, STATE(1282), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [47702] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2697), 1, + ACTIONS(2699), 1, anon_sym_RBRACE, STATE(1283), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [47784] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2699), 1, + ACTIONS(2701), 1, anon_sym_RPAREN, STATE(1284), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [47866] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1285), 1, sym_text_interpolation, - ACTIONS(2703), 3, + ACTIONS(2705), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2701), 27, + ACTIONS(2703), 27, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -117518,949 +117475,949 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [47910] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, - ACTIONS(2693), 1, + ACTIONS(2695), 1, anon_sym_RBRACK, STATE(1286), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [47992] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2705), 1, + ACTIONS(2707), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1287), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [48074] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2707), 1, + ACTIONS(2709), 1, anon_sym_RBRACE, STATE(1288), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [48156] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2709), 1, + ACTIONS(2711), 1, anon_sym_RBRACE, STATE(1289), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [48238] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2711), 1, + ACTIONS(2713), 1, anon_sym_RBRACE, STATE(1290), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [48320] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2713), 1, + ACTIONS(2715), 1, anon_sym_RBRACE, STATE(1291), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [48402] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2715), 1, + ACTIONS(2717), 1, anon_sym_RBRACE, STATE(1292), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [48484] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2717), 1, + ACTIONS(2719), 1, anon_sym_EQ_GT, STATE(1293), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [48566] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2293), 1, - anon_sym_AMP, + ACTIONS(1570), 1, + sym_comment, ACTIONS(2295), 1, + anon_sym_AMP, + ACTIONS(2297), 1, anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_QMARK_QMARK, ACTIONS(2301), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2303), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2305), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2307), 1, + anon_sym_AMP_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2315), 1, + ACTIONS(2317), 1, anon_sym_GT_EQ, - ACTIONS(2319), 1, - anon_sym_DOT, ACTIONS(2321), 1, - anon_sym_STAR, + anon_sym_DOT, ACTIONS(2325), 1, - anon_sym_QMARK, + anon_sym_PERCENT, ACTIONS(2327), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2329), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2331), 1, + aux_sym_binary_expression_token3, + ACTIONS(2333), 1, aux_sym_binary_expression_token4, - ACTIONS(2719), 1, + ACTIONS(2721), 1, anon_sym_RBRACK, STATE(1294), 1, sym_text_interpolation, - ACTIONS(2297), 2, + ACTIONS(2299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2311), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2317), 2, + ACTIONS(2319), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2323), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2313), 3, + ACTIONS(2315), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [48648] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2721), 1, + ACTIONS(2723), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1295), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [48730] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2723), 1, + ACTIONS(2725), 1, anon_sym_RBRACE, STATE(1296), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [48812] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2725), 1, + ACTIONS(2727), 1, anon_sym_RBRACE, STATE(1297), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [48894] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2727), 1, + ACTIONS(2729), 1, anon_sym_RBRACE, STATE(1298), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [48976] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2729), 1, + ACTIONS(2731), 1, anon_sym_COLON, STATE(1299), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [49058] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2653), 1, + ACTIONS(2655), 1, anon_sym_RBRACE, STATE(1300), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [49140] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2731), 1, + ACTIONS(2733), 1, anon_sym_RBRACE, STATE(1301), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [49222] = 17, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2735), 1, sym_name, - ACTIONS(2737), 1, - anon_sym_LPAREN, ACTIONS(2739), 1, - anon_sym_QMARK, + anon_sym_LPAREN, ACTIONS(2741), 1, + anon_sym_QMARK, + ACTIONS(2743), 1, sym_bottom_type, STATE(1302), 1, sym_text_interpolation, @@ -118482,7 +118439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(2735), 13, + ACTIONS(2737), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -118497,369 +118454,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [49290] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2743), 1, + ACTIONS(2745), 1, anon_sym_RBRACE, STATE(1303), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [49372] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2745), 1, + ACTIONS(2747), 1, anon_sym_RBRACE, STATE(1304), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [49454] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2747), 1, + ACTIONS(2749), 1, anon_sym_RBRACE, STATE(1305), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [49536] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2719), 1, + ACTIONS(2721), 1, anon_sym_RBRACE, STATE(1306), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [49618] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2749), 1, + ACTIONS(2751), 1, anon_sym_RBRACE, STATE(1307), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [49700] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2751), 1, + ACTIONS(2753), 1, anon_sym_COLON, STATE(1308), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [49782] = 17, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1716), 1, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(2753), 1, + anon_sym_QMARK, + ACTIONS(2755), 1, sym_bottom_type, STATE(1309), 1, sym_text_interpolation, @@ -118881,7 +118838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -118896,59 +118853,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [49850] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2221), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(2223), 1, anon_sym_AMP, - ACTIONS(2225), 1, + ACTIONS(2227), 1, anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, ACTIONS(2231), 1, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, ACTIONS(2235), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2237), 1, + anon_sym_AMP_AMP, + ACTIONS(2239), 1, anon_sym_CARET, - ACTIONS(2245), 1, + ACTIONS(2247), 1, anon_sym_GT_EQ, - ACTIONS(2249), 1, - anon_sym_DOT, ACTIONS(2251), 1, - anon_sym_STAR, - ACTIONS(2257), 1, - anon_sym_QMARK, + anon_sym_DOT, + ACTIONS(2255), 1, + anon_sym_PERCENT, ACTIONS(2259), 1, - aux_sym_binary_expression_token2, + anon_sym_QMARK, ACTIONS(2261), 1, - aux_sym_binary_expression_token3, + aux_sym_binary_expression_token2, ACTIONS(2263), 1, + aux_sym_binary_expression_token3, + ACTIONS(2265), 1, aux_sym_binary_expression_token4, - ACTIONS(2755), 1, + ACTIONS(2757), 1, anon_sym_RBRACE, STATE(1310), 1, sym_text_interpolation, - ACTIONS(2227), 2, + ACTIONS(2229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2239), 2, + ACTIONS(2241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2247), 2, + ACTIONS(2249), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2253), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2243), 3, + ACTIONS(2245), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2241), 4, + ACTIONS(2243), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -118956,27 +118913,27 @@ static const uint16_t ts_small_parse_table[] = { [49932] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(2481), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(2483), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2485), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2757), 1, - aux_sym_function_static_declaration_token1, ACTIONS(2759), 1, - anon_sym_RBRACE, + aux_sym_function_static_declaration_token1, ACTIONS(2761), 1, - aux_sym_enum_case_token1, + anon_sym_RBRACE, ACTIONS(2763), 1, - aux_sym_final_modifier_token1, + aux_sym_enum_case_token1, ACTIONS(2765), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2767), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2769), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2771), 1, sym_var_modifier, STATE(1311), 1, sym_text_interpolation, @@ -118996,7 +118953,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier, STATE(1804), 1, sym__function_definition_header, - ACTIONS(2771), 3, + ACTIONS(2773), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -119011,19 +118968,19 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, [50013] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2775), 1, aux_sym_namespace_use_declaration_token3, STATE(1312), 1, sym_text_interpolation, - ACTIONS(2523), 3, + ACTIONS(2525), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2519), 25, + ACTIONS(2521), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -119050,17 +119007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [50058] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1313), 1, sym_text_interpolation, - ACTIONS(2777), 3, + ACTIONS(2779), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2775), 26, + ACTIONS(2777), 26, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -119090,27 +119047,27 @@ static const uint16_t ts_small_parse_table[] = { [50101] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(2481), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(2483), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2485), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2757), 1, + ACTIONS(2759), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2761), 1, - aux_sym_enum_case_token1, ACTIONS(2763), 1, - aux_sym_final_modifier_token1, + aux_sym_enum_case_token1, ACTIONS(2765), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2767), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2769), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2771), 1, sym_var_modifier, - ACTIONS(2779), 1, + ACTIONS(2781), 1, anon_sym_RBRACE, STATE(1314), 1, sym_text_interpolation, @@ -119130,7 +119087,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier, STATE(1804), 1, sym__function_definition_header, - ACTIONS(2771), 3, + ACTIONS(2773), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -119147,27 +119104,27 @@ static const uint16_t ts_small_parse_table[] = { [50182] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2781), 1, + ACTIONS(2783), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2784), 1, + ACTIONS(2786), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2787), 1, + ACTIONS(2789), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2790), 1, - anon_sym_RBRACE, ACTIONS(2792), 1, + anon_sym_RBRACE, + ACTIONS(2794), 1, aux_sym_enum_case_token1, - ACTIONS(2795), 1, + ACTIONS(2797), 1, aux_sym_final_modifier_token1, - ACTIONS(2798), 1, + ACTIONS(2800), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2801), 1, + ACTIONS(2803), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2804), 1, + ACTIONS(2806), 1, sym_var_modifier, - ACTIONS(2810), 1, + ACTIONS(2812), 1, anon_sym_POUND_LBRACK, STATE(1352), 1, sym_attribute_list, @@ -119186,7 +119143,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1315), 2, sym_text_interpolation, aux_sym_enum_declaration_list_repeat1, - ACTIONS(2807), 3, + ACTIONS(2809), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -119203,27 +119160,27 @@ static const uint16_t ts_small_parse_table[] = { [50261] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(2481), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(2483), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2485), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2757), 1, + ACTIONS(2759), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2761), 1, - aux_sym_enum_case_token1, ACTIONS(2763), 1, - aux_sym_final_modifier_token1, + aux_sym_enum_case_token1, ACTIONS(2765), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2767), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2769), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2771), 1, sym_var_modifier, - ACTIONS(2813), 1, + ACTIONS(2815), 1, anon_sym_RBRACE, STATE(1314), 1, aux_sym_enum_declaration_list_repeat1, @@ -119243,7 +119200,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier, STATE(1804), 1, sym__function_definition_header, - ACTIONS(2771), 3, + ACTIONS(2773), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -119258,17 +119215,17 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, [50342] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1317), 1, sym_text_interpolation, - ACTIONS(2817), 3, + ACTIONS(2819), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2815), 26, + ACTIONS(2817), 26, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -119298,27 +119255,27 @@ static const uint16_t ts_small_parse_table[] = { [50385] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, - ACTIONS(2481), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(2483), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2485), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2757), 1, + ACTIONS(2759), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2761), 1, - aux_sym_enum_case_token1, ACTIONS(2763), 1, - aux_sym_final_modifier_token1, + aux_sym_enum_case_token1, ACTIONS(2765), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2767), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2769), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2771), 1, sym_var_modifier, - ACTIONS(2819), 1, + ACTIONS(2821), 1, anon_sym_RBRACE, STATE(1315), 1, aux_sym_enum_declaration_list_repeat1, @@ -119338,7 +119295,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier, STATE(1804), 1, sym__function_definition_header, - ACTIONS(2771), 3, + ACTIONS(2773), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -119353,17 +119310,17 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, [50466] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1319), 1, sym_text_interpolation, - ACTIONS(2823), 3, + ACTIONS(2825), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2821), 25, + ACTIONS(2823), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -119390,17 +119347,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [50508] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1320), 1, sym_text_interpolation, - ACTIONS(2827), 3, + ACTIONS(2829), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2825), 25, + ACTIONS(2827), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -119427,17 +119384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [50550] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1321), 1, sym_text_interpolation, - ACTIONS(2523), 3, + ACTIONS(2525), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2519), 25, + ACTIONS(2521), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -119464,17 +119421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [50592] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1322), 1, sym_text_interpolation, - ACTIONS(2831), 3, + ACTIONS(2833), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2829), 25, + ACTIONS(2831), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -119503,22 +119460,22 @@ static const uint16_t ts_small_parse_table[] = { [50634] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2837), 1, + ACTIONS(2839), 1, anon_sym_POUND_LBRACK, STATE(1333), 1, sym_attribute_group, STATE(1323), 2, sym_text_interpolation, aux_sym_attribute_list_repeat1, - ACTIONS(2835), 5, + ACTIONS(2837), 5, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - ACTIONS(2833), 19, + ACTIONS(2835), 19, aux_sym_namespace_definition_token1, anon_sym_string, anon_sym_int, @@ -119541,9 +119498,9 @@ static const uint16_t ts_small_parse_table[] = { [50679] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1747), 1, + ACTIONS(1749), 1, anon_sym_POUND_LBRACK, STATE(1323), 1, aux_sym_attribute_list_repeat1, @@ -119551,13 +119508,13 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1333), 1, sym_attribute_group, - ACTIONS(2842), 5, + ACTIONS(2844), 5, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - ACTIONS(2840), 19, + ACTIONS(2842), 19, aux_sym_namespace_definition_token1, anon_sym_string, anon_sym_int, @@ -119578,19 +119535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [50726] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(2844), 1, + anon_sym_QMARK, + ACTIONS(2846), 1, anon_sym_LPAREN, STATE(1325), 1, sym_text_interpolation, @@ -119606,7 +119563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -119621,19 +119578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [50783] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2735), 1, sym_name, - ACTIONS(2739), 1, + ACTIONS(2741), 1, anon_sym_QMARK, - ACTIONS(2846), 1, + ACTIONS(2848), 1, anon_sym_LPAREN, STATE(1326), 1, sym_text_interpolation, @@ -119649,7 +119606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2735), 13, + ACTIONS(2737), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -119664,18 +119621,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [50840] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, + anon_sym_QMARK, STATE(1327), 1, sym_text_interpolation, STATE(1451), 1, @@ -119692,7 +119649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -119707,19 +119664,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [50897] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2735), 1, sym_name, - ACTIONS(2739), 1, + ACTIONS(2741), 1, anon_sym_QMARK, - ACTIONS(2846), 1, + ACTIONS(2848), 1, anon_sym_LPAREN, STATE(1328), 1, sym_text_interpolation, @@ -119735,7 +119692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2735), 13, + ACTIONS(2737), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -119752,18 +119709,18 @@ static const uint16_t ts_small_parse_table[] = { [50954] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1329), 1, sym_text_interpolation, - ACTIONS(2850), 6, + ACTIONS(2852), 6, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2848), 19, + ACTIONS(2850), 19, aux_sym_namespace_definition_token1, anon_sym_string, anon_sym_int, @@ -119784,18 +119741,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [50993] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, + anon_sym_QMARK, STATE(1330), 1, sym_text_interpolation, STATE(1451), 1, @@ -119812,7 +119769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -119829,18 +119786,18 @@ static const uint16_t ts_small_parse_table[] = { [51050] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1331), 1, sym_text_interpolation, - ACTIONS(2854), 6, + ACTIONS(2856), 6, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2852), 19, + ACTIONS(2854), 19, aux_sym_namespace_definition_token1, anon_sym_string, anon_sym_int, @@ -119861,19 +119818,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [51089] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, - ACTIONS(2844), 1, + anon_sym_QMARK, + ACTIONS(2846), 1, anon_sym_LPAREN, STATE(1332), 1, sym_text_interpolation, @@ -119889,7 +119846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -119906,18 +119863,18 @@ static const uint16_t ts_small_parse_table[] = { [51146] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1333), 1, sym_text_interpolation, - ACTIONS(2858), 6, + ACTIONS(2860), 6, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2856), 19, + ACTIONS(2858), 19, aux_sym_namespace_definition_token1, anon_sym_string, anon_sym_int, @@ -119938,19 +119895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [51185] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, - sym_name, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1745), 1, + ACTIONS(1706), 1, + sym_name, + ACTIONS(1747), 1, anon_sym_QMARK, - ACTIONS(2844), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, STATE(1334), 1, sym_text_interpolation, @@ -119966,7 +119923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -119981,19 +119938,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51242] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, - sym_name, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1745), 1, + ACTIONS(1706), 1, + sym_name, + ACTIONS(1747), 1, anon_sym_QMARK, - ACTIONS(2844), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, STATE(1335), 1, sym_text_interpolation, @@ -120009,7 +119966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120024,18 +119981,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51299] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, + anon_sym_QMARK, STATE(1336), 1, sym_text_interpolation, STATE(1451), 1, @@ -120052,7 +120009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120067,18 +120024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51356] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, + anon_sym_QMARK, STATE(1337), 1, sym_text_interpolation, STATE(1451), 1, @@ -120095,7 +120052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120112,18 +120069,18 @@ static const uint16_t ts_small_parse_table[] = { [51413] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1338), 1, sym_text_interpolation, - ACTIONS(2862), 6, + ACTIONS(2864), 6, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2860), 19, + ACTIONS(2862), 19, aux_sym_namespace_definition_token1, anon_sym_string, anon_sym_int, @@ -120144,18 +120101,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [51452] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, + anon_sym_QMARK, STATE(1339), 1, sym_text_interpolation, STATE(1451), 1, @@ -120172,7 +120129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120187,18 +120144,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51509] = 13, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, + anon_sym_QMARK, STATE(1340), 1, sym_text_interpolation, STATE(1451), 1, @@ -120213,7 +120170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120228,17 +120185,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51563] = 13, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, - sym_name, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1745), 1, + ACTIONS(1706), 1, + sym_name, + ACTIONS(1747), 1, anon_sym_QMARK, STATE(1341), 1, sym_text_interpolation, @@ -120254,7 +120211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120269,17 +120226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51617] = 13, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2735), 1, sym_name, - ACTIONS(2739), 1, + ACTIONS(2741), 1, anon_sym_QMARK, STATE(1342), 1, sym_text_interpolation, @@ -120295,7 +120252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2735), 13, + ACTIONS(2737), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120310,17 +120267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51671] = 13, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, - sym_name, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1745), 1, + ACTIONS(1706), 1, + sym_name, + ACTIONS(1747), 1, anon_sym_QMARK, STATE(1343), 1, sym_text_interpolation, @@ -120336,7 +120293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120351,17 +120308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51725] = 13, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2735), 1, sym_name, - ACTIONS(2739), 1, + ACTIONS(2741), 1, anon_sym_QMARK, STATE(1344), 1, sym_text_interpolation, @@ -120377,7 +120334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2735), 13, + ACTIONS(2737), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120392,18 +120349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51779] = 13, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, + ACTIONS(1570), 1, + sym_comment, + ACTIONS(1706), 1, sym_name, - ACTIONS(1718), 1, - anon_sym_QMARK, ACTIONS(1722), 1, - sym_comment, + anon_sym_QMARK, STATE(1345), 1, sym_text_interpolation, STATE(1451), 1, @@ -120418,7 +120375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120433,16 +120390,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51833] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, - sym_name, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1706), 1, + sym_name, STATE(1346), 1, sym_text_interpolation, STATE(1451), 1, @@ -120454,7 +120411,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1439), 2, sym_named_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120469,15 +120426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51880] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2735), 1, sym_name, STATE(1347), 1, sym_text_interpolation, @@ -120490,7 +120447,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1756), 2, sym_named_type, sym_primitive_type, - ACTIONS(2735), 13, + ACTIONS(2737), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120505,16 +120462,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51927] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, - sym_name, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1706), 1, + sym_name, STATE(1348), 1, sym_text_interpolation, STATE(1451), 1, @@ -120526,7 +120483,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1439), 2, sym_named_type, sym_primitive_type, - ACTIONS(1708), 13, + ACTIONS(1712), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120541,17 +120498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [51974] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1349), 1, sym_text_interpolation, - ACTIONS(2777), 3, + ACTIONS(2779), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2775), 18, + ACTIONS(2777), 18, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token3, anon_sym_string, @@ -120571,17 +120528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [52009] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1350), 1, sym_text_interpolation, - ACTIONS(2831), 3, + ACTIONS(2833), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2829), 17, + ACTIONS(2831), 17, aux_sym_namespace_definition_token1, anon_sym_string, anon_sym_int, @@ -120600,23 +120557,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [52043] = 18, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2479), 1, + ACTIONS(2481), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2483), 1, - aux_sym_namespace_use_declaration_token2, ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2487), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2489), 1, - aux_sym_final_modifier_token1, ACTIONS(2491), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2493), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2495), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2497), 1, sym_var_modifier, STATE(644), 1, aux_sym_property_declaration_repeat1, @@ -120632,7 +120589,7 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(1845), 1, sym__function_definition_header, - ACTIONS(2497), 3, + ACTIONS(2499), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -120641,23 +120598,23 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, [52102] = 15, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2483), 1, + ACTIONS(2485), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2757), 1, + ACTIONS(2759), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2763), 1, - aux_sym_final_modifier_token1, ACTIONS(2765), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2767), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2769), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2771), 1, sym_var_modifier, - ACTIONS(2864), 1, + ACTIONS(2866), 1, aux_sym_enum_case_token1, STATE(1352), 1, sym_text_interpolation, @@ -120667,7 +120624,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier, STATE(1845), 1, sym__function_definition_header, - ACTIONS(2771), 3, + ACTIONS(2773), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -120682,17 +120639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2866), 1, + ACTIONS(2868), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, + ACTIONS(2871), 1, sym_escape_sequence, - ACTIONS(2875), 1, + ACTIONS(2877), 1, sym__new_line, - ACTIONS(2878), 1, + ACTIONS(2880), 1, anon_sym_DOLLAR, - ACTIONS(2881), 1, + ACTIONS(2883), 1, sym_encapsed_string_chars_heredoc, - ACTIONS(2884), 1, + ACTIONS(2886), 1, sym_heredoc_end, STATE(1357), 1, aux_sym__interpolated_string_body_heredoc, @@ -120709,7 +120666,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1484), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - ACTIONS(2872), 4, + ACTIONS(2874), 4, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, @@ -120719,17 +120676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2886), 1, - anon_sym_LBRACE, ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2890), 1, sym_escape_sequence, - ACTIONS(2892), 1, + ACTIONS(2894), 1, sym__new_line, - ACTIONS(2895), 1, - anon_sym_DOLLAR, ACTIONS(2897), 1, - sym_encapsed_string_chars_heredoc, + anon_sym_DOLLAR, ACTIONS(2899), 1, + sym_encapsed_string_chars_heredoc, + ACTIONS(2901), 1, sym_heredoc_end, STATE(1353), 1, aux_sym_heredoc_body_repeat1, @@ -120747,7 +120704,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1484), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - ACTIONS(2890), 4, + ACTIONS(2892), 4, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, @@ -120757,17 +120714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2884), 1, - sym_heredoc_end, ACTIONS(2886), 1, - anon_sym_LBRACE, + sym_heredoc_end, ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2890), 1, sym_escape_sequence, - ACTIONS(2895), 1, - anon_sym_DOLLAR, ACTIONS(2897), 1, + anon_sym_DOLLAR, + ACTIONS(2899), 1, sym_encapsed_string_chars_heredoc, - ACTIONS(2901), 1, + ACTIONS(2903), 1, sym__new_line, STATE(1355), 1, sym_text_interpolation, @@ -120783,7 +120740,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1484), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - ACTIONS(2890), 4, + ACTIONS(2892), 4, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, @@ -120793,15 +120750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2886), 1, - anon_sym_LBRACE, ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2890), 1, sym_escape_sequence, - ACTIONS(2895), 1, - anon_sym_DOLLAR, ACTIONS(2897), 1, + anon_sym_DOLLAR, + ACTIONS(2899), 1, sym_encapsed_string_chars_heredoc, - ACTIONS(2903), 1, + ACTIONS(2905), 1, sym__new_line, STATE(1354), 1, aux_sym_heredoc_body_repeat1, @@ -120819,7 +120776,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1484), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - ACTIONS(2890), 4, + ACTIONS(2892), 4, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, @@ -120829,17 +120786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2886), 1, - anon_sym_LBRACE, ACTIONS(2888), 1, + anon_sym_LBRACE, + ACTIONS(2890), 1, sym_escape_sequence, - ACTIONS(2895), 1, - anon_sym_DOLLAR, ACTIONS(2897), 1, + anon_sym_DOLLAR, + ACTIONS(2899), 1, sym_encapsed_string_chars_heredoc, - ACTIONS(2905), 1, - sym__new_line, ACTIONS(2907), 1, + sym__new_line, + ACTIONS(2909), 1, sym_heredoc_end, STATE(1357), 1, sym_text_interpolation, @@ -120855,27 +120812,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(1484), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - ACTIONS(2890), 4, + ACTIONS(2892), 4, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, [52413] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2483), 1, + ACTIONS(2485), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2757), 1, + ACTIONS(2759), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2763), 1, - aux_sym_final_modifier_token1, ACTIONS(2765), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2767), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2769), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2771), 1, sym_var_modifier, STATE(1358), 1, sym_text_interpolation, @@ -120885,7 +120842,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier, STATE(1915), 1, sym__function_definition_header, - ACTIONS(2771), 3, + ACTIONS(2773), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -120900,17 +120857,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(2909), 1, + ACTIONS(2911), 1, anon_sym_LBRACE, - ACTIONS(2912), 1, + ACTIONS(2914), 1, sym_escape_sequence, - ACTIONS(2918), 1, - sym__new_line, ACTIONS(2920), 1, + sym__new_line, + ACTIONS(2922), 1, anon_sym_DOLLAR, - ACTIONS(2923), 1, + ACTIONS(2925), 1, sym_encapsed_string_chars_heredoc, - ACTIONS(2926), 1, + ACTIONS(2928), 1, sym_heredoc_end, STATE(1416), 1, sym_variable_name, @@ -120925,27 +120882,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(1484), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - ACTIONS(2915), 4, + ACTIONS(2917), 4, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, [52511] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2483), 1, + ACTIONS(2485), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2757), 1, + ACTIONS(2759), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2763), 1, - aux_sym_final_modifier_token1, ACTIONS(2765), 1, - aux_sym_abstract_modifier_token1, + aux_sym_final_modifier_token1, ACTIONS(2767), 1, - aux_sym_readonly_modifier_token1, + aux_sym_abstract_modifier_token1, ACTIONS(2769), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2771), 1, sym_var_modifier, STATE(1360), 1, sym_text_interpolation, @@ -120955,7 +120912,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier, STATE(1848), 1, sym__function_definition_header, - ACTIONS(2771), 3, + ACTIONS(2773), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -120968,16 +120925,16 @@ static const uint16_t ts_small_parse_table[] = { [52560] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(2928), 1, + ACTIONS(2930), 1, anon_sym_POUND_LBRACK, STATE(1367), 1, sym_attribute_group, STATE(1361), 2, sym_text_interpolation, aux_sym_attribute_list_repeat1, - ACTIONS(2835), 14, + ACTIONS(2837), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, @@ -120995,9 +120952,9 @@ static const uint16_t ts_small_parse_table[] = { [52593] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_POUND_LBRACK, STATE(1361), 1, aux_sym_attribute_list_repeat1, @@ -121005,7 +120962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1367), 1, sym_attribute_group, - ACTIONS(2842), 14, + ACTIONS(2844), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, @@ -121021,28 +120978,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, [52628] = 12, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2338), 1, + ACTIONS(2340), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2931), 1, + ACTIONS(2933), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2934), 1, + ACTIONS(2936), 1, aux_sym_final_modifier_token1, - ACTIONS(2937), 1, + ACTIONS(2939), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2940), 1, + ACTIONS(2942), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2943), 1, + ACTIONS(2945), 1, sym_var_modifier, STATE(1490), 1, sym__modifier, STATE(1363), 2, sym_text_interpolation, aux_sym_property_declaration_repeat1, - ACTIONS(2946), 3, + ACTIONS(2948), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -121053,26 +121010,26 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, [52672] = 12, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(607), 1, + ACTIONS(609), 1, anon_sym_LT_LT_LT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2949), 1, - sym_float, ACTIONS(2951), 1, - sym_integer, + sym_float, ACTIONS(2953), 1, - aux_sym__argument_name_token1, + sym_integer, ACTIONS(2955), 1, + aux_sym__argument_name_token1, + ACTIONS(2957), 1, aux_sym__argument_name_token2, STATE(1364), 1, sym_text_interpolation, - ACTIONS(603), 2, + ACTIONS(605), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(605), 2, + ACTIONS(607), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(2580), 3, @@ -121085,20 +121042,20 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc, sym_nowdoc, [52716] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1365), 1, sym_text_interpolation, - ACTIONS(2957), 6, + ACTIONS(2959), 6, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_cast_type_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(1830), 10, + ACTIONS(1832), 10, anon_sym_BSLASH, anon_sym_RBRACE, anon_sym_LPAREN, @@ -121112,15 +121069,15 @@ static const uint16_t ts_small_parse_table[] = { [52746] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2888), 1, - sym_escape_sequence, ACTIONS(2890), 1, + sym_escape_sequence, + ACTIONS(2892), 1, anon_sym_BSLASHu, - ACTIONS(2959), 1, - anon_sym_LBRACE, ACTIONS(2961), 1, + anon_sym_LBRACE, + ACTIONS(2963), 1, anon_sym_DOLLAR, STATE(1355), 1, aux_sym__interpolated_string_body_heredoc, @@ -121136,7 +121093,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1484), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - ACTIONS(2897), 4, + ACTIONS(2899), 4, sym_encapsed_string_chars_heredoc, anon_sym_SQUOTE, anon_sym_LT_QMARK, @@ -121144,11 +121101,11 @@ static const uint16_t ts_small_parse_table[] = { [52791] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1367), 1, sym_text_interpolation, - ACTIONS(2858), 15, + ACTIONS(2860), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, @@ -121167,11 +121124,11 @@ static const uint16_t ts_small_parse_table[] = { [52818] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1368), 1, sym_text_interpolation, - ACTIONS(2862), 15, + ACTIONS(2864), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, @@ -121190,11 +121147,11 @@ static const uint16_t ts_small_parse_table[] = { [52845] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1369), 1, sym_text_interpolation, - ACTIONS(2854), 15, + ACTIONS(2856), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, @@ -121213,11 +121170,11 @@ static const uint16_t ts_small_parse_table[] = { [52872] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1370), 1, sym_text_interpolation, - ACTIONS(2850), 15, + ACTIONS(2852), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, @@ -121236,11 +121193,11 @@ static const uint16_t ts_small_parse_table[] = { [52899] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1371), 1, sym_text_interpolation, - ACTIONS(1040), 14, + ACTIONS(1042), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121258,11 +121215,11 @@ static const uint16_t ts_small_parse_table[] = { [52925] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1372), 1, sym_text_interpolation, - ACTIONS(2963), 14, + ACTIONS(2965), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121280,11 +121237,11 @@ static const uint16_t ts_small_parse_table[] = { [52951] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1373), 1, sym_text_interpolation, - ACTIONS(2965), 14, + ACTIONS(2967), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121302,11 +121259,11 @@ static const uint16_t ts_small_parse_table[] = { [52977] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1374), 1, sym_text_interpolation, - ACTIONS(2967), 14, + ACTIONS(2969), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121324,11 +121281,11 @@ static const uint16_t ts_small_parse_table[] = { [53003] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1375), 1, sym_text_interpolation, - ACTIONS(2969), 14, + ACTIONS(2971), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121346,11 +121303,11 @@ static const uint16_t ts_small_parse_table[] = { [53029] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1376), 1, sym_text_interpolation, - ACTIONS(2971), 14, + ACTIONS(2973), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121368,11 +121325,11 @@ static const uint16_t ts_small_parse_table[] = { [53055] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1377), 1, sym_text_interpolation, - ACTIONS(2973), 14, + ACTIONS(2975), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121388,19 +121345,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [53081] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2975), 1, - anon_sym_LBRACE, ACTIONS(2977), 1, - sym_escape_sequence, + anon_sym_LBRACE, ACTIONS(2979), 1, + sym_escape_sequence, + ACTIONS(2981), 1, anon_sym_BSLASHu, - ACTIONS(2983), 1, - anon_sym_DQUOTE, ACTIONS(2985), 1, + anon_sym_DQUOTE, + ACTIONS(2987), 1, anon_sym_DOLLAR, STATE(1378), 1, sym_text_interpolation, @@ -121410,7 +121367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1586), 1, sym__simple_string_member_access_expression, - ACTIONS(2981), 2, + ACTIONS(2983), 2, sym_encapsed_string_chars, anon_sym_SQUOTE, STATE(1582), 2, @@ -121420,19 +121377,19 @@ static const uint16_t ts_small_parse_table[] = { sym__complex_string_part, sym__simple_string_part, [53127] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2975), 1, - anon_sym_LBRACE, ACTIONS(2977), 1, - sym_escape_sequence, + anon_sym_LBRACE, ACTIONS(2979), 1, + sym_escape_sequence, + ACTIONS(2981), 1, anon_sym_BSLASHu, - ACTIONS(2985), 1, - anon_sym_DOLLAR, ACTIONS(2987), 1, + anon_sym_DOLLAR, + ACTIONS(2989), 1, anon_sym_DQUOTE, STATE(1379), 1, sym_text_interpolation, @@ -121442,7 +121399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1586), 1, sym__simple_string_member_access_expression, - ACTIONS(2981), 2, + ACTIONS(2983), 2, sym_encapsed_string_chars, anon_sym_SQUOTE, STATE(1582), 2, @@ -121454,11 +121411,11 @@ static const uint16_t ts_small_parse_table[] = { [53173] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1380), 1, sym_text_interpolation, - ACTIONS(2971), 14, + ACTIONS(2973), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121476,11 +121433,11 @@ static const uint16_t ts_small_parse_table[] = { [53199] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1381), 1, sym_text_interpolation, - ACTIONS(1032), 14, + ACTIONS(1034), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121498,11 +121455,11 @@ static const uint16_t ts_small_parse_table[] = { [53225] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1382), 1, sym_text_interpolation, - ACTIONS(2989), 14, + ACTIONS(2991), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121520,11 +121477,11 @@ static const uint16_t ts_small_parse_table[] = { [53251] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1383), 1, sym_text_interpolation, - ACTIONS(2989), 14, + ACTIONS(2991), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121540,19 +121497,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [53277] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2975), 1, - anon_sym_LBRACE, ACTIONS(2977), 1, - sym_escape_sequence, + anon_sym_LBRACE, ACTIONS(2979), 1, + sym_escape_sequence, + ACTIONS(2981), 1, anon_sym_BSLASHu, - ACTIONS(2985), 1, + ACTIONS(2987), 1, anon_sym_DOLLAR, - ACTIONS(2991), 1, + ACTIONS(2993), 1, anon_sym_DQUOTE, STATE(1379), 1, aux_sym__interpolated_string_body, @@ -121562,7 +121519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1586), 1, sym__simple_string_member_access_expression, - ACTIONS(2981), 2, + ACTIONS(2983), 2, sym_encapsed_string_chars, anon_sym_SQUOTE, STATE(1582), 2, @@ -121574,11 +121531,11 @@ static const uint16_t ts_small_parse_table[] = { [53323] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1385), 1, sym_text_interpolation, - ACTIONS(2993), 14, + ACTIONS(2995), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121596,11 +121553,11 @@ static const uint16_t ts_small_parse_table[] = { [53349] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1386), 1, sym_text_interpolation, - ACTIONS(2995), 14, + ACTIONS(2997), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121618,11 +121575,11 @@ static const uint16_t ts_small_parse_table[] = { [53375] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1387), 1, sym_text_interpolation, - ACTIONS(2995), 14, + ACTIONS(2997), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121640,11 +121597,11 @@ static const uint16_t ts_small_parse_table[] = { [53401] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1388), 1, sym_text_interpolation, - ACTIONS(2997), 14, + ACTIONS(2999), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121662,11 +121619,11 @@ static const uint16_t ts_small_parse_table[] = { [53427] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1389), 1, sym_text_interpolation, - ACTIONS(2999), 14, + ACTIONS(3001), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121682,25 +121639,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [53453] = 13, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3003), 1, anon_sym_LBRACE, - ACTIONS(3004), 1, + ACTIONS(3006), 1, sym_escape_sequence, - ACTIONS(3007), 1, + ACTIONS(3009), 1, anon_sym_BSLASHu, - ACTIONS(3013), 1, - anon_sym_DQUOTE, ACTIONS(3015), 1, + anon_sym_DQUOTE, + ACTIONS(3017), 1, anon_sym_DOLLAR, STATE(1462), 1, sym_variable_name, STATE(1586), 1, sym__simple_string_member_access_expression, - ACTIONS(3010), 2, + ACTIONS(3012), 2, sym_encapsed_string_chars, anon_sym_SQUOTE, STATE(1390), 2, @@ -121715,11 +121672,11 @@ static const uint16_t ts_small_parse_table[] = { [53497] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1391), 1, sym_text_interpolation, - ACTIONS(3018), 14, + ACTIONS(3020), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121735,19 +121692,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [53523] = 14, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2975), 1, - anon_sym_LBRACE, ACTIONS(2977), 1, - sym_escape_sequence, + anon_sym_LBRACE, ACTIONS(2979), 1, + sym_escape_sequence, + ACTIONS(2981), 1, anon_sym_BSLASHu, - ACTIONS(2985), 1, + ACTIONS(2987), 1, anon_sym_DOLLAR, - ACTIONS(3020), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, STATE(1390), 1, aux_sym__interpolated_string_body, @@ -121757,7 +121714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1586), 1, sym__simple_string_member_access_expression, - ACTIONS(2981), 2, + ACTIONS(2983), 2, sym_encapsed_string_chars, anon_sym_SQUOTE, STATE(1582), 2, @@ -121769,11 +121726,11 @@ static const uint16_t ts_small_parse_table[] = { [53569] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1393), 1, sym_text_interpolation, - ACTIONS(2965), 14, + ACTIONS(2967), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121791,11 +121748,11 @@ static const uint16_t ts_small_parse_table[] = { [53595] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1394), 1, sym_text_interpolation, - ACTIONS(3022), 13, + ACTIONS(3024), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121812,11 +121769,11 @@ static const uint16_t ts_small_parse_table[] = { [53620] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1395), 1, sym_text_interpolation, - ACTIONS(3024), 13, + ACTIONS(3026), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121831,17 +121788,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [53645] = 13, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3026), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - anon_sym_BSLASHu, ACTIONS(3032), 1, - anon_sym_BQUOTE, + anon_sym_BSLASHu, ACTIONS(3034), 1, + anon_sym_BQUOTE, + ACTIONS(3036), 1, anon_sym_DOLLAR, STATE(1396), 1, sym_text_interpolation, @@ -121851,7 +121808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1636), 1, sym__simple_string_member_access_expression, - ACTIONS(3028), 2, + ACTIONS(3030), 2, sym_execution_string_chars, sym_escape_sequence, STATE(1637), 2, @@ -121863,11 +121820,11 @@ static const uint16_t ts_small_parse_table[] = { [53688] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1397), 1, sym_text_interpolation, - ACTIONS(1540), 13, + ACTIONS(1542), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121884,11 +121841,11 @@ static const uint16_t ts_small_parse_table[] = { [53713] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1398), 1, sym_text_interpolation, - ACTIONS(3036), 13, + ACTIONS(3038), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121905,11 +121862,11 @@ static const uint16_t ts_small_parse_table[] = { [53738] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1399), 1, sym_text_interpolation, - ACTIONS(1226), 13, + ACTIONS(1228), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121926,11 +121883,11 @@ static const uint16_t ts_small_parse_table[] = { [53763] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1400), 1, sym_text_interpolation, - ACTIONS(1302), 13, + ACTIONS(1304), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121951,12 +121908,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(1401), 1, sym_text_interpolation, - ACTIONS(1654), 4, + ACTIONS(1658), 4, sym_encapsed_string_chars_heredoc, sym_encapsed_string_chars_after_variable_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1656), 9, + ACTIONS(1660), 9, anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_LBRACK, @@ -121969,11 +121926,11 @@ static const uint16_t ts_small_parse_table[] = { [53815] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1402), 1, sym_text_interpolation, - ACTIONS(3038), 13, + ACTIONS(3040), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121988,25 +121945,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [53840] = 15, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2489), 1, - aux_sym_final_modifier_token1, ACTIONS(2491), 1, + aux_sym_final_modifier_token1, + ACTIONS(2493), 1, aux_sym_abstract_modifier_token1, - ACTIONS(3040), 1, - aux_sym_function_static_declaration_token1, ACTIONS(3042), 1, - aux_sym_namespace_use_declaration_token2, + aux_sym_function_static_declaration_token1, ACTIONS(3044), 1, - aux_sym_enum_declaration_token1, + aux_sym_namespace_use_declaration_token2, ACTIONS(3046), 1, - aux_sym_class_declaration_token1, + aux_sym_enum_declaration_token1, ACTIONS(3048), 1, - aux_sym_readonly_modifier_token1, + aux_sym_class_declaration_token1, ACTIONS(3050), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(3052), 1, aux_sym__arrow_function_header_token1, STATE(1403), 1, sym_text_interpolation, @@ -122020,17 +121977,17 @@ static const uint16_t ts_small_parse_table[] = { sym_final_modifier, sym_abstract_modifier, [53887] = 13, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3026), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3032), 1, anon_sym_BSLASHu, - ACTIONS(3034), 1, + ACTIONS(3036), 1, anon_sym_DOLLAR, - ACTIONS(3052), 1, + ACTIONS(3054), 1, anon_sym_BQUOTE, STATE(1404), 1, sym_text_interpolation, @@ -122040,7 +121997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1636), 1, sym__simple_string_member_access_expression, - ACTIONS(3028), 2, + ACTIONS(3030), 2, sym_execution_string_chars, sym_escape_sequence, STATE(1637), 2, @@ -122050,17 +122007,17 @@ static const uint16_t ts_small_parse_table[] = { sym__complex_string_part, sym__simple_string_part, [53930] = 13, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3026), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3032), 1, anon_sym_BSLASHu, - ACTIONS(3034), 1, + ACTIONS(3036), 1, anon_sym_DOLLAR, - ACTIONS(3054), 1, + ACTIONS(3056), 1, anon_sym_BQUOTE, STATE(1405), 1, sym_text_interpolation, @@ -122070,7 +122027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1636), 1, sym__simple_string_member_access_expression, - ACTIONS(3028), 2, + ACTIONS(3030), 2, sym_execution_string_chars, sym_escape_sequence, STATE(1637), 2, @@ -122082,11 +122039,11 @@ static const uint16_t ts_small_parse_table[] = { [53973] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1406), 1, sym_text_interpolation, - ACTIONS(3056), 13, + ACTIONS(3058), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122103,11 +122060,11 @@ static const uint16_t ts_small_parse_table[] = { [53998] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1407), 1, sym_text_interpolation, - ACTIONS(3058), 13, + ACTIONS(3060), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122124,11 +122081,11 @@ static const uint16_t ts_small_parse_table[] = { [54023] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1408), 1, sym_text_interpolation, - ACTIONS(3060), 13, + ACTIONS(3062), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122145,11 +122102,11 @@ static const uint16_t ts_small_parse_table[] = { [54048] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1409), 1, sym_text_interpolation, - ACTIONS(3062), 13, + ACTIONS(3064), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122166,11 +122123,11 @@ static const uint16_t ts_small_parse_table[] = { [54073] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1410), 1, sym_text_interpolation, - ACTIONS(1270), 13, + ACTIONS(1272), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122185,23 +122142,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [54098] = 12, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3066), 1, anon_sym_LBRACE, - ACTIONS(3070), 1, + ACTIONS(3072), 1, anon_sym_BSLASHu, - ACTIONS(3073), 1, - anon_sym_BQUOTE, ACTIONS(3075), 1, + anon_sym_BQUOTE, + ACTIONS(3077), 1, anon_sym_DOLLAR, STATE(1487), 1, sym_variable_name, STATE(1636), 1, sym__simple_string_member_access_expression, - ACTIONS(3067), 2, + ACTIONS(3069), 2, sym_execution_string_chars, sym_escape_sequence, STATE(1411), 2, @@ -122216,11 +122173,11 @@ static const uint16_t ts_small_parse_table[] = { [54139] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1412), 1, sym_text_interpolation, - ACTIONS(1202), 13, + ACTIONS(1204), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122237,11 +122194,11 @@ static const uint16_t ts_small_parse_table[] = { [54164] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1413), 1, sym_text_interpolation, - ACTIONS(1218), 13, + ACTIONS(1220), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122258,11 +122215,11 @@ static const uint16_t ts_small_parse_table[] = { [54189] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1414), 1, sym_text_interpolation, - ACTIONS(3078), 13, + ACTIONS(3080), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122279,11 +122236,11 @@ static const uint16_t ts_small_parse_table[] = { [54214] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1415), 1, sym_text_interpolation, - ACTIONS(3080), 13, + ACTIONS(3082), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122302,19 +122259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3084), 1, - anon_sym_DASH_GT, ACTIONS(3086), 1, + anon_sym_DASH_GT, + ACTIONS(3088), 1, anon_sym_LBRACK, - ACTIONS(3090), 1, + ACTIONS(3092), 1, sym_encapsed_string_chars_after_variable_heredoc, STATE(1416), 1, sym_text_interpolation, - ACTIONS(3088), 3, + ACTIONS(3090), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3082), 7, + ACTIONS(3084), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -122325,11 +122282,11 @@ static const uint16_t ts_small_parse_table[] = { [54272] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1417), 1, sym_text_interpolation, - ACTIONS(1286), 13, + ACTIONS(1288), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122346,11 +122303,11 @@ static const uint16_t ts_small_parse_table[] = { [54297] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1418), 1, sym_text_interpolation, - ACTIONS(3092), 13, + ACTIONS(3094), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122367,11 +122324,11 @@ static const uint16_t ts_small_parse_table[] = { [54322] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1419), 1, sym_text_interpolation, - ACTIONS(3094), 13, + ACTIONS(3096), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122386,22 +122343,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [54347] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, STATE(1420), 1, sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3096), 4, + ACTIONS(3098), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3098), 7, + ACTIONS(3100), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -122412,11 +122369,11 @@ static const uint16_t ts_small_parse_table[] = { [54378] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1421), 1, sym_text_interpolation, - ACTIONS(3100), 13, + ACTIONS(3102), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122433,11 +122390,11 @@ static const uint16_t ts_small_parse_table[] = { [54403] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1422), 1, sym_text_interpolation, - ACTIONS(3102), 13, + ACTIONS(3104), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122452,15 +122409,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [54428] = 12, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3106), 1, sym_name, - ACTIONS(3110), 1, + ACTIONS(3112), 1, anon_sym_BSLASH, STATE(1423), 1, sym_text_interpolation, @@ -122470,24 +122427,24 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2661), 1, sym_namespace_name_as_prefix, - ACTIONS(3108), 2, + ACTIONS(3110), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, STATE(1726), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [54469] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1424), 1, sym_text_interpolation, - ACTIONS(3112), 13, + ACTIONS(3114), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122504,11 +122461,11 @@ static const uint16_t ts_small_parse_table[] = { [54494] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1425), 1, sym_text_interpolation, - ACTIONS(3114), 13, + ACTIONS(3116), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122525,11 +122482,11 @@ static const uint16_t ts_small_parse_table[] = { [54519] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1426), 1, sym_text_interpolation, - ACTIONS(3116), 13, + ACTIONS(3118), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122546,11 +122503,11 @@ static const uint16_t ts_small_parse_table[] = { [54544] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1427), 1, sym_text_interpolation, - ACTIONS(3118), 13, + ACTIONS(3120), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122567,11 +122524,11 @@ static const uint16_t ts_small_parse_table[] = { [54569] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1428), 1, sym_text_interpolation, - ACTIONS(3120), 13, + ACTIONS(3122), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122586,15 +122543,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [54594] = 12, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3106), 1, sym_name, - ACTIONS(3124), 1, + ACTIONS(3126), 1, anon_sym_BSLASH, STATE(1429), 1, sym_text_interpolation, @@ -122604,24 +122561,24 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2661), 1, sym_namespace_name_as_prefix, - ACTIONS(3122), 2, + ACTIONS(3124), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, STATE(1726), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [54635] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1430), 1, sym_text_interpolation, - ACTIONS(3126), 13, + ACTIONS(3128), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122636,17 +122593,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [54660] = 13, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3026), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3032), 1, anon_sym_BSLASHu, - ACTIONS(3034), 1, + ACTIONS(3036), 1, anon_sym_DOLLAR, - ACTIONS(3128), 1, + ACTIONS(3130), 1, anon_sym_BQUOTE, STATE(1411), 1, aux_sym__interpolated_execution_operator_body, @@ -122656,7 +122613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1636), 1, sym__simple_string_member_access_expression, - ACTIONS(3028), 2, + ACTIONS(3030), 2, sym_execution_string_chars, sym_escape_sequence, STATE(1637), 2, @@ -122666,25 +122623,25 @@ static const uint16_t ts_small_parse_table[] = { sym__complex_string_part, sym__simple_string_part, [54703] = 15, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2489), 1, - aux_sym_final_modifier_token1, ACTIONS(2491), 1, + aux_sym_final_modifier_token1, + ACTIONS(2493), 1, aux_sym_abstract_modifier_token1, - ACTIONS(3040), 1, - aux_sym_function_static_declaration_token1, ACTIONS(3042), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(3044), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(3048), 1, - aux_sym_readonly_modifier_token1, ACTIONS(3050), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(3052), 1, aux_sym__arrow_function_header_token1, - ACTIONS(3130), 1, - aux_sym_enum_declaration_token1, ACTIONS(3132), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3134), 1, aux_sym_class_declaration_token1, STATE(1432), 1, sym_text_interpolation, @@ -122700,11 +122657,11 @@ static const uint16_t ts_small_parse_table[] = { [54750] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, STATE(1433), 1, sym_text_interpolation, - ACTIONS(3134), 13, + ACTIONS(3136), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122719,17 +122676,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [54775] = 12, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3136), 1, - sym_name, ACTIONS(3138), 1, + sym_name, + ACTIONS(3140), 1, anon_sym_RBRACK, STATE(1434), 1, sym_text_interpolation, @@ -122742,22 +122699,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(1893), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [54815] = 12, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3136), 1, + ACTIONS(3138), 1, sym_name, - ACTIONS(3140), 1, + ACTIONS(3142), 1, anon_sym_RBRACK, STATE(1435), 1, sym_text_interpolation, @@ -122770,18 +122727,18 @@ static const uint16_t ts_small_parse_table[] = { STATE(1893), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [54855] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(3149), 1, anon_sym_AMP, - ACTIONS(3154), 1, + ACTIONS(3156), 1, anon_sym_PIPE, STATE(1436), 1, sym_text_interpolation, @@ -122791,27 +122748,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_union_type_repeat1, STATE(1505), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3149), 3, + ACTIONS(3151), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3142), 4, + ACTIONS(3144), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, [54891] = 12, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3136), 1, + ACTIONS(3138), 1, sym_name, - ACTIONS(3156), 1, + ACTIONS(3158), 1, anon_sym_RBRACK, STATE(1437), 1, sym_text_interpolation, @@ -122824,22 +122781,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(1893), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [54931] = 12, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3136), 1, + ACTIONS(3138), 1, sym_name, - ACTIONS(3158), 1, + ACTIONS(3160), 1, anon_sym_RBRACK, STATE(1438), 1, sym_text_interpolation, @@ -122852,23 +122809,23 @@ static const uint16_t ts_small_parse_table[] = { STATE(1893), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [54971] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1439), 1, sym_text_interpolation, - ACTIONS(3160), 4, + ACTIONS(3162), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3162), 7, + ACTIONS(3164), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -122877,17 +122834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [54996] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1720), 1, - anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1921), 1, + ACTIONS(1724), 1, + anon_sym_DOLLAR, + ACTIONS(1923), 1, anon_sym_COLON_COLON, - ACTIONS(2823), 1, + ACTIONS(2825), 1, aux_sym__arrow_function_header_token1, - ACTIONS(3164), 1, + ACTIONS(3166), 1, aux_sym_namespace_use_declaration_token2, STATE(1440), 1, sym_text_interpolation, @@ -122895,24 +122852,24 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1928), 1, sym_static_variable_declaration, - ACTIONS(1630), 5, + ACTIONS(1634), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [55031] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1720), 1, - anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1921), 1, + ACTIONS(1724), 1, + anon_sym_DOLLAR, + ACTIONS(1923), 1, anon_sym_COLON_COLON, - ACTIONS(2823), 1, + ACTIONS(2825), 1, aux_sym__arrow_function_header_token1, - ACTIONS(3164), 1, + ACTIONS(3166), 1, aux_sym_namespace_use_declaration_token2, STATE(1441), 1, sym_text_interpolation, @@ -122920,29 +122877,29 @@ static const uint16_t ts_small_parse_table[] = { sym_static_variable_declaration, STATE(1927), 1, sym_variable_name, - ACTIONS(1630), 5, + ACTIONS(1634), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [55066] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(312), 1, + ACTIONS(314), 1, anon_sym_LT_LT_LT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3166), 1, + ACTIONS(3168), 1, sym_integer, STATE(1442), 1, sym_text_interpolation, STATE(2227), 1, sym__string, - ACTIONS(308), 2, + ACTIONS(310), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(310), 2, + ACTIONS(312), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(883), 4, @@ -122951,18 +122908,18 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc, sym_nowdoc, [55099] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1443), 1, sym_text_interpolation, - ACTIONS(3168), 4, + ACTIONS(3170), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3170), 7, + ACTIONS(3172), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -122971,21 +122928,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [55124] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1921), 1, + ACTIONS(1923), 1, anon_sym_COLON_COLON, - ACTIONS(1957), 1, + ACTIONS(1959), 1, anon_sym_COLON, - ACTIONS(2823), 1, + ACTIONS(2825), 1, aux_sym__arrow_function_header_token1, - ACTIONS(3172), 1, + ACTIONS(3174), 1, aux_sym_namespace_use_declaration_token2, STATE(1444), 1, sym_text_interpolation, - ACTIONS(1630), 7, + ACTIONS(1634), 7, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, @@ -122994,15 +122951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [55155] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3136), 1, + ACTIONS(3138), 1, sym_name, STATE(1445), 1, sym_text_interpolation, @@ -123015,20 +122972,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(1893), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [55192] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3106), 1, sym_name, - ACTIONS(3174), 1, + ACTIONS(3176), 1, anon_sym_BSLASH, STATE(1446), 1, sym_text_interpolation, @@ -123041,27 +122998,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(1726), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [55229] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(312), 1, + ACTIONS(314), 1, anon_sym_LT_LT_LT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3176), 1, + ACTIONS(3178), 1, sym_integer, STATE(1447), 1, sym_text_interpolation, STATE(2286), 1, sym__string, - ACTIONS(308), 2, + ACTIONS(310), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(310), 2, + ACTIONS(312), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, STATE(883), 4, @@ -123070,15 +123027,15 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc, sym_nowdoc, [55262] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3136), 1, + ACTIONS(3138), 1, sym_name, STATE(1448), 1, sym_text_interpolation, @@ -123091,22 +123048,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(1893), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [55299] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(3178), 1, - aux_sym_namespace_aliasing_clause_token1, ACTIONS(3180), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3182), 1, aux_sym_use_instead_of_clause_token1, STATE(584), 1, sym_arguments, @@ -123114,25 +123071,25 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [55334] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1450), 1, sym_text_interpolation, - ACTIONS(3182), 4, + ACTIONS(3184), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3184), 7, + ACTIONS(3186), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -123141,18 +123098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [55359] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1451), 1, sym_text_interpolation, - ACTIONS(3096), 4, + ACTIONS(3098), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3098), 7, + ACTIONS(3100), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -123161,15 +123118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [55384] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3136), 1, + ACTIONS(3138), 1, sym_name, STATE(1452), 1, sym_text_interpolation, @@ -123182,20 +123139,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(1893), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [55421] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3106), 1, sym_name, STATE(1453), 1, sym_text_interpolation, @@ -123208,20 +123165,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(1726), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [55458] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3106), 1, sym_name, - ACTIONS(3186), 1, + ACTIONS(3188), 1, anon_sym_BSLASH, STATE(1454), 1, sym_text_interpolation, @@ -123234,7 +123191,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1726), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -123245,11 +123202,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(1455), 1, sym_text_interpolation, - ACTIONS(2926), 3, + ACTIONS(2928), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(2918), 7, + ACTIONS(2920), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -123264,11 +123221,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(1456), 1, sym_text_interpolation, - ACTIONS(3190), 3, + ACTIONS(3192), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3188), 7, + ACTIONS(3190), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -123277,18 +123234,18 @@ static const uint16_t ts_small_parse_table[] = { sym__new_line, anon_sym_DOLLAR, [55543] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1457), 1, sym_text_interpolation, - ACTIONS(3192), 4, + ACTIONS(3194), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3194), 6, + ACTIONS(3196), 6, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -123296,15 +123253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [55567] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1656), 1, - anon_sym_BSLASHu, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1660), 1, + anon_sym_BSLASHu, STATE(1458), 1, sym_text_interpolation, - ACTIONS(1654), 9, + ACTIONS(1658), 9, sym_encapsed_string_chars, sym_encapsed_string_chars_after_variable, anon_sym_LBRACE, @@ -123321,11 +123278,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(1459), 1, sym_text_interpolation, - ACTIONS(1622), 3, + ACTIONS(1626), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1624), 7, + ACTIONS(1628), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -123340,11 +123297,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(1460), 1, sym_text_interpolation, - ACTIONS(1618), 3, + ACTIONS(1622), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1620), 7, + ACTIONS(1624), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -123353,42 +123310,42 @@ static const uint16_t ts_small_parse_table[] = { sym__new_line, anon_sym_DOLLAR, [55639] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1588), 1, + anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(1461), 1, sym_text_interpolation, - ACTIONS(1604), 3, + ACTIONS(1608), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [55667] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3082), 1, + ACTIONS(3084), 1, anon_sym_BSLASHu, - ACTIONS(3196), 1, - anon_sym_DASH_GT, ACTIONS(3198), 1, - anon_sym_LBRACK, + anon_sym_DASH_GT, ACTIONS(3200), 1, + anon_sym_LBRACK, + ACTIONS(3202), 1, sym_encapsed_string_chars_after_variable, STATE(1462), 1, sym_text_interpolation, - ACTIONS(3088), 6, + ACTIONS(3090), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -123402,11 +123359,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(1463), 1, sym_text_interpolation, - ACTIONS(3204), 3, + ACTIONS(3206), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3202), 7, + ACTIONS(3204), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -123421,11 +123378,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(1464), 1, sym_text_interpolation, - ACTIONS(3208), 3, + ACTIONS(3210), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3206), 7, + ACTIONS(3208), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -123434,15 +123391,15 @@ static const uint16_t ts_small_parse_table[] = { sym__new_line, anon_sym_DOLLAR, [55745] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3210), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN, + ACTIONS(3212), 1, anon_sym_RPAREN, STATE(584), 1, sym_arguments, @@ -123450,7 +123407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2079), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -123463,11 +123420,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(1466), 1, sym_text_interpolation, - ACTIONS(3214), 3, + ACTIONS(3216), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3212), 7, + ACTIONS(3214), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -123476,38 +123433,38 @@ static const uint16_t ts_small_parse_table[] = { sym__new_line, anon_sym_DOLLAR, [55801] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3218), 1, + ACTIONS(3220), 1, anon_sym_AMP, STATE(1467), 2, sym_text_interpolation, aux_sym_intersection_type_repeat1, - ACTIONS(3216), 4, + ACTIONS(3218), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3221), 4, + ACTIONS(3223), 4, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_DOLLAR, [55827] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1468), 1, sym_text_interpolation, - ACTIONS(3223), 4, + ACTIONS(3225), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3225), 6, + ACTIONS(3227), 6, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -123515,18 +123472,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [55851] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1469), 1, sym_text_interpolation, - ACTIONS(3227), 4, + ACTIONS(3229), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3229), 6, + ACTIONS(3231), 6, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -123540,11 +123497,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(1470), 1, sym_text_interpolation, - ACTIONS(1654), 3, + ACTIONS(1658), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1656), 7, + ACTIONS(1660), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -123553,18 +123510,18 @@ static const uint16_t ts_small_parse_table[] = { sym__new_line, anon_sym_DOLLAR, [55899] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1471), 1, sym_text_interpolation, - ACTIONS(3231), 4, + ACTIONS(3233), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3234), 6, + ACTIONS(3236), 6, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -123572,15 +123529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [55923] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3237), 1, + ACTIONS(3239), 1, sym_name, STATE(1472), 1, sym_text_interpolation, @@ -123591,20 +123548,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(2012), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [55957] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3239), 1, - anon_sym_COMMA, + ACTIONS(1588), 1, + anon_sym_LPAREN, ACTIONS(3241), 1, + anon_sym_COMMA, + ACTIONS(3243), 1, anon_sym_RPAREN, STATE(584), 1, sym_arguments, @@ -123612,7 +123569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2145), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -123625,11 +123582,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(1474), 1, sym_text_interpolation, - ACTIONS(3245), 3, + ACTIONS(3247), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3243), 7, + ACTIONS(3245), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -123644,11 +123601,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(1475), 1, sym_text_interpolation, - ACTIONS(3249), 3, + ACTIONS(3251), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3247), 7, + ACTIONS(3249), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -123657,19 +123614,19 @@ static const uint16_t ts_small_parse_table[] = { sym__new_line, anon_sym_DOLLAR, [56037] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1921), 1, + ACTIONS(1923), 1, anon_sym_COLON_COLON, - ACTIONS(2823), 1, + ACTIONS(2825), 1, aux_sym__arrow_function_header_token1, - ACTIONS(3172), 1, + ACTIONS(3174), 1, aux_sym_namespace_use_declaration_token2, STATE(1476), 1, sym_text_interpolation, - ACTIONS(1630), 7, + ACTIONS(1634), 7, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, @@ -123678,15 +123635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [56065] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3251), 1, + ACTIONS(3253), 1, sym_name, STATE(1477), 1, sym_text_interpolation, @@ -123697,20 +123654,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(1937), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [56099] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN, + ACTIONS(3241), 1, anon_sym_COMMA, - ACTIONS(3253), 1, + ACTIONS(3255), 1, anon_sym_RPAREN, STATE(584), 1, sym_arguments, @@ -123718,25 +123675,25 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2172), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [56131] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1479), 1, sym_text_interpolation, - ACTIONS(3216), 4, + ACTIONS(3218), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3221), 6, + ACTIONS(3223), 6, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -123744,57 +123701,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, [56155] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1588), 1, + anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(1480), 1, sym_text_interpolation, - ACTIONS(1814), 3, + ACTIONS(1816), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [56183] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(3149), 1, anon_sym_AMP, STATE(1467), 1, aux_sym_intersection_type_repeat1, STATE(1481), 1, sym_text_interpolation, - ACTIONS(3255), 4, + ACTIONS(3257), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3257), 4, + ACTIONS(3259), 4, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_DOLLAR, [56211] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3259), 1, + ACTIONS(3261), 1, sym_name, STATE(1482), 1, sym_text_interpolation, @@ -123805,20 +123762,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(1673), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [56245] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(3263), 1, sym_name, STATE(1483), 1, sym_text_interpolation, @@ -123829,7 +123786,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1790), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -123840,11 +123797,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(1484), 1, sym_text_interpolation, - ACTIONS(3088), 3, + ACTIONS(3090), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3082), 7, + ACTIONS(3084), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -123853,15 +123810,15 @@ static const uint16_t ts_small_parse_table[] = { sym__new_line, anon_sym_DOLLAR, [56303] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3263), 1, + ACTIONS(3265), 1, sym_name, STATE(1485), 1, sym_text_interpolation, @@ -123872,24 +123829,24 @@ static const uint16_t ts_small_parse_table[] = { STATE(2169), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [56337] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3267), 1, sym_name, - ACTIONS(3269), 1, + ACTIONS(3271), 1, anon_sym_LBRACE, STATE(1486), 1, sym_text_interpolation, - ACTIONS(3267), 3, + ACTIONS(3269), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -123898,34 +123855,34 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [56366] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3082), 1, + ACTIONS(3084), 1, anon_sym_BSLASHu, - ACTIONS(3271), 1, - anon_sym_DASH_GT, ACTIONS(3273), 1, - anon_sym_LBRACK, + anon_sym_DASH_GT, ACTIONS(3275), 1, + anon_sym_LBRACK, + ACTIONS(3277), 1, sym_execution_string_chars_after_variable, STATE(1487), 1, sym_text_interpolation, - ACTIONS(3088), 5, + ACTIONS(3090), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, [56395] = 4, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1488), 1, sym_text_interpolation, - ACTIONS(2823), 9, + ACTIONS(2825), 9, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_final_modifier_token1, @@ -123936,13 +123893,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, [56416] = 4, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1489), 1, sym_text_interpolation, - ACTIONS(2523), 9, + ACTIONS(2525), 9, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_final_modifier_token1, @@ -123953,13 +123910,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, [56437] = 4, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1490), 1, sym_text_interpolation, - ACTIONS(2827), 9, + ACTIONS(2829), 9, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_final_modifier_token1, @@ -123970,15 +123927,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, [56458] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(3277), 1, - sym_name, ACTIONS(3279), 1, + sym_name, + ACTIONS(3281), 1, anon_sym_LBRACE, STATE(1491), 1, sym_text_interpolation, @@ -123987,24 +123944,24 @@ static const uint16_t ts_small_parse_table[] = { STATE(684), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [56489] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(3281), 1, - sym_name, ACTIONS(3283), 1, + sym_name, + ACTIONS(3285), 1, anon_sym_LBRACE, STATE(1492), 1, sym_text_interpolation, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124013,74 +123970,74 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [56518] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3291), 1, anon_sym_PIPE, STATE(1493), 1, sym_text_interpolation, STATE(1506), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3287), 3, + ACTIONS(3289), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3285), 4, + ACTIONS(3287), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, [56545] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(3291), 1, + ACTIONS(3293), 1, anon_sym_EQ, STATE(1494), 1, sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3098), 2, + ACTIONS(3100), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3096), 4, + ACTIONS(3098), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, [56574] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1588), 1, + anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(1495), 1, sym_text_interpolation, - ACTIONS(2571), 2, + ACTIONS(2573), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [56601] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(887), 1, sym_arguments, @@ -124088,26 +124045,26 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [56630] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(3293), 1, - sym_name, ACTIONS(3295), 1, + sym_name, + ACTIONS(3297), 1, anon_sym_LBRACE, STATE(1497), 1, sym_text_interpolation, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124116,39 +124073,39 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [56659] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3303), 1, anon_sym_PIPE, STATE(1498), 1, sym_text_interpolation, STATE(1536), 1, aux_sym_union_type_repeat1, - ACTIONS(3299), 3, + ACTIONS(3301), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3297), 4, + ACTIONS(3299), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, [56686] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(3303), 1, - sym_name, ACTIONS(3305), 1, + sym_name, + ACTIONS(3307), 1, anon_sym_LBRACE, STATE(1499), 1, sym_text_interpolation, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124157,13 +124114,13 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [56715] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(1943), 1, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(804), 1, sym_arguments, @@ -124171,22 +124128,22 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [56744] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(3307), 1, - sym_name, ACTIONS(3309), 1, + sym_name, + ACTIONS(3311), 1, anon_sym_LBRACE, STATE(681), 1, sym__reserved_identifier, @@ -124195,24 +124152,24 @@ static const uint16_t ts_small_parse_table[] = { STATE(852), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [56775] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1556), 1, + ACTIONS(1558), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3313), 1, sym_name, - ACTIONS(3315), 1, + ACTIONS(3317), 1, anon_sym_LBRACE, STATE(1502), 1, sym_text_interpolation, - ACTIONS(3313), 3, + ACTIONS(3315), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124221,19 +124178,19 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [56804] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(3317), 1, - sym_name, ACTIONS(3319), 1, + sym_name, + ACTIONS(3321), 1, anon_sym_LBRACE, STATE(1503), 1, sym_text_interpolation, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124242,19 +124199,19 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [56833] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1556), 1, + ACTIONS(1558), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3321), 1, - sym_name, ACTIONS(3323), 1, + sym_name, + ACTIONS(3325), 1, anon_sym_LBRACE, STATE(1504), 1, sym_text_interpolation, - ACTIONS(3313), 3, + ACTIONS(3315), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124263,59 +124220,59 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [56862] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3291), 1, anon_sym_PIPE, STATE(1505), 1, sym_text_interpolation, STATE(1548), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3329), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3325), 4, + ACTIONS(3327), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, [56889] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3291), 1, anon_sym_PIPE, STATE(1506), 1, sym_text_interpolation, STATE(1548), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3331), 3, + ACTIONS(3333), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3329), 4, + ACTIONS(3331), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, [56916] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(3333), 1, - sym_name, ACTIONS(3335), 1, + sym_name, + ACTIONS(3337), 1, anon_sym_LBRACE, STATE(1507), 1, sym_text_interpolation, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124324,13 +124281,13 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [56945] = 4, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1508), 1, sym_text_interpolation, - ACTIONS(2777), 9, + ACTIONS(2779), 9, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_final_modifier_token1, @@ -124341,15 +124298,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, [56966] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3337), 1, - sym_name, ACTIONS(3339), 1, + sym_name, + ACTIONS(3341), 1, anon_sym_LBRACE, STATE(1509), 1, sym_text_interpolation, @@ -124358,20 +124315,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(1607), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [56997] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(3337), 1, - sym_name, ACTIONS(3339), 1, + sym_name, + ACTIONS(3341), 1, anon_sym_LBRACE, STATE(1510), 1, sym_text_interpolation, @@ -124380,20 +124337,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(808), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [57028] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3341), 1, - sym_name, ACTIONS(3343), 1, + sym_name, + ACTIONS(3345), 1, anon_sym_LBRACE, STATE(845), 1, sym__reserved_identifier, @@ -124402,20 +124359,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(770), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [57059] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(316), 1, + ACTIONS(318), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3345), 1, - sym_name, ACTIONS(3347), 1, + sym_name, + ACTIONS(3349), 1, anon_sym_LBRACE, STATE(829), 1, sym__reserved_identifier, @@ -124424,20 +124381,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(608), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [57090] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(3307), 1, - sym_name, ACTIONS(3309), 1, + sym_name, + ACTIONS(3311), 1, anon_sym_LBRACE, STATE(681), 1, sym__reserved_identifier, @@ -124446,18 +124403,18 @@ static const uint16_t ts_small_parse_table[] = { STATE(856), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [57121] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN, + ACTIONS(1726), 1, anon_sym_BSLASH, STATE(584), 1, sym_arguments, @@ -124465,64 +124422,64 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [57150] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1515), 1, sym_text_interpolation, - ACTIONS(3349), 4, + ACTIONS(3351), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3351), 5, + ACTIONS(3353), 5, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, [57173] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1588), 1, + anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(1516), 1, sym_text_interpolation, - ACTIONS(3353), 2, + ACTIONS(3355), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [57200] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3355), 1, - sym_name, ACTIONS(3357), 1, + sym_name, + ACTIONS(3359), 1, anon_sym_LBRACE, STATE(1517), 1, sym_text_interpolation, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124531,53 +124488,53 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57229] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1588), 1, + anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(1518), 1, sym_text_interpolation, - ACTIONS(3359), 2, + ACTIONS(3361), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [57256] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1588), 1, + anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(1519), 1, sym_text_interpolation, - ACTIONS(2527), 2, + ACTIONS(2529), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [57283] = 4, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1520), 1, sym_text_interpolation, - ACTIONS(2817), 9, + ACTIONS(2819), 9, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_final_modifier_token1, @@ -124588,19 +124545,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, [57304] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3361), 1, - sym_name, ACTIONS(3363), 1, + sym_name, + ACTIONS(3365), 1, anon_sym_LBRACE, STATE(1521), 1, sym_text_interpolation, - ACTIONS(3267), 3, + ACTIONS(3269), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124609,15 +124566,15 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57333] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(3307), 1, - sym_name, ACTIONS(3309), 1, + sym_name, + ACTIONS(3311), 1, anon_sym_LBRACE, STATE(681), 1, sym__reserved_identifier, @@ -124626,20 +124583,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(719), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [57364] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3277), 1, - sym_name, ACTIONS(3279), 1, + sym_name, + ACTIONS(3281), 1, anon_sym_LBRACE, STATE(1523), 1, sym_text_interpolation, @@ -124648,20 +124605,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(1576), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [57395] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3365), 1, - sym_name, ACTIONS(3367), 1, + sym_name, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1524), 1, sym_text_interpolation, @@ -124671,24 +124628,24 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2330), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [57428] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3369), 1, - sym_name, ACTIONS(3371), 1, + sym_name, + ACTIONS(3373), 1, anon_sym_LBRACE, STATE(1525), 1, sym_text_interpolation, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124697,19 +124654,19 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57457] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(316), 1, + ACTIONS(318), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3375), 1, sym_name, - ACTIONS(3377), 1, + ACTIONS(3379), 1, anon_sym_LBRACE, STATE(1526), 1, sym_text_interpolation, - ACTIONS(3375), 3, + ACTIONS(3377), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124718,15 +124675,15 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57486] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1556), 1, + ACTIONS(1558), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3379), 1, - sym_name, ACTIONS(3381), 1, + sym_name, + ACTIONS(3383), 1, anon_sym_LBRACE, STATE(685), 1, sym__reserved_identifier, @@ -124735,24 +124692,24 @@ static const uint16_t ts_small_parse_table[] = { STATE(647), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [57517] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3369), 1, - sym_name, ACTIONS(3371), 1, + sym_name, + ACTIONS(3373), 1, anon_sym_LBRACE, STATE(1528), 1, sym_text_interpolation, - ACTIONS(3383), 3, + ACTIONS(3385), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124761,19 +124718,19 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57546] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(3385), 1, - sym_name, ACTIONS(3387), 1, + sym_name, + ACTIONS(3389), 1, anon_sym_LBRACE, STATE(1529), 1, sym_text_interpolation, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124782,19 +124739,19 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57575] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(3389), 1, - sym_name, ACTIONS(3391), 1, + sym_name, + ACTIONS(3393), 1, anon_sym_LBRACE, STATE(1530), 1, sym_text_interpolation, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124803,15 +124760,15 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57604] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3393), 1, - sym_name, ACTIONS(3395), 1, + sym_name, + ACTIONS(3397), 1, anon_sym_LBRACE, STATE(1531), 1, sym_text_interpolation, @@ -124820,24 +124777,24 @@ static const uint16_t ts_small_parse_table[] = { STATE(770), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [57635] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(316), 1, + ACTIONS(318), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3397), 1, - sym_name, ACTIONS(3399), 1, + sym_name, + ACTIONS(3401), 1, anon_sym_LBRACE, STATE(1532), 1, sym_text_interpolation, - ACTIONS(3375), 3, + ACTIONS(3377), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124846,13 +124803,13 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57664] = 4, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1533), 1, sym_text_interpolation, - ACTIONS(2703), 9, + ACTIONS(2705), 9, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_final_modifier_token1, @@ -124863,19 +124820,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, [57685] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(3401), 1, - sym_name, ACTIONS(3403), 1, + sym_name, + ACTIONS(3405), 1, anon_sym_LBRACE, STATE(1534), 1, sym_text_interpolation, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124884,15 +124841,15 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57714] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1656), 1, - anon_sym_BSLASHu, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1660), 1, + anon_sym_BSLASHu, STATE(1535), 1, sym_text_interpolation, - ACTIONS(1654), 8, + ACTIONS(1658), 8, sym_execution_string_chars, sym_execution_string_chars_after_variable, anon_sym_LBRACE, @@ -124902,32 +124859,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR, [57737] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3405), 1, + ACTIONS(3407), 1, anon_sym_PIPE, STATE(1536), 2, sym_text_interpolation, aux_sym_union_type_repeat1, - ACTIONS(3229), 3, + ACTIONS(3231), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3227), 4, + ACTIONS(3229), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, [57762] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(1727), 1, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(659), 1, sym_arguments, @@ -124935,26 +124892,26 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [57791] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3355), 1, - sym_name, ACTIONS(3357), 1, + sym_name, + ACTIONS(3359), 1, anon_sym_LBRACE, STATE(1538), 1, sym_text_interpolation, - ACTIONS(3383), 3, + ACTIONS(3385), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124963,19 +124920,19 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57820] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(3408), 1, - sym_name, ACTIONS(3410), 1, + sym_name, + ACTIONS(3412), 1, anon_sym_LBRACE, STATE(1539), 1, sym_text_interpolation, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -124984,19 +124941,19 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57849] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(3412), 1, - sym_name, ACTIONS(3414), 1, + sym_name, + ACTIONS(3416), 1, anon_sym_LBRACE, STATE(1540), 1, sym_text_interpolation, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -125005,19 +124962,19 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57878] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(3416), 1, - sym_name, ACTIONS(3418), 1, + sym_name, + ACTIONS(3420), 1, anon_sym_LBRACE, STATE(1541), 1, sym_text_interpolation, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -125026,15 +124983,15 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [57907] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3307), 1, - sym_name, ACTIONS(3309), 1, + sym_name, + ACTIONS(3311), 1, anon_sym_LBRACE, STATE(681), 1, sym__reserved_identifier, @@ -125043,60 +125000,60 @@ static const uint16_t ts_small_parse_table[] = { STATE(578), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [57938] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1588), 1, + anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(1543), 1, sym_text_interpolation, - ACTIONS(2475), 2, + ACTIONS(2477), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [57965] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1588), 1, + anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(1544), 1, sym_text_interpolation, - ACTIONS(2529), 2, + ACTIONS(2531), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [57992] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3365), 1, - sym_name, ACTIONS(3367), 1, + sym_name, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1545), 1, sym_text_interpolation, @@ -125106,18 +125063,18 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2330), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [58025] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(1733), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(725), 1, sym_arguments, @@ -125125,63 +125082,63 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58054] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1588), 1, + anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(1547), 1, sym_text_interpolation, - ACTIONS(3420), 2, + ACTIONS(3422), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58081] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(3424), 1, anon_sym_PIPE, STATE(1548), 2, sym_text_interpolation, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3225), 3, + ACTIONS(3227), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3223), 4, + ACTIONS(3225), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, [58106] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1921), 1, + ACTIONS(1923), 1, anon_sym_COLON_COLON, - ACTIONS(1957), 1, + ACTIONS(1959), 1, anon_sym_COLON, STATE(1549), 1, sym_text_interpolation, - ACTIONS(1630), 7, + ACTIONS(1634), 7, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, @@ -125190,15 +125147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58131] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(3307), 1, - sym_name, ACTIONS(3309), 1, + sym_name, + ACTIONS(3311), 1, anon_sym_LBRACE, STATE(681), 1, sym__reserved_identifier, @@ -125207,18 +125164,18 @@ static const uint16_t ts_small_parse_table[] = { STATE(710), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [58162] = 4, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1551), 1, sym_text_interpolation, - ACTIONS(2831), 9, + ACTIONS(2833), 9, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_final_modifier_token1, @@ -125229,19 +125186,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, [58183] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(3425), 1, - sym_name, ACTIONS(3427), 1, + sym_name, + ACTIONS(3429), 1, anon_sym_LBRACE, STATE(1552), 1, sym_text_interpolation, - ACTIONS(3106), 3, + ACTIONS(3108), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, @@ -125250,36 +125207,36 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [58212] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3239), 1, - anon_sym_COMMA, ACTIONS(3241), 1, + anon_sym_COMMA, + ACTIONS(3243), 1, anon_sym_RPAREN, STATE(1553), 1, sym_text_interpolation, STATE(2145), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58238] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, - anon_sym_LBRACE, + ACTIONS(1588), 1, + anon_sym_LPAREN, ACTIONS(3431), 1, - aux_sym_base_clause_token1, + anon_sym_LBRACE, ACTIONS(3433), 1, + aux_sym_base_clause_token1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, STATE(919), 1, sym_declaration_list, @@ -125292,17 +125249,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(2267), 1, sym_class_interface_clause, [58272] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, + ACTIONS(1588), 1, + anon_sym_LPAREN, ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, + aux_sym_base_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1132), 1, sym_declaration_list, @@ -125315,16 +125272,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(2462), 1, sym_class_interface_clause, [58306] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, - sym_name, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1706), 1, + sym_name, STATE(1451), 1, sym_qualified_name, STATE(1556), 1, @@ -125338,76 +125295,76 @@ static const uint16_t ts_small_parse_table[] = { STATE(2658), 1, sym_namespace_name, [58340] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3210), 1, + ACTIONS(3212), 1, anon_sym_RPAREN, STATE(1557), 1, sym_text_interpolation, STATE(2079), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58366] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(973), 1, + ACTIONS(975), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3437), 1, - aux_sym_catch_clause_token1, ACTIONS(3439), 1, + aux_sym_catch_clause_token1, + ACTIONS(3441), 1, aux_sym_finally_clause_token1, STATE(1558), 1, sym_text_interpolation, STATE(1563), 1, aux_sym_try_statement_repeat1, - ACTIONS(971), 2, + ACTIONS(973), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, STATE(1749), 2, sym_catch_clause, sym_finally_clause, [58396] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1921), 1, + ACTIONS(1923), 1, anon_sym_COLON_COLON, - ACTIONS(2823), 1, + ACTIONS(2825), 1, aux_sym__arrow_function_header_token1, - ACTIONS(3164), 1, + ACTIONS(3166), 1, aux_sym_namespace_use_declaration_token2, STATE(1559), 1, sym_text_interpolation, - ACTIONS(1630), 5, + ACTIONS(1634), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58422] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, - anon_sym_LBRACE, + ACTIONS(1588), 1, + anon_sym_LPAREN, ACTIONS(3431), 1, - aux_sym_base_clause_token1, + anon_sym_LBRACE, ACTIONS(3433), 1, + aux_sym_base_clause_token1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, STATE(970), 1, sym_declaration_list, @@ -125420,32 +125377,32 @@ static const uint16_t ts_small_parse_table[] = { STATE(2347), 1, sym_class_interface_clause, [58456] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3241), 1, anon_sym_COMMA, - ACTIONS(3253), 1, + ACTIONS(3255), 1, anon_sym_RPAREN, STATE(1561), 1, sym_text_interpolation, STATE(2172), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58482] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3441), 1, - anon_sym_AMP, ACTIONS(3443), 1, + anon_sym_AMP, + ACTIONS(3445), 1, anon_sym_PIPE, STATE(1562), 1, sym_text_interpolation, @@ -125455,22 +125412,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_disjunctive_normal_form_type_repeat1, STATE(1755), 1, aux_sym_union_type_repeat1, - ACTIONS(3149), 3, + ACTIONS(3151), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, [58512] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(981), 1, + ACTIONS(983), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3445), 1, + ACTIONS(3447), 1, aux_sym_catch_clause_token1, - ACTIONS(3448), 1, + ACTIONS(3450), 1, aux_sym_finally_clause_token1, - ACTIONS(979), 2, + ACTIONS(981), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, STATE(1563), 2, @@ -125480,17 +125437,17 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_clause, sym_finally_clause, [58540] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, + ACTIONS(1588), 1, + anon_sym_LPAREN, ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, + aux_sym_base_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1130), 1, sym_declaration_list, @@ -125503,16 +125460,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(2271), 1, sym_class_interface_clause, [58574] = 11, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, - sym_name, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1706), 1, + sym_name, STATE(1451), 1, sym_qualified_name, STATE(1565), 1, @@ -125526,15 +125483,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2658), 1, sym_namespace_name, [58608] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(3453), 1, - anon_sym_COMMA, ACTIONS(3455), 1, + anon_sym_COMMA, + ACTIONS(3457), 1, anon_sym_LBRACE, STATE(1391), 1, sym_use_list, @@ -125544,20 +125501,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_base_clause_repeat1, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3451), 2, + ACTIONS(3453), 2, sym__automatic_semicolon, anon_sym_SEMI, [58640] = 10, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(218), 1, + ACTIONS(220), 1, anon_sym_BSLASH, - ACTIONS(565), 1, + ACTIONS(567), 1, aux_sym_namespace_definition_token1, - ACTIONS(1702), 1, - sym_name, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1706), 1, + sym_name, STATE(1451), 1, sym_qualified_name, STATE(1567), 1, @@ -125569,99 +125526,99 @@ static const uint16_t ts_small_parse_table[] = { STATE(2658), 1, sym_namespace_name, [58671] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1733), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(725), 1, sym_arguments, STATE(1568), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58694] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1727), 1, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(659), 1, sym_arguments, STATE(1569), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58717] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3178), 1, - aux_sym_namespace_aliasing_clause_token1, ACTIONS(3180), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3182), 1, aux_sym_use_instead_of_clause_token1, STATE(1570), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58740] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1571), 1, sym_text_interpolation, - ACTIONS(3420), 2, + ACTIONS(3422), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58761] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1733), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(729), 1, sym_arguments, STATE(1572), 1, sym_text_interpolation, - ACTIONS(1785), 5, + ACTIONS(1787), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58784] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3459), 1, anon_sym_BSLASHu, STATE(1573), 1, sym_text_interpolation, - ACTIONS(3013), 6, + ACTIONS(3015), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -125669,68 +125626,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [58805] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(3461), 1, + ACTIONS(3463), 1, anon_sym_DASH, STATE(1574), 1, sym_text_interpolation, STATE(2681), 1, sym__simple_string_array_access_argument, - ACTIONS(3459), 2, + ACTIONS(3461), 2, sym_integer, sym_name, STATE(2673), 2, sym__simple_string_subscript_unary_expression, sym_variable_name, [58832] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1733), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(722), 1, sym_arguments, STATE(1575), 1, sym_text_interpolation, - ACTIONS(1781), 5, + ACTIONS(1783), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58855] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1733), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(729), 1, sym_arguments, STATE(1576), 1, sym_text_interpolation, - ACTIONS(1580), 5, + ACTIONS(1584), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58878] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1624), 1, - anon_sym_BSLASHu, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1628), 1, + anon_sym_BSLASHu, STATE(1577), 1, sym_text_interpolation, - ACTIONS(1622), 6, + ACTIONS(1626), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -125738,29 +125695,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [58899] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1578), 1, sym_text_interpolation, - ACTIONS(3359), 2, + ACTIONS(3361), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58920] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, - ACTIONS(3463), 1, + ACTIONS(3465), 1, sym_name, STATE(1579), 1, sym_text_interpolation, @@ -125768,53 +125725,53 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2465), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [58947] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(887), 1, sym_arguments, STATE(1580), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58970] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1581), 1, sym_text_interpolation, - ACTIONS(3353), 2, + ACTIONS(3355), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [58991] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3082), 1, + ACTIONS(3084), 1, anon_sym_BSLASHu, STATE(1582), 1, sym_text_interpolation, - ACTIONS(3088), 6, + ACTIONS(3090), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -125822,66 +125779,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [59012] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(797), 1, sym_arguments, STATE(1583), 1, sym_text_interpolation, - ACTIONS(1785), 5, + ACTIONS(1787), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59035] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(784), 1, sym_arguments, STATE(1584), 1, sym_text_interpolation, - ACTIONS(1781), 5, + ACTIONS(1783), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59058] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1733), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, STATE(725), 1, sym_arguments, STATE(1585), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59081] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3202), 1, + ACTIONS(3204), 1, anon_sym_BSLASHu, STATE(1586), 1, sym_text_interpolation, - ACTIONS(3204), 6, + ACTIONS(3206), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -125889,32 +125846,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [59102] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(804), 1, sym_arguments, STATE(1587), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59125] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3467), 1, + ACTIONS(3469), 1, anon_sym_BSLASHu, STATE(1588), 1, sym_text_interpolation, - ACTIONS(3465), 6, + ACTIONS(3467), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -125922,15 +125879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [59146] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3473), 1, anon_sym_BSLASHu, STATE(1589), 1, sym_text_interpolation, - ACTIONS(3469), 6, + ACTIONS(3471), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -125938,83 +125895,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [59167] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1588), 1, + anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(1590), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59190] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1727), 1, + ACTIONS(1729), 1, anon_sym_LPAREN, STATE(659), 1, sym_arguments, STATE(1591), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59213] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1588), 1, + anon_sym_LPAREN, STATE(584), 1, sym_arguments, STATE(1592), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59236] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1943), 1, + ACTIONS(1945), 1, anon_sym_LPAREN, STATE(804), 1, sym_arguments, STATE(1593), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59259] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3475), 1, + ACTIONS(3477), 1, aux_sym_enum_case_token1, - ACTIONS(3478), 1, + ACTIONS(3480), 1, aux_sym_match_default_expression_token1, - ACTIONS(3473), 2, + ACTIONS(3475), 2, anon_sym_RBRACE, aux_sym_switch_block_token1, STATE(1594), 2, @@ -126024,13 +125981,13 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, [59284] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3483), 1, anon_sym_AMP, - ACTIONS(3487), 1, + ACTIONS(3489), 1, anon_sym_PIPE, STATE(1595), 1, sym_text_interpolation, @@ -126040,36 +125997,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_disjunctive_normal_form_type_repeat1, STATE(1798), 1, aux_sym_intersection_type_repeat1, - ACTIONS(3149), 2, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, [59313] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, STATE(1596), 1, sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3098), 5, + ACTIONS(3100), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, [59336] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1620), 1, - anon_sym_BSLASHu, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1624), 1, + anon_sym_BSLASHu, STATE(1597), 1, sym_text_interpolation, - ACTIONS(1618), 6, + ACTIONS(1622), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -126077,49 +126034,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [59357] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(887), 1, sym_arguments, STATE(1598), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59380] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1676), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1680), 1, + anon_sym_LPAREN, STATE(621), 1, sym_arguments, STATE(1599), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59403] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1656), 1, - anon_sym_BSLASHu, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1660), 1, + anon_sym_BSLASHu, STATE(1600), 1, sym_text_interpolation, - ACTIONS(1654), 6, + ACTIONS(1658), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -126127,13 +126084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [59424] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(3491), 1, + ACTIONS(3493), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1601), 1, sym_text_interpolation, @@ -126141,34 +126098,34 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_aliasing_clause, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3489), 3, + ACTIONS(3491), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, [59451] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1602), 1, sym_text_interpolation, - ACTIONS(1955), 3, + ACTIONS(1957), 3, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - ACTIONS(1953), 4, + ACTIONS(1955), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, [59472] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, - ACTIONS(3463), 1, + ACTIONS(3465), 1, sym_name, STATE(1603), 1, sym_text_interpolation, @@ -126176,20 +126133,20 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2465), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [59499] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3245), 1, anon_sym_BSLASHu, STATE(1604), 1, sym_text_interpolation, - ACTIONS(3245), 6, + ACTIONS(3247), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -126197,30 +126154,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [59520] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(893), 1, sym_arguments, STATE(1605), 1, sym_text_interpolation, - ACTIONS(1781), 5, + ACTIONS(1783), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59543] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3493), 1, + ACTIONS(3495), 1, sym_name, STATE(1606), 1, sym_text_interpolation, @@ -126228,37 +126185,37 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_modifier, STATE(2427), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [59570] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(879), 1, sym_arguments, STATE(1607), 1, sym_text_interpolation, - ACTIONS(1580), 5, + ACTIONS(1584), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59593] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3214), 1, anon_sym_BSLASHu, STATE(1608), 1, sym_text_interpolation, - ACTIONS(3214), 6, + ACTIONS(3216), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -126266,15 +126223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [59614] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(3208), 1, anon_sym_BSLASHu, STATE(1609), 1, sym_text_interpolation, - ACTIONS(3208), 6, + ACTIONS(3210), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -126282,70 +126239,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [59635] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(1951), 1, anon_sym_LPAREN, STATE(879), 1, sym_arguments, STATE(1610), 1, sym_text_interpolation, - ACTIONS(1785), 5, + ACTIONS(1787), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [59658] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(3461), 1, + ACTIONS(3463), 1, anon_sym_DASH, STATE(1611), 1, sym_text_interpolation, STATE(2588), 1, sym__simple_string_array_access_argument, - ACTIONS(3459), 2, + ACTIONS(3461), 2, sym_integer, sym_name, STATE(2673), 2, sym__simple_string_subscript_unary_expression, sym_variable_name, [59685] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(3461), 1, + ACTIONS(3463), 1, anon_sym_DASH, STATE(1612), 1, sym_text_interpolation, STATE(2584), 1, sym__simple_string_array_access_argument, - ACTIONS(3459), 2, + ACTIONS(3461), 2, sym_integer, sym_name, STATE(2673), 2, sym__simple_string_subscript_unary_expression, sym_variable_name, [59712] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, + aux_sym_base_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1050), 1, sym_declaration_list, @@ -126356,15 +126313,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2482), 1, sym_class_interface_clause, [59740] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, + aux_sym_base_clause_token1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(443), 1, sym_declaration_list, @@ -126375,15 +126332,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2243), 1, sym_class_interface_clause, [59768] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_RBRACE, ACTIONS(3499), 1, - aux_sym_enum_case_token1, + anon_sym_RBRACE, ACTIONS(3501), 1, + aux_sym_enum_case_token1, + ACTIONS(3503), 1, aux_sym_match_default_expression_token1, STATE(1615), 1, sym_text_interpolation, @@ -126393,15 +126350,15 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, [59794] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3499), 1, - aux_sym_enum_case_token1, ACTIONS(3501), 1, - aux_sym_match_default_expression_token1, + aux_sym_enum_case_token1, ACTIONS(3503), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3505), 1, anon_sym_RBRACE, STATE(1594), 1, aux_sym_switch_block_repeat1, @@ -126411,15 +126368,15 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, [59820] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3505), 1, - aux_sym_if_statement_token2, ACTIONS(3507), 1, - aux_sym_else_if_clause_token1, + aux_sym_if_statement_token2, ACTIONS(3509), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3511), 1, aux_sym_else_clause_token1, STATE(1617), 1, sym_text_interpolation, @@ -126430,26 +126387,26 @@ static const uint16_t ts_small_parse_table[] = { STATE(2556), 1, sym_else_clause_2, [59848] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1624), 1, - anon_sym_BSLASHu, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1628), 1, + anon_sym_BSLASHu, STATE(1618), 1, sym_text_interpolation, - ACTIONS(1622), 5, + ACTIONS(1626), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, [59868] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3511), 1, + ACTIONS(3513), 1, sym_name, STATE(1619), 1, sym_text_interpolation, @@ -126457,20 +126414,20 @@ static const uint16_t ts_small_parse_table[] = { sym_const_element, STATE(2596), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [59892] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, + aux_sym_base_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1620), 1, sym_text_interpolation, @@ -126481,15 +126438,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2460), 1, sym_class_interface_clause, [59920] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(939), 1, sym_compound_statement, @@ -126500,15 +126457,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2379), 1, sym__return_type, [59948] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, + aux_sym_base_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1622), 1, sym_text_interpolation, @@ -126519,44 +126476,44 @@ static const uint16_t ts_small_parse_table[] = { STATE(2373), 1, sym_class_interface_clause, [59976] = 6, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, STATE(1623), 1, sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3517), 4, + ACTIONS(3519), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, [59998] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1620), 1, - anon_sym_BSLASHu, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1624), 1, + anon_sym_BSLASHu, STATE(1624), 1, sym_text_interpolation, - ACTIONS(1618), 5, + ACTIONS(1622), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, [60018] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(3519), 1, + ACTIONS(3521), 1, anon_sym_COMMA, STATE(1625), 1, sym_text_interpolation, @@ -126564,19 +126521,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_base_clause_repeat1, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3521), 2, + ACTIONS(3523), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, [60044] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3507), 1, - aux_sym_else_if_clause_token1, ACTIONS(3509), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3511), 1, aux_sym_else_clause_token1, - ACTIONS(3523), 1, + ACTIONS(3525), 1, aux_sym_if_statement_token2, STATE(1626), 1, sym_text_interpolation, @@ -126587,15 +126544,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2571), 1, sym_else_clause_2, [60072] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(952), 1, sym_compound_statement, @@ -126606,15 +126563,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2369), 1, sym__return_type, [60100] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3499), 1, - aux_sym_enum_case_token1, ACTIONS(3501), 1, + aux_sym_enum_case_token1, + ACTIONS(3503), 1, aux_sym_match_default_expression_token1, - ACTIONS(3525), 1, + ACTIONS(3527), 1, aux_sym_switch_block_token1, STATE(1628), 1, sym_text_interpolation, @@ -126624,15 +126581,15 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, [60126] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3499), 1, - aux_sym_enum_case_token1, ACTIONS(3501), 1, + aux_sym_enum_case_token1, + ACTIONS(3503), 1, aux_sym_match_default_expression_token1, - ACTIONS(3527), 1, + ACTIONS(3529), 1, anon_sym_RBRACE, STATE(1594), 1, aux_sym_switch_block_repeat1, @@ -126642,11 +126599,11 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, [60152] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3511), 1, + ACTIONS(3513), 1, sym_name, STATE(1630), 1, sym_text_interpolation, @@ -126654,20 +126611,20 @@ static const uint16_t ts_small_parse_table[] = { sym_const_element, STATE(2596), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [60176] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, - anon_sym_LBRACE, ACTIONS(3431), 1, - aux_sym_base_clause_token1, + anon_sym_LBRACE, ACTIONS(3433), 1, + aux_sym_base_clause_token1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, STATE(969), 1, sym_declaration_list, @@ -126678,15 +126635,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2341), 1, sym_class_interface_clause, [60204] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(962), 1, sym_compound_statement, @@ -126697,13 +126654,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(2298), 1, sym__return_type, [60232] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COMMA, ACTIONS(3455), 1, + anon_sym_COMMA, + ACTIONS(3457), 1, anon_sym_LBRACE, STATE(1388), 1, sym_use_list, @@ -126711,19 +126668,19 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1772), 1, aux_sym_base_clause_repeat1, - ACTIONS(3529), 2, + ACTIONS(3531), 2, sym__automatic_semicolon, anon_sym_SEMI, [60258] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(961), 1, sym_compound_statement, @@ -126734,15 +126691,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2295), 1, sym__return_type, [60286] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, - anon_sym_LBRACE, ACTIONS(3431), 1, - aux_sym_base_clause_token1, + anon_sym_LBRACE, ACTIONS(3433), 1, + aux_sym_base_clause_token1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, STATE(946), 1, sym_declaration_list, @@ -126753,45 +126710,45 @@ static const uint16_t ts_small_parse_table[] = { STATE(2408), 1, sym_class_interface_clause, [60314] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3202), 1, + ACTIONS(3204), 1, anon_sym_BSLASHu, STATE(1636), 1, sym_text_interpolation, - ACTIONS(3204), 5, + ACTIONS(3206), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, [60334] = 5, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3082), 1, + ACTIONS(3084), 1, anon_sym_BSLASHu, STATE(1637), 1, sym_text_interpolation, - ACTIONS(3088), 5, + ACTIONS(3090), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, [60354] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3507), 1, - aux_sym_else_if_clause_token1, ACTIONS(3509), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3511), 1, aux_sym_else_clause_token1, - ACTIONS(3531), 1, + ACTIONS(3533), 1, aux_sym_if_statement_token2, STATE(1638), 1, sym_text_interpolation, @@ -126802,15 +126759,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2555), 1, sym_else_clause_2, [60382] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3499), 1, - aux_sym_enum_case_token1, ACTIONS(3501), 1, + aux_sym_enum_case_token1, + ACTIONS(3503), 1, aux_sym_match_default_expression_token1, - ACTIONS(3533), 1, + ACTIONS(3535), 1, aux_sym_switch_block_token1, STATE(1594), 1, aux_sym_switch_block_repeat1, @@ -126820,15 +126777,15 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, [60408] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(999), 1, + ACTIONS(1001), 1, aux_sym_while_statement_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3537), 1, aux_sym_else_if_clause_token1, - ACTIONS(3538), 1, + ACTIONS(3540), 1, aux_sym_else_clause_token1, STATE(1640), 1, sym_text_interpolation, @@ -126839,15 +126796,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2077), 1, sym_else_if_clause, [60436] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1111), 1, sym_compound_statement, @@ -126858,15 +126815,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2263), 1, sym__return_type, [60464] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(989), 1, + ACTIONS(991), 1, aux_sym_while_statement_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3543), 1, - aux_sym_else_if_clause_token1, ACTIONS(3545), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3547), 1, aux_sym_else_clause_token1, STATE(1642), 1, sym_text_interpolation, @@ -126877,15 +126834,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2077), 1, sym_else_if_clause, [60492] = 8, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3499), 1, - aux_sym_enum_case_token1, ACTIONS(3501), 1, + aux_sym_enum_case_token1, + ACTIONS(3503), 1, aux_sym_match_default_expression_token1, - ACTIONS(3547), 1, + ACTIONS(3549), 1, aux_sym_switch_block_token1, STATE(1594), 1, aux_sym_switch_block_repeat1, @@ -126895,15 +126852,15 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, [60518] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(989), 1, + ACTIONS(991), 1, aux_sym_while_statement_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3551), 1, aux_sym_else_if_clause_token1, - ACTIONS(3552), 1, + ACTIONS(3554), 1, aux_sym_else_clause_token1, STATE(1640), 1, aux_sym_if_statement_repeat1, @@ -126914,15 +126871,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2077), 1, sym_else_if_clause, [60546] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1085), 1, sym_compound_statement, @@ -126933,11 +126890,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(2224), 1, sym__return_type, [60574] = 7, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3511), 1, + ACTIONS(3513), 1, sym_name, STATE(1646), 1, sym_text_interpolation, @@ -126945,20 +126902,20 @@ static const uint16_t ts_small_parse_table[] = { sym_const_element, STATE(2596), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, [60598] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, + aux_sym_base_clause_token1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(455), 1, sym_declaration_list, @@ -126969,15 +126926,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2236), 1, sym_class_interface_clause, [60626] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, + aux_sym_base_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1648), 1, sym_text_interpolation, @@ -126988,15 +126945,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2431), 1, sym_class_interface_clause, [60654] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, + aux_sym_base_clause_token1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(436), 1, sym_declaration_list, @@ -127007,15 +126964,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2423), 1, sym_class_interface_clause, [60682] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1062), 1, sym_compound_statement, @@ -127026,15 +126983,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2428), 1, sym__return_type, [60710] = 9, - ACTIONS(18), 1, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1122), 1, sym_compound_statement, @@ -127044,14 +127001,18 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2467), 1, sym__return_type, - [60738] = 8, + [60738] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3557), 1, sym_php_tag, ACTIONS(3559), 1, + aux_sym_text_token1, + ACTIONS(3561), 1, + aux_sym_text_token2, + ACTIONS(3563), 1, sym__eof, STATE(1652), 1, sym_text_interpolation, @@ -127059,19 +127020,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_text_repeat1, STATE(2234), 1, sym_text, - ACTIONS(3557), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [60764] = 9, - ACTIONS(18), 1, + [60766] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(943), 1, sym_compound_statement, @@ -127081,16 +127039,16 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2445), 1, sym__return_type, - [60792] = 9, - ACTIONS(18), 1, + [60794] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1067), 1, sym_compound_statement, @@ -127100,31 +127058,31 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2433), 1, sym__return_type, - [60820] = 5, - ACTIONS(18), 1, + [60822] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3561), 1, + ACTIONS(3565), 1, anon_sym_BSLASHu, STATE(1655), 1, sym_text_interpolation, - ACTIONS(3073), 5, + ACTIONS(3075), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [60840] = 9, - ACTIONS(18), 1, + [60842] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(942), 1, sym_compound_statement, @@ -127134,16 +127092,16 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2454), 1, sym__return_type, - [60868] = 9, - ACTIONS(18), 1, + [60870] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, + aux_sym_base_clause_token1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(445), 1, sym_declaration_list, @@ -127153,16 +127111,16 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2420), 1, sym_class_interface_clause, - [60896] = 9, - ACTIONS(18), 1, + [60898] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, + aux_sym_base_clause_token1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(448), 1, sym_declaration_list, @@ -127172,16 +127130,16 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2487), 1, sym_class_interface_clause, - [60924] = 9, - ACTIONS(18), 1, + [60926] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, + aux_sym_base_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1123), 1, sym_declaration_list, @@ -127191,16 +127149,16 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2277), 1, sym_class_interface_clause, - [60952] = 9, - ACTIONS(18), 1, + [60954] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(999), 1, + ACTIONS(1001), 1, aux_sym_while_statement_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3543), 1, - aux_sym_else_if_clause_token1, ACTIONS(3545), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3547), 1, aux_sym_else_clause_token1, STATE(1660), 1, sym_text_interpolation, @@ -127210,16 +127168,16 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2077), 1, sym_else_if_clause, - [60980] = 9, - ACTIONS(18), 1, + [60982] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, + aux_sym_base_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1661), 1, sym_text_interpolation, @@ -127229,12 +127187,12 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2475), 1, sym_class_interface_clause, - [61008] = 7, - ACTIONS(18), 1, + [61010] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3511), 1, + ACTIONS(3513), 1, sym_name, STATE(1662), 1, sym_text_interpolation, @@ -127242,50 +127200,50 @@ static const uint16_t ts_small_parse_table[] = { sym_const_element, STATE(2596), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [61032] = 5, - ACTIONS(18), 1, + [61034] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(3208), 1, anon_sym_BSLASHu, STATE(1663), 1, sym_text_interpolation, - ACTIONS(3208), 5, + ACTIONS(3210), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [61052] = 5, - ACTIONS(18), 1, + [61054] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3212), 1, + ACTIONS(3214), 1, anon_sym_BSLASHu, STATE(1664), 1, sym_text_interpolation, - ACTIONS(3214), 5, + ACTIONS(3216), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [61072] = 9, - ACTIONS(18), 1, + [61074] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, + aux_sym_base_clause_token1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(454), 1, sym_declaration_list, @@ -127295,16 +127253,16 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2332), 1, sym_class_interface_clause, - [61100] = 8, - ACTIONS(18), 1, + [61102] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3499), 1, - aux_sym_enum_case_token1, ACTIONS(3501), 1, + aux_sym_enum_case_token1, + ACTIONS(3503), 1, aux_sym_match_default_expression_token1, - ACTIONS(3563), 1, + ACTIONS(3567), 1, aux_sym_switch_block_token1, STATE(1643), 1, aux_sym_switch_block_repeat1, @@ -127313,16 +127271,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(1806), 2, sym_case_statement, sym_default_statement, - [61126] = 8, - ACTIONS(18), 1, + [61128] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3499), 1, - aux_sym_enum_case_token1, ACTIONS(3501), 1, + aux_sym_enum_case_token1, + ACTIONS(3503), 1, aux_sym_match_default_expression_token1, - ACTIONS(3565), 1, + ACTIONS(3569), 1, anon_sym_RBRACE, STATE(1616), 1, aux_sym_switch_block_repeat1, @@ -127331,16 +127289,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(1806), 2, sym_case_statement, sym_default_statement, - [61152] = 9, - ACTIONS(18), 1, + [61154] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(922), 1, sym_compound_statement, @@ -127350,16 +127308,16 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2461), 1, sym__return_type, - [61180] = 9, - ACTIONS(18), 1, + [61182] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3507), 1, - aux_sym_else_if_clause_token1, ACTIONS(3509), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3511), 1, aux_sym_else_clause_token1, - ACTIONS(3567), 1, + ACTIONS(3571), 1, aux_sym_if_statement_token2, STATE(1617), 1, aux_sym_if_statement_repeat2, @@ -127369,12 +127327,12 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2631), 1, sym_else_clause_2, - [61208] = 7, - ACTIONS(18), 1, + [61210] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3511), 1, + ACTIONS(3513), 1, sym_name, STATE(1670), 1, sym_text_interpolation, @@ -127382,33 +127340,33 @@ static const uint16_t ts_small_parse_table[] = { sym_const_element, STATE(2596), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [61232] = 5, - ACTIONS(18), 1, + [61234] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1656), 1, - anon_sym_BSLASHu, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1660), 1, + anon_sym_BSLASHu, STATE(1671), 1, sym_text_interpolation, - ACTIONS(1654), 5, + ACTIONS(1658), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [61252] = 8, - ACTIONS(18), 1, + [61254] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN, + ACTIONS(1726), 1, anon_sym_BSLASH, STATE(1672), 1, sym_text_interpolation, @@ -127416,17 +127374,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_name_repeat1, STATE(2450), 1, sym_arguments, - ACTIONS(3569), 2, + ACTIONS(3573), 2, anon_sym_COMMA, anon_sym_RBRACK, - [61278] = 8, - ACTIONS(18), 1, + [61280] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COMMA, ACTIONS(3455), 1, + anon_sym_COMMA, + ACTIONS(3457), 1, anon_sym_LBRACE, STATE(1391), 1, sym_use_list, @@ -127434,15 +127392,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_base_clause_repeat1, STATE(1673), 1, sym_text_interpolation, - ACTIONS(3451), 2, + ACTIONS(3453), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61304] = 7, - ACTIONS(18), 1, + [61306] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3511), 1, + ACTIONS(3513), 1, sym_name, STATE(1674), 1, sym_text_interpolation, @@ -127450,20 +127408,20 @@ static const uint16_t ts_small_parse_table[] = { sym_const_element, STATE(2596), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [61328] = 9, - ACTIONS(18), 1, + [61330] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, + aux_sym_base_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1675), 1, sym_text_interpolation, @@ -127473,31 +127431,31 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2453), 1, sym_class_interface_clause, - [61356] = 5, - ACTIONS(18), 1, + [61358] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3577), 1, anon_sym_BSLASHu, STATE(1676), 1, sym_text_interpolation, - ACTIONS(3571), 5, + ACTIONS(3575), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [61376] = 9, - ACTIONS(18), 1, + [61378] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_base_clause_token1, ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, + aux_sym_base_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1677), 1, sym_text_interpolation, @@ -127507,12 +127465,12 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2245), 1, sym_class_interface_clause, - [61404] = 7, - ACTIONS(18), 1, + [61406] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3511), 1, + ACTIONS(3513), 1, sym_name, STATE(1678), 1, sym_text_interpolation, @@ -127520,20 +127478,20 @@ static const uint16_t ts_small_parse_table[] = { sym_const_element, STATE(2596), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [61428] = 9, - ACTIONS(18), 1, + [61430] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1075), 1, sym_compound_statement, @@ -127543,16 +127501,16 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2416), 1, sym__return_type, - [61456] = 9, - ACTIONS(18), 1, + [61458] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(912), 1, sym_compound_statement, @@ -127562,16 +127520,16 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2230), 1, sym__return_type, - [61484] = 9, - ACTIONS(18), 1, + [61486] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1100), 1, sym_compound_statement, @@ -127581,16 +127539,16 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2354), 1, sym__return_type, - [61512] = 9, - ACTIONS(18), 1, + [61514] = 9, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3515), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1071), 1, sym_compound_statement, @@ -127600,139 +127558,139 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2367), 1, sym__return_type, - [61540] = 5, - ACTIONS(18), 1, + [61542] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3245), 1, anon_sym_BSLASHu, STATE(1683), 1, sym_text_interpolation, - ACTIONS(3245), 5, + ACTIONS(3247), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [61560] = 6, - ACTIONS(18), 1, + [61562] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3575), 1, + ACTIONS(3579), 1, anon_sym_PIPE, STATE(1684), 1, sym_text_interpolation, STATE(1687), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3287), 3, + ACTIONS(3289), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61581] = 4, - ACTIONS(18), 1, + [61583] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1685), 1, sym_text_interpolation, - ACTIONS(3170), 5, + ACTIONS(3172), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [61598] = 7, - ACTIONS(18), 1, + [61600] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3583), 1, anon_sym_BSLASH, STATE(1686), 1, sym_text_interpolation, STATE(2140), 1, sym_compound_statement, - ACTIONS(3577), 2, + ACTIONS(3581), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61621] = 6, - ACTIONS(18), 1, + [61623] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3575), 1, + ACTIONS(3579), 1, anon_sym_PIPE, STATE(1687), 1, sym_text_interpolation, STATE(1728), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3331), 3, + ACTIONS(3333), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61642] = 8, - ACTIONS(18), 1, + [61644] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3581), 1, + ACTIONS(3585), 1, anon_sym_LBRACE, - ACTIONS(3583), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3585), 1, + ACTIONS(3589), 1, anon_sym_DASH_GT, - ACTIONS(3587), 1, + ACTIONS(3591), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3589), 1, + ACTIONS(3593), 1, anon_sym_LBRACK, STATE(1688), 1, sym_text_interpolation, - [61667] = 7, - ACTIONS(18), 1, + [61669] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1013), 1, - aux_sym_while_statement_token1, ACTIONS(1015), 1, + aux_sym_while_statement_token1, + ACTIONS(1017), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3591), 1, + ACTIONS(3595), 1, aux_sym_else_if_clause_token1, STATE(2077), 1, sym_else_if_clause, STATE(1689), 2, sym_text_interpolation, aux_sym_if_statement_repeat1, - [61690] = 7, - ACTIONS(18), 1, + [61692] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3594), 1, + ACTIONS(3598), 1, sym_name, - ACTIONS(3596), 1, + ACTIONS(3600), 1, anon_sym_LBRACE, STATE(1690), 1, sym_text_interpolation, STATE(786), 2, sym_dynamic_variable_name, sym_variable_name, - [61713] = 8, - ACTIONS(18), 1, + [61715] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(3598), 1, + ACTIONS(3602), 1, anon_sym_DOT_DOT_DOT, STATE(1691), 1, sym_text_interpolation, @@ -127740,110 +127698,110 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_modifier, STATE(2133), 1, sym_variable_name, - [61738] = 6, - ACTIONS(18), 1, + [61740] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1046), 1, + ACTIONS(1048), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1692), 1, sym_text_interpolation, - ACTIONS(1044), 2, + ACTIONS(1046), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3600), 2, + ACTIONS(3604), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61759] = 8, - ACTIONS(18), 1, + [61761] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3581), 1, + ACTIONS(3585), 1, anon_sym_LBRACE, - ACTIONS(3583), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3589), 1, + ACTIONS(3593), 1, anon_sym_LBRACK, - ACTIONS(3602), 1, + ACTIONS(3606), 1, anon_sym_DASH_GT, - ACTIONS(3604), 1, + ACTIONS(3608), 1, anon_sym_QMARK_DASH_GT, STATE(1693), 1, sym_text_interpolation, - [61784] = 6, - ACTIONS(18), 1, + [61786] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3608), 1, + ACTIONS(3612), 1, anon_sym_BSLASH, STATE(1694), 1, sym_text_interpolation, STATE(1770), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3606), 3, + ACTIONS(3610), 3, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [61805] = 7, - ACTIONS(18), 1, + [61807] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3610), 1, + ACTIONS(3614), 1, aux_sym_if_statement_token2, - ACTIONS(3612), 1, + ACTIONS(3616), 1, aux_sym_else_if_clause_token1, - ACTIONS(3615), 1, + ACTIONS(3619), 1, aux_sym_else_clause_token1, STATE(2176), 1, sym_else_if_clause_2, STATE(1695), 2, sym_text_interpolation, aux_sym_if_statement_repeat2, - [61828] = 6, - ACTIONS(18), 1, + [61830] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3443), 1, anon_sym_AMP, STATE(1696), 1, sym_text_interpolation, STATE(1729), 1, aux_sym_intersection_type_repeat1, - ACTIONS(3257), 3, + ACTIONS(3259), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61849] = 7, - ACTIONS(18), 1, + [61851] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(611), 1, + ACTIONS(613), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3621), 1, sym_name, - ACTIONS(3619), 1, + ACTIONS(3623), 1, anon_sym_LBRACE, STATE(1697), 1, sym_text_interpolation, STATE(585), 2, sym_dynamic_variable_name, sym_variable_name, - [61872] = 8, - ACTIONS(18), 1, + [61874] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3621), 1, + ACTIONS(3625), 1, anon_sym_LBRACE, - ACTIONS(3623), 1, + ACTIONS(3627), 1, anon_sym_COLON, STATE(1698), 1, sym_text_interpolation, @@ -127851,46 +127809,46 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2239), 1, sym_class_interface_clause, - [61897] = 6, - ACTIONS(18), 1, + [61899] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(3631), 1, anon_sym_EQ, STATE(1699), 1, sym_text_interpolation, STATE(2212), 1, sym_property_initializer, - ACTIONS(3625), 3, + ACTIONS(3629), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [61918] = 6, - ACTIONS(18), 1, + [61920] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1128), 1, + ACTIONS(1130), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1700), 1, sym_text_interpolation, - ACTIONS(1126), 2, + ACTIONS(1128), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3629), 2, + ACTIONS(3633), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61939] = 8, - ACTIONS(18), 1, + [61941] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3635), 1, sym_name, - ACTIONS(3633), 1, + ACTIONS(3637), 1, anon_sym_BSLASH, STATE(1686), 1, sym_namespace_name, @@ -127898,44 +127856,44 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2163), 1, sym_compound_statement, - [61964] = 6, - ACTIONS(18), 1, + [61966] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1134), 1, + ACTIONS(1136), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1702), 1, sym_text_interpolation, - ACTIONS(1132), 2, + ACTIONS(1134), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3635), 2, + ACTIONS(3639), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61985] = 6, - ACTIONS(18), 1, + [61987] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3637), 1, + ACTIONS(3641), 1, sym_name, STATE(1703), 1, sym_text_interpolation, STATE(2356), 1, sym__reserved_identifier, - ACTIONS(2399), 3, + ACTIONS(2401), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [62006] = 7, - ACTIONS(18), 1, + [62008] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3437), 1, - aux_sym_catch_clause_token1, ACTIONS(3439), 1, + aux_sym_catch_clause_token1, + ACTIONS(3441), 1, aux_sym_finally_clause_token1, STATE(1558), 1, aux_sym_try_statement_repeat1, @@ -127944,61 +127902,61 @@ static const uint16_t ts_small_parse_table[] = { STATE(1749), 2, sym_catch_clause, sym_finally_clause, - [62029] = 4, - ACTIONS(18), 1, + [62031] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1705), 1, sym_text_interpolation, - ACTIONS(1600), 5, + ACTIONS(1604), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [62046] = 8, - ACTIONS(18), 1, + [62048] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3639), 1, + ACTIONS(3643), 1, anon_sym_LBRACE, - ACTIONS(3641), 1, + ACTIONS(3645), 1, anon_sym_DASH_GT, - ACTIONS(3643), 1, + ACTIONS(3647), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3645), 1, + ACTIONS(3649), 1, anon_sym_LBRACK, STATE(1706), 1, sym_text_interpolation, - [62071] = 8, - ACTIONS(18), 1, + [62073] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3647), 1, + ACTIONS(3651), 1, anon_sym_LBRACE, - ACTIONS(3649), 1, + ACTIONS(3653), 1, anon_sym_DASH_GT, - ACTIONS(3651), 1, + ACTIONS(3655), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3653), 1, + ACTIONS(3657), 1, anon_sym_LBRACK, STATE(1707), 1, sym_text_interpolation, - [62096] = 7, - ACTIONS(18), 1, + [62098] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3655), 1, + ACTIONS(3659), 1, aux_sym_catch_clause_token1, - ACTIONS(3657), 1, + ACTIONS(3661), 1, aux_sym_finally_clause_token1, STATE(423), 1, aux_sym_try_statement_repeat1, @@ -128007,218 +127965,218 @@ static const uint16_t ts_small_parse_table[] = { STATE(431), 2, sym_catch_clause, sym_finally_clause, - [62119] = 7, - ACTIONS(18), 1, + [62121] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR, - ACTIONS(3659), 1, + ACTIONS(3663), 1, sym_name, - ACTIONS(3661), 1, + ACTIONS(3665), 1, anon_sym_LBRACE, STATE(1709), 1, sym_text_interpolation, STATE(890), 2, sym_dynamic_variable_name, sym_variable_name, - [62142] = 5, - ACTIONS(18), 1, + [62144] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1038), 1, + ACTIONS(1040), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1710), 1, sym_text_interpolation, - ACTIONS(1036), 4, + ACTIONS(1038), 4, aux_sym_catch_clause_token1, aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [62161] = 6, - ACTIONS(18), 1, + [62163] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1088), 1, + ACTIONS(1090), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1711), 1, sym_text_interpolation, - ACTIONS(1086), 2, + ACTIONS(1088), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3663), 2, + ACTIONS(3667), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62182] = 8, - ACTIONS(18), 1, + [62184] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_LBRACE, - ACTIONS(3667), 1, + ACTIONS(3671), 1, anon_sym_DASH_GT, - ACTIONS(3669), 1, + ACTIONS(3673), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_LBRACK, STATE(1712), 1, sym_text_interpolation, - [62207] = 6, - ACTIONS(18), 1, + [62209] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1156), 1, + ACTIONS(1158), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1713), 1, sym_text_interpolation, - ACTIONS(1154), 2, + ACTIONS(1156), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3673), 2, + ACTIONS(3677), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62228] = 6, - ACTIONS(18), 1, + [62230] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1082), 1, + ACTIONS(1084), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1714), 1, sym_text_interpolation, - ACTIONS(1080), 2, + ACTIONS(1082), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3675), 2, + ACTIONS(3679), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62249] = 6, - ACTIONS(18), 1, + [62251] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1076), 1, + ACTIONS(1078), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1715), 1, sym_text_interpolation, - ACTIONS(1074), 2, + ACTIONS(1076), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3677), 2, + ACTIONS(3681), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62270] = 8, - ACTIONS(18), 1, + [62272] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3581), 1, + ACTIONS(3585), 1, anon_sym_LBRACE, - ACTIONS(3583), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3589), 1, + ACTIONS(3593), 1, anon_sym_LBRACK, - ACTIONS(3679), 1, + ACTIONS(3683), 1, anon_sym_DASH_GT, - ACTIONS(3681), 1, + ACTIONS(3685), 1, anon_sym_QMARK_DASH_GT, STATE(1716), 1, sym_text_interpolation, - [62295] = 8, - ACTIONS(18), 1, + [62297] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_LBRACE, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3687), 1, anon_sym_DASH_GT, - ACTIONS(3685), 1, + ACTIONS(3689), 1, anon_sym_QMARK_DASH_GT, STATE(1717), 1, sym_text_interpolation, - [62320] = 6, - ACTIONS(18), 1, + [62322] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1058), 1, + ACTIONS(1060), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1718), 1, sym_text_interpolation, - ACTIONS(1056), 2, + ACTIONS(1058), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3687), 2, + ACTIONS(3691), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62341] = 7, - ACTIONS(18), 1, + [62343] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3689), 1, + ACTIONS(3693), 1, sym_name, - ACTIONS(3691), 1, + ACTIONS(3695), 1, anon_sym_LBRACE, - ACTIONS(3693), 1, + ACTIONS(3697), 1, anon_sym_DOLLAR, STATE(1719), 1, sym_text_interpolation, STATE(1597), 2, sym_dynamic_variable_name, sym_variable_name, - [62364] = 5, - ACTIONS(18), 1, + [62366] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1022), 1, + ACTIONS(1024), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1720), 1, sym_text_interpolation, - ACTIONS(1020), 4, + ACTIONS(1022), 4, aux_sym_catch_clause_token1, aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [62383] = 7, - ACTIONS(18), 1, + [62385] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(3695), 1, + ACTIONS(3699), 1, anon_sym_AMP, - ACTIONS(3697), 1, + ACTIONS(3701), 1, anon_sym_RPAREN, STATE(1721), 1, sym_text_interpolation, STATE(2232), 2, sym_variable_name, sym_variable_reference, - [62406] = 8, - ACTIONS(18), 1, + [62408] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3699), 1, + ACTIONS(3703), 1, anon_sym_LBRACE, - ACTIONS(3701), 1, + ACTIONS(3705), 1, anon_sym_COLON, STATE(465), 1, sym_enum_declaration_list, @@ -128226,80 +128184,80 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2480), 1, sym_class_interface_clause, - [62431] = 6, - ACTIONS(18), 1, + [62433] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1070), 1, + ACTIONS(1072), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1723), 1, sym_text_interpolation, - ACTIONS(1068), 2, + ACTIONS(1070), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3703), 2, + ACTIONS(3707), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62452] = 8, - ACTIONS(18), 1, + [62454] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3705), 1, + ACTIONS(3709), 1, anon_sym_LBRACE, - ACTIONS(3707), 1, + ACTIONS(3711), 1, anon_sym_DASH_GT, - ACTIONS(3709), 1, + ACTIONS(3713), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3711), 1, + ACTIONS(3715), 1, anon_sym_LBRACK, STATE(1724), 1, sym_text_interpolation, - [62477] = 8, - ACTIONS(18), 1, + [62479] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3665), 1, + ACTIONS(3669), 1, anon_sym_LBRACE, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_LBRACK, - ACTIONS(3713), 1, + ACTIONS(3717), 1, anon_sym_DASH_GT, - ACTIONS(3715), 1, + ACTIONS(3719), 1, anon_sym_QMARK_DASH_GT, STATE(1725), 1, sym_text_interpolation, - [62502] = 6, - ACTIONS(18), 1, + [62504] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3491), 1, + ACTIONS(3493), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1726), 1, sym_text_interpolation, STATE(2047), 1, sym_namespace_aliasing_clause, - ACTIONS(3489), 3, + ACTIONS(3491), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [62523] = 8, - ACTIONS(18), 1, + [62525] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(2445), 1, + ACTIONS(2447), 1, anon_sym_COLON, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1680), 1, sym_formal_parameters, @@ -128307,88 +128265,88 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2486), 1, sym_reference_modifier, - [62548] = 5, - ACTIONS(18), 1, + [62550] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3717), 1, + ACTIONS(3721), 1, anon_sym_PIPE, STATE(1728), 2, sym_text_interpolation, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3225), 3, + ACTIONS(3227), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [62567] = 5, - ACTIONS(18), 1, + [62569] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3724), 1, anon_sym_AMP, STATE(1729), 2, sym_text_interpolation, aux_sym_intersection_type_repeat1, - ACTIONS(3221), 3, + ACTIONS(3223), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [62586] = 5, - ACTIONS(18), 1, + [62588] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3723), 1, + ACTIONS(3727), 1, anon_sym_PIPE, STATE(1730), 2, sym_text_interpolation, aux_sym_union_type_repeat1, - ACTIONS(3229), 3, + ACTIONS(3231), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [62605] = 7, - ACTIONS(18), 1, + [62607] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(3730), 1, sym_name, - ACTIONS(3728), 1, + ACTIONS(3732), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(3734), 1, anon_sym_DOLLAR, STATE(1731), 1, sym_text_interpolation, STATE(1624), 2, sym_dynamic_variable_name, sym_variable_name, - [62628] = 5, - ACTIONS(18), 1, + [62630] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1030), 1, + ACTIONS(1032), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1732), 1, sym_text_interpolation, - ACTIONS(1028), 4, + ACTIONS(1030), 4, aux_sym_catch_clause_token1, aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [62647] = 8, - ACTIONS(18), 1, + [62649] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(2445), 1, + ACTIONS(2447), 1, anon_sym_COLON, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1733), 1, sym_text_interpolation, @@ -128396,46 +128354,46 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2349), 1, sym_reference_modifier, - [62672] = 6, - ACTIONS(18), 1, + [62674] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1052), 1, + ACTIONS(1054), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1734), 1, sym_text_interpolation, - ACTIONS(1050), 2, + ACTIONS(1052), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3732), 2, + ACTIONS(3736), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62693] = 6, - ACTIONS(18), 1, + [62695] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3608), 1, + ACTIONS(3612), 1, anon_sym_BSLASH, STATE(1694), 1, aux_sym_namespace_name_repeat1, STATE(1735), 1, sym_text_interpolation, - ACTIONS(3734), 3, + ACTIONS(3738), 3, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [62714] = 8, - ACTIONS(18), 1, + [62716] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3621), 1, + ACTIONS(3625), 1, anon_sym_LBRACE, - ACTIONS(3736), 1, + ACTIONS(3740), 1, anon_sym_COLON, STATE(1736), 1, sym_text_interpolation, @@ -128443,12 +128401,12 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2372), 1, sym_class_interface_clause, - [62739] = 7, - ACTIONS(18), 1, + [62741] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3738), 1, + ACTIONS(3742), 1, sym_name, STATE(1737), 1, sym_text_interpolation, @@ -128456,81 +128414,81 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2300), 1, sym_namespace_use_group_clause, - ACTIONS(3740), 2, + ACTIONS(3744), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - [62762] = 7, - ACTIONS(18), 1, + [62764] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1556), 1, + ACTIONS(1558), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3742), 1, + ACTIONS(3746), 1, sym_name, - ACTIONS(3744), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, STATE(1738), 1, sym_text_interpolation, STATE(666), 2, sym_dynamic_variable_name, sym_variable_name, - [62785] = 6, - ACTIONS(18), 1, + [62787] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1150), 1, + ACTIONS(1152), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1739), 1, sym_text_interpolation, - ACTIONS(1148), 2, + ACTIONS(1150), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3746), 2, + ACTIONS(3750), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62806] = 7, - ACTIONS(18), 1, + [62808] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1769), 1, anon_sym_DOLLAR, - ACTIONS(3748), 1, + ACTIONS(3752), 1, sym_name, - ACTIONS(3750), 1, + ACTIONS(3754), 1, anon_sym_LBRACE, STATE(1740), 1, sym_text_interpolation, STATE(748), 2, sym_dynamic_variable_name, sym_variable_name, - [62829] = 6, - ACTIONS(18), 1, + [62831] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, STATE(1741), 1, sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3517), 3, + ACTIONS(3519), 3, anon_sym_COMMA, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [62850] = 8, - ACTIONS(18), 1, + [62852] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3699), 1, + ACTIONS(3703), 1, anon_sym_LBRACE, - ACTIONS(3752), 1, + ACTIONS(3756), 1, anon_sym_COLON, STATE(461), 1, sym_enum_declaration_list, @@ -128538,131 +128496,131 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2348), 1, sym_class_interface_clause, - [62875] = 6, - ACTIONS(18), 1, + [62877] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1094), 1, + ACTIONS(1096), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1743), 1, sym_text_interpolation, - ACTIONS(1092), 2, + ACTIONS(1094), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3754), 2, + ACTIONS(3758), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62896] = 6, - ACTIONS(18), 1, + [62898] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1064), 1, + ACTIONS(1066), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1744), 1, sym_text_interpolation, - ACTIONS(1062), 2, + ACTIONS(1064), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3756), 2, + ACTIONS(3760), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62917] = 5, - ACTIONS(18), 1, + [62919] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3760), 1, + ACTIONS(3764), 1, anon_sym_BSLASH, STATE(1745), 2, sym_text_interpolation, aux_sym_namespace_name_repeat1, - ACTIONS(3758), 3, + ACTIONS(3762), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [62936] = 6, - ACTIONS(18), 1, + [62938] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3767), 1, anon_sym_PIPE, STATE(1746), 1, sym_text_interpolation, STATE(1761), 1, aux_sym_union_type_repeat1, - ACTIONS(3299), 3, + ACTIONS(3301), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [62957] = 6, - ACTIONS(18), 1, + [62959] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3769), 1, anon_sym_PIPE, STATE(1747), 1, sym_text_interpolation, STATE(1760), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3327), 3, + ACTIONS(3329), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [62978] = 7, - ACTIONS(18), 1, + [62980] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(220), 1, + ACTIONS(222), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3583), 1, anon_sym_BSLASH, STATE(552), 1, sym_compound_statement, STATE(1748), 1, sym_text_interpolation, - ACTIONS(3767), 2, + ACTIONS(3771), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63001] = 5, - ACTIONS(18), 1, + [63003] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1026), 1, + ACTIONS(1028), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1749), 1, sym_text_interpolation, - ACTIONS(1024), 4, + ACTIONS(1026), 4, aux_sym_catch_clause_token1, aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [63020] = 6, - ACTIONS(18), 1, + [63022] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1118), 1, + ACTIONS(1120), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1750), 1, sym_text_interpolation, - ACTIONS(1116), 2, + ACTIONS(1118), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3769), 2, + ACTIONS(3773), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63041] = 7, - ACTIONS(18), 1, + [63043] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3738), 1, + ACTIONS(3742), 1, sym_name, STATE(1751), 1, sym_text_interpolation, @@ -128670,19 +128628,19 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2201), 1, sym_namespace_use_group_clause, - ACTIONS(3740), 2, + ACTIONS(3744), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - [63064] = 8, - ACTIONS(18), 1, + [63066] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(3771), 1, + ACTIONS(3775), 1, anon_sym_DOT_DOT_DOT, STATE(1752), 1, sym_text_interpolation, @@ -128690,356 +128648,359 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2181), 1, sym_reference_modifier, - [63089] = 6, - ACTIONS(18), 1, + [63091] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3769), 1, anon_sym_PIPE, STATE(1753), 1, sym_text_interpolation, STATE(1760), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3331), 3, + ACTIONS(3333), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [63110] = 6, - ACTIONS(18), 1, + [63112] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3575), 1, + ACTIONS(3579), 1, anon_sym_PIPE, STATE(1728), 1, aux_sym_disjunctive_normal_form_type_repeat1, STATE(1754), 1, sym_text_interpolation, - ACTIONS(3327), 3, + ACTIONS(3329), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [63131] = 6, - ACTIONS(18), 1, + [63133] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3777), 1, anon_sym_PIPE, STATE(1730), 1, aux_sym_union_type_repeat1, STATE(1755), 1, sym_text_interpolation, - ACTIONS(3299), 3, + ACTIONS(3301), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [63152] = 4, - ACTIONS(18), 1, + [63154] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1756), 1, sym_text_interpolation, - ACTIONS(3162), 5, + ACTIONS(3164), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [63169] = 6, - ACTIONS(18), 1, + [63171] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3777), 1, + ACTIONS(3781), 1, anon_sym_COLON, STATE(1757), 1, sym_text_interpolation, STATE(2097), 1, sym__return_type, - ACTIONS(3775), 3, + ACTIONS(3779), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [63190] = 6, - ACTIONS(18), 1, + [63192] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3779), 1, + ACTIONS(3783), 1, anon_sym_BSLASH, STATE(1758), 1, sym_text_interpolation, STATE(1762), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3734), 3, + ACTIONS(3738), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [63211] = 6, - ACTIONS(18), 1, + [63213] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1140), 1, + ACTIONS(1142), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1759), 1, sym_text_interpolation, - ACTIONS(1138), 2, + ACTIONS(1140), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3782), 2, + ACTIONS(3786), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63232] = 5, - ACTIONS(18), 1, + [63234] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3784), 1, + ACTIONS(3788), 1, anon_sym_PIPE, STATE(1760), 2, sym_text_interpolation, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3225), 3, + ACTIONS(3227), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [63251] = 5, - ACTIONS(18), 1, + [63253] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3787), 1, + ACTIONS(3791), 1, anon_sym_PIPE, STATE(1761), 2, sym_text_interpolation, aux_sym_union_type_repeat1, - ACTIONS(3229), 3, + ACTIONS(3231), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [63270] = 6, - ACTIONS(18), 1, + [63272] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3794), 1, anon_sym_BSLASH, STATE(1745), 1, aux_sym_namespace_name_repeat1, STATE(1762), 1, sym_text_interpolation, - ACTIONS(3606), 3, + ACTIONS(3610), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [63291] = 6, - ACTIONS(18), 1, + [63293] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1106), 1, + ACTIONS(1108), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1763), 1, sym_text_interpolation, - ACTIONS(1104), 2, + ACTIONS(1106), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3793), 2, + ACTIONS(3797), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63312] = 6, - ACTIONS(18), 1, + [63314] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3769), 1, anon_sym_PIPE, STATE(1753), 1, aux_sym_disjunctive_normal_form_type_repeat1, STATE(1764), 1, sym_text_interpolation, - ACTIONS(3287), 3, + ACTIONS(3289), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [63333] = 6, + [63335] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3795), 1, + ACTIONS(3799), 1, ts_builtin_sym_end, - ACTIONS(3797), 1, + ACTIONS(3801), 1, sym_php_tag, - ACTIONS(3799), 2, + ACTIONS(3803), 1, aux_sym_text_token1, + ACTIONS(3806), 1, aux_sym_text_token2, STATE(1765), 2, sym_text_interpolation, aux_sym_text_repeat1, - [63354] = 8, - ACTIONS(18), 1, + [63358] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3802), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3811), 1, anon_sym_DASH_GT, - ACTIONS(3806), 1, + ACTIONS(3813), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3808), 1, + ACTIONS(3815), 1, anon_sym_LBRACK, STATE(1766), 1, sym_text_interpolation, - [63379] = 7, - ACTIONS(18), 1, + [63383] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(316), 1, + ACTIONS(318), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3810), 1, + ACTIONS(3817), 1, sym_name, - ACTIONS(3812), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, STATE(1767), 1, sym_text_interpolation, STATE(629), 2, sym_dynamic_variable_name, sym_variable_name, - [63402] = 4, - ACTIONS(18), 1, + [63406] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1768), 1, sym_text_interpolation, - ACTIONS(3184), 5, + ACTIONS(3186), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [63419] = 4, - ACTIONS(18), 1, + [63423] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1769), 1, sym_text_interpolation, - ACTIONS(3098), 5, + ACTIONS(3100), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [63436] = 5, - ACTIONS(18), 1, + [63440] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(3821), 1, anon_sym_BSLASH, STATE(1770), 2, sym_text_interpolation, aux_sym_namespace_name_repeat1, - ACTIONS(3758), 3, + ACTIONS(3762), 3, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [63455] = 6, - ACTIONS(18), 1, + [63459] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3777), 1, + ACTIONS(3781), 1, anon_sym_COLON, STATE(1771), 1, sym_text_interpolation, STATE(2070), 1, sym__return_type, - ACTIONS(3817), 3, + ACTIONS(3824), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [63476] = 5, - ACTIONS(18), 1, + [63480] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3819), 1, + ACTIONS(3826), 1, anon_sym_COMMA, STATE(1772), 2, sym_text_interpolation, aux_sym_base_clause_repeat1, - ACTIONS(3517), 3, + ACTIONS(3519), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [63495] = 6, + [63499] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3795), 1, + ACTIONS(3799), 1, sym__eof, - ACTIONS(3797), 1, + ACTIONS(3801), 1, sym_php_tag, - ACTIONS(3822), 2, + ACTIONS(3829), 1, aux_sym_text_token1, + ACTIONS(3832), 1, aux_sym_text_token2, STATE(1773), 2, sym_text_interpolation, aux_sym_text_repeat1, - [63516] = 7, + [63522] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(3559), 1, + aux_sym_text_token1, + ACTIONS(3561), 1, + aux_sym_text_token2, + ACTIONS(3835), 1, sym_php_tag, - ACTIONS(3827), 1, + ACTIONS(3837), 1, sym__eof, STATE(1773), 1, aux_sym_text_repeat1, STATE(1774), 1, sym_text_interpolation, - ACTIONS(3557), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [63539] = 7, - ACTIONS(18), 1, + [63547] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(3695), 1, + ACTIONS(3699), 1, anon_sym_AMP, - ACTIONS(3829), 1, + ACTIONS(3839), 1, anon_sym_RPAREN, STATE(1775), 1, sym_text_interpolation, STATE(2232), 2, sym_variable_name, sym_variable_reference, - [63562] = 8, - ACTIONS(18), 1, + [63570] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, - ACTIONS(3519), 1, + ACTIONS(3521), 1, anon_sym_COMMA, - ACTIONS(3831), 1, + ACTIONS(3841), 1, anon_sym_LBRACE, STATE(1776), 1, sym_text_interpolation, @@ -129047,48 +129008,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_base_clause_repeat1, STATE(2390), 1, aux_sym_namespace_name_repeat1, - [63587] = 6, - ACTIONS(18), 1, + [63595] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1100), 1, + ACTIONS(1102), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1777), 1, sym_text_interpolation, - ACTIONS(1098), 2, + ACTIONS(1100), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3833), 2, + ACTIONS(3843), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63608] = 8, - ACTIONS(18), 1, + [63616] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3705), 1, + ACTIONS(3709), 1, anon_sym_LBRACE, - ACTIONS(3711), 1, + ACTIONS(3715), 1, anon_sym_LBRACK, - ACTIONS(3835), 1, + ACTIONS(3845), 1, anon_sym_DASH_GT, - ACTIONS(3837), 1, + ACTIONS(3847), 1, anon_sym_QMARK_DASH_GT, STATE(1778), 1, sym_text_interpolation, - [63633] = 8, - ACTIONS(18), 1, + [63641] = 8, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(220), 1, + ACTIONS(222), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3635), 1, sym_name, - ACTIONS(3633), 1, + ACTIONS(3637), 1, anon_sym_BSLASH, STATE(563), 1, sym_compound_statement, @@ -129096,179 +129057,180 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(1779), 1, sym_text_interpolation, - [63658] = 6, - ACTIONS(18), 1, + [63666] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1112), 1, + ACTIONS(1114), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1780), 1, sym_text_interpolation, - ACTIONS(1110), 2, + ACTIONS(1112), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3839), 2, + ACTIONS(3849), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63679] = 7, - ACTIONS(18), 1, + [63687] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3841), 1, + ACTIONS(3851), 1, sym_name, - ACTIONS(3843), 1, + ACTIONS(3853), 1, anon_sym_LBRACE, - ACTIONS(3845), 1, + ACTIONS(3855), 1, anon_sym_DOLLAR, STATE(1781), 1, sym_text_interpolation, STATE(1460), 2, sym_dynamic_variable_name, sym_variable_name, - [63702] = 7, - ACTIONS(18), 1, + [63710] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(3853), 1, anon_sym_LBRACE, - ACTIONS(3845), 1, + ACTIONS(3855), 1, anon_sym_DOLLAR, - ACTIONS(3847), 1, + ACTIONS(3857), 1, sym_name, STATE(1782), 1, sym_text_interpolation, STATE(1460), 2, sym_dynamic_variable_name, sym_variable_name, - [63725] = 7, - ACTIONS(18), 1, + [63733] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3732), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(3734), 1, anon_sym_DOLLAR, - ACTIONS(3849), 1, + ACTIONS(3859), 1, sym_name, STATE(1783), 1, sym_text_interpolation, STATE(1624), 2, sym_dynamic_variable_name, sym_variable_name, - [63748] = 7, + [63756] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(11), 1, + aux_sym_text_token1, + ACTIONS(13), 1, + aux_sym_text_token2, + ACTIONS(3835), 1, sym_php_tag, - ACTIONS(3827), 1, + ACTIONS(3837), 1, ts_builtin_sym_end, STATE(1765), 1, aux_sym_text_repeat1, STATE(1784), 1, sym_text_interpolation, - ACTIONS(11), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [63771] = 6, - ACTIONS(18), 1, + [63781] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3851), 1, + ACTIONS(3861), 1, sym_name, STATE(1785), 1, sym_text_interpolation, STATE(2174), 1, sym_visibility_modifier, - ACTIONS(3853), 3, + ACTIONS(3863), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [63792] = 7, - ACTIONS(18), 1, + [63802] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3691), 1, + ACTIONS(3695), 1, anon_sym_LBRACE, - ACTIONS(3693), 1, + ACTIONS(3697), 1, anon_sym_DOLLAR, - ACTIONS(3855), 1, + ACTIONS(3865), 1, sym_name, STATE(1786), 1, sym_text_interpolation, STATE(1597), 2, sym_dynamic_variable_name, sym_variable_name, - [63815] = 6, - ACTIONS(18), 1, + [63825] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1787), 1, sym_text_interpolation, STATE(1802), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3857), 2, + ACTIONS(3867), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63835] = 6, - ACTIONS(18), 1, + [63845] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(3695), 1, + ACTIONS(3699), 1, anon_sym_AMP, STATE(1788), 1, sym_text_interpolation, STATE(2173), 2, sym_variable_name, sym_variable_reference, - [63855] = 5, - ACTIONS(18), 1, + [63865] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3861), 1, + ACTIONS(3871), 1, anon_sym_AMP, - ACTIONS(3221), 2, + ACTIONS(3223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, STATE(1789), 2, sym_text_interpolation, aux_sym_intersection_type_repeat1, - [63873] = 6, - ACTIONS(18), 1, + [63883] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3521), 1, anon_sym_COMMA, STATE(1790), 1, sym_text_interpolation, STATE(1851), 1, aux_sym_base_clause_repeat1, - ACTIONS(3521), 2, + ACTIONS(3523), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [63893] = 7, - ACTIONS(18), 1, + [63903] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1645), 1, sym_formal_parameters, @@ -129276,14 +129238,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2364), 1, sym_reference_modifier, - [63915] = 7, - ACTIONS(18), 1, + [63925] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3699), 1, + ACTIONS(3703), 1, anon_sym_LBRACE, STATE(498), 1, sym_enum_declaration_list, @@ -129291,54 +129253,54 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2352), 1, sym_class_interface_clause, - [63937] = 5, - ACTIONS(18), 1, + [63947] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3866), 1, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3864), 2, + ACTIONS(3874), 2, sym__automatic_semicolon, anon_sym_SEMI, STATE(1793), 2, sym_text_interpolation, aux_sym_global_declaration_repeat1, - [63955] = 6, - ACTIONS(18), 1, + [63965] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3881), 1, anon_sym_COMMA, STATE(1794), 1, sym_text_interpolation, STATE(1801), 1, aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3869), 2, + ACTIONS(3879), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63975] = 5, + [63985] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3875), 1, - sym__eof, STATE(1795), 1, sym_text_interpolation, - ACTIONS(3873), 3, + ACTIONS(3883), 2, sym_php_tag, aux_sym_text_token1, + ACTIONS(3885), 2, + sym__eof, aux_sym_text_token2, - [63993] = 7, - ACTIONS(18), 1, + [64003] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1653), 1, sym_formal_parameters, @@ -129346,14 +129308,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2374), 1, sym_reference_modifier, - [64015] = 7, - ACTIONS(18), 1, + [64025] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1650), 1, sym_formal_parameters, @@ -129361,28 +129323,28 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2228), 1, sym_reference_modifier, - [64037] = 6, - ACTIONS(18), 1, + [64047] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3877), 1, + ACTIONS(3887), 1, anon_sym_AMP, STATE(1789), 1, aux_sym_intersection_type_repeat1, STATE(1798), 1, sym_text_interpolation, - ACTIONS(3257), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [64057] = 7, - ACTIONS(18), 1, + [64067] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1634), 1, sym_formal_parameters, @@ -129390,14 +129352,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2331), 1, sym_reference_modifier, - [64079] = 7, - ACTIONS(18), 1, + [64089] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1800), 1, sym_text_interpolation, @@ -129405,105 +129367,105 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2226), 1, sym_reference_modifier, - [64101] = 5, - ACTIONS(18), 1, + [64111] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3882), 1, + ACTIONS(3892), 1, anon_sym_COMMA, - ACTIONS(3880), 2, + ACTIONS(3890), 2, sym__automatic_semicolon, anon_sym_SEMI, STATE(1801), 2, sym_text_interpolation, aux_sym_namespace_use_declaration_repeat1, - [64119] = 5, - ACTIONS(18), 1, + [64129] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(3897), 1, anon_sym_COMMA, - ACTIONS(3885), 2, + ACTIONS(3895), 2, sym__automatic_semicolon, anon_sym_SEMI, STATE(1802), 2, sym_text_interpolation, aux_sym__const_declaration_repeat1, - [64137] = 4, - ACTIONS(18), 1, + [64147] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1803), 1, sym_text_interpolation, - ACTIONS(3758), 4, + ACTIONS(3762), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BSLASH, anon_sym_LBRACE, - [64153] = 7, - ACTIONS(18), 1, + [64163] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(3900), 1, anon_sym_SEMI, - ACTIONS(3892), 1, + ACTIONS(3902), 1, anon_sym_LBRACE, - ACTIONS(3894), 1, + ACTIONS(3904), 1, sym__automatic_semicolon, STATE(1375), 1, sym_compound_statement, STATE(1804), 1, sym_text_interpolation, - [64175] = 4, - ACTIONS(18), 1, + [64185] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1805), 1, sym_text_interpolation, - ACTIONS(3896), 4, + ACTIONS(3906), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [64191] = 4, - ACTIONS(18), 1, + [64201] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1806), 1, sym_text_interpolation, - ACTIONS(3898), 4, + ACTIONS(3908), 4, anon_sym_RBRACE, aux_sym_enum_case_token1, aux_sym_match_default_expression_token1, aux_sym_switch_block_token1, - [64207] = 6, - ACTIONS(18), 1, + [64217] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(3912), 1, anon_sym_COMMA, STATE(1807), 1, sym_text_interpolation, STATE(1828), 1, aux_sym_property_declaration_repeat2, - ACTIONS(3900), 2, + ACTIONS(3910), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64227] = 7, - ACTIONS(18), 1, + [64237] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1113), 1, sym_compound_statement, @@ -129511,40 +129473,40 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2255), 1, sym__return_type, - [64249] = 4, - ACTIONS(18), 1, + [64259] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1809), 1, sym_text_interpolation, - ACTIONS(3904), 4, + ACTIONS(3914), 4, aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [64265] = 6, - ACTIONS(18), 1, + [64275] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(3695), 1, + ACTIONS(3699), 1, anon_sym_AMP, STATE(1810), 1, sym_text_interpolation, STATE(2232), 2, sym_variable_name, sym_variable_reference, - [64285] = 7, - ACTIONS(18), 1, + [64295] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1128), 1, sym_compound_statement, @@ -129552,27 +129514,27 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2311), 1, sym__return_type, - [64307] = 5, - ACTIONS(18), 1, + [64317] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(3918), 1, anon_sym_COMMA, - ACTIONS(3906), 2, + ACTIONS(3916), 2, sym__automatic_semicolon, anon_sym_SEMI, STATE(1812), 2, sym_text_interpolation, aux_sym_function_static_declaration_repeat1, - [64325] = 7, - ACTIONS(18), 1, + [64335] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1055), 1, sym_declaration_list, @@ -129580,27 +129542,27 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2405), 1, sym_class_interface_clause, - [64347] = 5, + [64357] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3913), 1, + ACTIONS(3923), 1, sym_nowdoc_string, - ACTIONS(3911), 2, + ACTIONS(3921), 2, sym_heredoc_end, sym__new_line, STATE(1814), 2, sym_text_interpolation, aux_sym_nowdoc_body_repeat1, - [64365] = 7, - ACTIONS(18), 1, + [64375] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1050), 1, sym_declaration_list, @@ -129608,53 +129570,53 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2482), 1, sym_class_interface_clause, - [64387] = 6, - ACTIONS(18), 1, + [64397] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1816), 1, sym_text_interpolation, STATE(1824), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3916), 2, + ACTIONS(3926), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64407] = 4, - ACTIONS(18), 1, + [64417] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1817), 1, sym_text_interpolation, - ACTIONS(3918), 4, + ACTIONS(3928), 4, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, - [64423] = 5, + [64433] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3875), 1, - ts_builtin_sym_end, STATE(1818), 1, sym_text_interpolation, - ACTIONS(3873), 3, + ACTIONS(3883), 2, sym_php_tag, aux_sym_text_token1, + ACTIONS(3885), 2, + ts_builtin_sym_end, aux_sym_text_token2, - [64441] = 7, - ACTIONS(18), 1, + [64451] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(437), 1, sym_declaration_list, @@ -129662,133 +129624,133 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2421), 1, sym_class_interface_clause, - [64463] = 4, - ACTIONS(18), 1, + [64473] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1820), 1, sym_text_interpolation, - ACTIONS(3904), 4, + ACTIONS(3914), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [64479] = 4, - ACTIONS(18), 1, + [64489] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1821), 1, sym_text_interpolation, - ACTIONS(3221), 4, + ACTIONS(3223), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_AMP, anon_sym_LBRACE, - [64495] = 6, - ACTIONS(18), 1, + [64505] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1822), 1, sym_text_interpolation, STATE(1874), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3920), 2, + ACTIONS(3930), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64515] = 5, - ACTIONS(18), 1, + [64525] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3924), 1, + ACTIONS(3934), 1, anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_RPAREN, anon_sym_DOLLAR, STATE(1823), 2, sym_text_interpolation, aux_sym_type_list_repeat1, - [64533] = 6, - ACTIONS(18), 1, + [64543] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1802), 1, aux_sym__const_declaration_repeat1, STATE(1824), 1, sym_text_interpolation, - ACTIONS(3927), 2, + ACTIONS(3937), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64553] = 4, - ACTIONS(18), 1, + [64563] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1825), 1, sym_text_interpolation, - ACTIONS(3234), 4, + ACTIONS(3236), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [64569] = 7, - ACTIONS(18), 1, + [64579] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2447), 1, anon_sym_COLON, - ACTIONS(3633), 1, + ACTIONS(3637), 1, anon_sym_BSLASH, - ACTIONS(3929), 1, + ACTIONS(3939), 1, sym_name, STATE(1826), 1, sym_text_interpolation, STATE(2595), 1, sym_namespace_name, - [64591] = 6, - ACTIONS(18), 1, + [64601] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(3912), 1, anon_sym_COMMA, STATE(1827), 1, sym_text_interpolation, STATE(1828), 1, aux_sym_property_declaration_repeat2, - ACTIONS(3931), 2, + ACTIONS(3941), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64611] = 5, - ACTIONS(18), 1, + [64621] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3935), 1, + ACTIONS(3945), 1, anon_sym_COMMA, - ACTIONS(3933), 2, + ACTIONS(3943), 2, sym__automatic_semicolon, anon_sym_SEMI, STATE(1828), 2, sym_text_interpolation, aux_sym_property_declaration_repeat2, - [64629] = 7, - ACTIONS(18), 1, + [64639] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1070), 1, sym_compound_statement, @@ -129796,42 +129758,42 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2448), 1, sym__return_type, - [64651] = 6, - ACTIONS(18), 1, + [64661] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(3912), 1, anon_sym_COMMA, STATE(1807), 1, aux_sym_property_declaration_repeat2, STATE(1830), 1, sym_text_interpolation, - ACTIONS(3938), 2, + ACTIONS(3948), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64671] = 6, - ACTIONS(18), 1, + [64681] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(3912), 1, anon_sym_COMMA, STATE(1828), 1, aux_sym_property_declaration_repeat2, STATE(1831), 1, sym_text_interpolation, - ACTIONS(3940), 2, + ACTIONS(3950), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64691] = 7, - ACTIONS(18), 1, + [64701] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(447), 1, sym_declaration_list, @@ -129839,51 +129801,52 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2266), 1, sym_class_interface_clause, - [64713] = 4, - ACTIONS(18), 1, + [64723] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1833), 1, sym_text_interpolation, - ACTIONS(3758), 4, + ACTIONS(3762), 4, anon_sym_COMMA, anon_sym_BSLASH, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [64729] = 5, + [64739] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3952), 1, anon_sym_SQUOTE, - ACTIONS(3944), 2, + ACTIONS(3954), 1, aux_sym_string_token2, + ACTIONS(3957), 1, sym_string_value, STATE(1834), 2, sym_text_interpolation, aux_sym_string_repeat1, - [64747] = 4, - ACTIONS(18), 1, + [64759] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1835), 1, sym_text_interpolation, - ACTIONS(3947), 4, + ACTIONS(3960), 4, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, - [64763] = 7, - ACTIONS(18), 1, + [64775] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1097), 1, sym_compound_statement, @@ -129891,55 +129854,55 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2385), 1, sym__return_type, - [64785] = 6, - ACTIONS(18), 1, + [64797] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3951), 1, + ACTIONS(3964), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1837), 1, sym_text_interpolation, STATE(2360), 1, sym_namespace_aliasing_clause, - ACTIONS(3949), 2, + ACTIONS(3962), 2, anon_sym_COMMA, anon_sym_RBRACE, - [64805] = 4, - ACTIONS(18), 1, + [64817] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1838), 1, sym_text_interpolation, - ACTIONS(3953), 4, + ACTIONS(3966), 4, aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [64821] = 7, - ACTIONS(18), 1, + [64833] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3955), 1, + ACTIONS(3968), 1, anon_sym_EQ, - ACTIONS(3957), 1, + ACTIONS(3970), 1, anon_sym_RPAREN, STATE(1839), 1, sym_text_interpolation, STATE(2194), 1, aux_sym__list_destructing_repeat1, - [64843] = 7, - ACTIONS(18), 1, + [64855] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1123), 1, sym_declaration_list, @@ -129947,50 +129910,50 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2277), 1, sym_class_interface_clause, - [64865] = 4, - ACTIONS(18), 1, + [64877] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1841), 1, sym_text_interpolation, - ACTIONS(3953), 4, + ACTIONS(3966), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [64881] = 4, - ACTIONS(18), 1, + [64893] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1842), 1, sym_text_interpolation, - ACTIONS(3229), 4, + ACTIONS(3231), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [64897] = 4, - ACTIONS(18), 1, + [64909] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1843), 1, sym_text_interpolation, - ACTIONS(3225), 4, + ACTIONS(3227), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [64913] = 7, - ACTIONS(18), 1, + [64925] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1627), 1, sym_formal_parameters, @@ -129998,43 +129961,43 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2324), 1, sym_reference_modifier, - [64935] = 7, - ACTIONS(18), 1, + [64947] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3892), 1, + ACTIONS(3902), 1, anon_sym_LBRACE, - ACTIONS(3959), 1, + ACTIONS(3972), 1, anon_sym_SEMI, - ACTIONS(3961), 1, + ACTIONS(3974), 1, sym__automatic_semicolon, STATE(1377), 1, sym_compound_statement, STATE(1845), 1, sym_text_interpolation, - [64957] = 6, - ACTIONS(18), 1, + [64969] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(3912), 1, anon_sym_COMMA, STATE(1846), 1, sym_text_interpolation, STATE(1917), 1, aux_sym_property_declaration_repeat2, - ACTIONS(3963), 2, + ACTIONS(3976), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64977] = 7, - ACTIONS(18), 1, + [64989] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(442), 1, sym_declaration_list, @@ -130042,43 +130005,43 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2280), 1, sym_class_interface_clause, - [64999] = 7, - ACTIONS(18), 1, + [65011] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3892), 1, + ACTIONS(3902), 1, anon_sym_LBRACE, - ACTIONS(3965), 1, + ACTIONS(3978), 1, anon_sym_SEMI, - ACTIONS(3967), 1, + ACTIONS(3980), 1, sym__automatic_semicolon, STATE(1374), 1, sym_compound_statement, STATE(1848), 1, sym_text_interpolation, - [65021] = 6, - ACTIONS(18), 1, + [65033] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1802), 1, aux_sym__const_declaration_repeat1, STATE(1849), 1, sym_text_interpolation, - ACTIONS(3969), 2, + ACTIONS(3982), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65041] = 7, - ACTIONS(18), 1, + [65053] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(440), 1, sym_declaration_list, @@ -130086,70 +130049,71 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2318), 1, sym_class_interface_clause, - [65063] = 6, - ACTIONS(18), 1, + [65075] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3521), 1, anon_sym_COMMA, STATE(1851), 1, sym_text_interpolation, STATE(1912), 1, aux_sym_base_clause_repeat1, - ACTIONS(3971), 2, + ACTIONS(3984), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [65083] = 6, - ACTIONS(18), 1, + [65095] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1802), 1, aux_sym__const_declaration_repeat1, STATE(1852), 1, sym_text_interpolation, - ACTIONS(3973), 2, + ACTIONS(3986), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65103] = 6, - ACTIONS(18), 1, + [65115] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1849), 1, aux_sym__const_declaration_repeat1, STATE(1853), 1, sym_text_interpolation, - ACTIONS(3975), 2, + ACTIONS(3988), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65123] = 6, + [65135] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3977), 1, + ACTIONS(3990), 1, anon_sym_SQUOTE, + ACTIONS(3992), 1, + aux_sym_string_token2, + ACTIONS(3994), 1, + sym_string_value, STATE(1854), 1, sym_text_interpolation, STATE(1907), 1, aux_sym_string_repeat1, - ACTIONS(3979), 2, - aux_sym_string_token2, - sym_string_value, - [65143] = 7, - ACTIONS(18), 1, + [65157] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1117), 1, sym_compound_statement, @@ -130157,152 +130121,152 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2278), 1, sym__return_type, - [65165] = 6, - ACTIONS(18), 1, + [65179] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1802), 1, aux_sym__const_declaration_repeat1, STATE(1856), 1, sym_text_interpolation, - ACTIONS(3981), 2, + ACTIONS(3996), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65185] = 6, - ACTIONS(18), 1, + [65199] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1802), 1, aux_sym__const_declaration_repeat1, STATE(1857), 1, sym_text_interpolation, - ACTIONS(3916), 2, + ACTIONS(3926), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65205] = 6, - ACTIONS(18), 1, + [65219] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3985), 1, + ACTIONS(4000), 1, anon_sym_PIPE, STATE(1858), 1, sym_text_interpolation, STATE(1904), 1, aux_sym_type_list_repeat1, - ACTIONS(3983), 2, + ACTIONS(3998), 2, anon_sym_RPAREN, anon_sym_DOLLAR, - [65225] = 6, - ACTIONS(18), 1, + [65239] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1852), 1, aux_sym__const_declaration_repeat1, STATE(1859), 1, sym_text_interpolation, - ACTIONS(3987), 2, + ACTIONS(4002), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65245] = 6, - ACTIONS(18), 1, + [65259] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1802), 1, aux_sym__const_declaration_repeat1, STATE(1860), 1, sym_text_interpolation, - ACTIONS(3987), 2, + ACTIONS(4002), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65265] = 6, - ACTIONS(18), 1, + [65279] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1856), 1, aux_sym__const_declaration_repeat1, STATE(1861), 1, sym_text_interpolation, - ACTIONS(3989), 2, + ACTIONS(4004), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65285] = 6, - ACTIONS(18), 1, + [65299] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1787), 1, aux_sym__const_declaration_repeat1, STATE(1862), 1, sym_text_interpolation, - ACTIONS(3991), 2, + ACTIONS(4006), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65305] = 6, - ACTIONS(18), 1, + [65319] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1860), 1, aux_sym__const_declaration_repeat1, STATE(1863), 1, sym_text_interpolation, - ACTIONS(3993), 2, + ACTIONS(4008), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65325] = 6, + [65339] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3997), 1, + ACTIONS(4012), 1, sym_nowdoc_string, STATE(1814), 1, aux_sym_nowdoc_body_repeat1, STATE(1864), 1, sym_text_interpolation, - ACTIONS(3995), 2, + ACTIONS(4010), 2, sym_heredoc_end, sym__new_line, - [65345] = 4, - ACTIONS(18), 1, + [65359] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1865), 1, sym_text_interpolation, - ACTIONS(1700), 4, + ACTIONS(1704), 4, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [65361] = 7, - ACTIONS(18), 1, + [65375] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1063), 1, sym_compound_statement, @@ -130310,26 +130274,26 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2358), 1, sym__return_type, - [65383] = 4, - ACTIONS(18), 1, + [65397] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1867), 1, sym_text_interpolation, - ACTIONS(3896), 4, + ACTIONS(3906), 4, aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [65399] = 7, - ACTIONS(18), 1, + [65413] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1087), 1, sym_declaration_list, @@ -130337,14 +130301,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2447), 1, sym_class_interface_clause, - [65421] = 7, - ACTIONS(18), 1, + [65435] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(452), 1, sym_declaration_list, @@ -130352,126 +130316,126 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2361), 1, sym_class_interface_clause, - [65443] = 6, - ACTIONS(18), 1, + [65457] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4016), 1, anon_sym_COMMA, STATE(1870), 1, sym_text_interpolation, STATE(1920), 1, aux_sym_function_static_declaration_repeat1, - ACTIONS(3999), 2, + ACTIONS(4014), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65463] = 6, - ACTIONS(18), 1, + [65477] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4005), 1, + ACTIONS(4020), 1, anon_sym_COMMA, STATE(1871), 1, sym_text_interpolation, STATE(1921), 1, aux_sym_global_declaration_repeat1, - ACTIONS(4003), 2, + ACTIONS(4018), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65483] = 6, - ACTIONS(18), 1, + [65497] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3881), 1, anon_sym_COMMA, STATE(1801), 1, aux_sym_namespace_use_declaration_repeat1, STATE(1872), 1, sym_text_interpolation, - ACTIONS(4007), 2, + ACTIONS(4022), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65503] = 6, - ACTIONS(18), 1, + [65517] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3881), 1, anon_sym_COMMA, STATE(1873), 1, sym_text_interpolation, STATE(1924), 1, aux_sym_namespace_use_declaration_repeat1, - ACTIONS(4009), 2, + ACTIONS(4024), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65523] = 6, - ACTIONS(18), 1, + [65537] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1802), 1, aux_sym__const_declaration_repeat1, STATE(1874), 1, sym_text_interpolation, - ACTIONS(4011), 2, + ACTIONS(4026), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65543] = 6, - ACTIONS(18), 1, + [65557] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3881), 1, anon_sym_COMMA, STATE(1794), 1, aux_sym_namespace_use_declaration_repeat1, STATE(1875), 1, sym_text_interpolation, - ACTIONS(4007), 2, + ACTIONS(4022), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65563] = 6, - ACTIONS(18), 1, + [65577] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4005), 1, + ACTIONS(4020), 1, anon_sym_COMMA, STATE(1793), 1, aux_sym_global_declaration_repeat1, STATE(1876), 1, sym_text_interpolation, - ACTIONS(4013), 2, + ACTIONS(4028), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65583] = 6, - ACTIONS(18), 1, + [65597] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1877), 1, sym_text_interpolation, STATE(1933), 1, aux_sym__const_declaration_repeat1, - ACTIONS(4015), 2, + ACTIONS(4030), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65603] = 7, - ACTIONS(18), 1, + [65617] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1104), 1, sym_compound_statement, @@ -130479,14 +130443,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2353), 1, sym__return_type, - [65625] = 7, - ACTIONS(18), 1, + [65639] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1107), 1, sym_compound_statement, @@ -130494,14 +130458,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2346), 1, sym__return_type, - [65647] = 7, - ACTIONS(18), 1, + [65661] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, - anon_sym_LBRACE, ACTIONS(3431), 1, + anon_sym_LBRACE, + ACTIONS(3433), 1, aux_sym_base_clause_token1, STATE(1880), 1, sym_text_interpolation, @@ -130509,28 +130473,28 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2237), 1, sym_base_clause, - [65669] = 6, - ACTIONS(18), 1, + [65683] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4016), 1, anon_sym_COMMA, STATE(1812), 1, aux_sym_function_static_declaration_repeat1, STATE(1881), 1, sym_text_interpolation, - ACTIONS(4017), 2, + ACTIONS(4032), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65689] = 7, - ACTIONS(18), 1, + [65703] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1882), 1, sym_text_interpolation, @@ -130538,14 +130502,14 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2422), 1, sym_reference_modifier, - [65711] = 7, - ACTIONS(18), 1, + [65725] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1651), 1, sym_formal_parameters, @@ -130553,14 +130517,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2247), 1, sym_reference_modifier, - [65733] = 7, - ACTIONS(18), 1, + [65747] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1714), 1, sym_declaration_list, @@ -130568,14 +130532,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2442), 1, sym_class_interface_clause, - [65755] = 7, - ACTIONS(18), 1, + [65769] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(938), 1, sym_compound_statement, @@ -130583,14 +130547,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2443), 1, sym__return_type, - [65777] = 7, - ACTIONS(18), 1, + [65791] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3699), 1, + ACTIONS(3703), 1, anon_sym_LBRACE, STATE(501), 1, sym_enum_declaration_list, @@ -130598,14 +130562,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2344), 1, sym_class_interface_clause, - [65799] = 7, - ACTIONS(18), 1, + [65813] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1887), 1, sym_text_interpolation, @@ -130613,14 +130577,14 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2430), 1, sym_reference_modifier, - [65821] = 7, - ACTIONS(18), 1, + [65835] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1743), 1, sym_declaration_list, @@ -130628,28 +130592,29 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2327), 1, sym_class_interface_clause, - [65843] = 6, + [65857] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(3992), 1, + aux_sym_string_token2, + ACTIONS(3994), 1, + sym_string_value, + ACTIONS(4034), 1, anon_sym_SQUOTE, STATE(1834), 1, aux_sym_string_repeat1, STATE(1889), 1, sym_text_interpolation, - ACTIONS(3979), 2, - aux_sym_string_token2, - sym_string_value, - [65863] = 7, - ACTIONS(18), 1, + [65879] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3621), 1, + ACTIONS(3625), 1, anon_sym_LBRACE, STATE(1890), 1, sym_text_interpolation, @@ -130657,14 +130622,14 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2458), 1, sym_class_interface_clause, - [65885] = 7, - ACTIONS(18), 1, + [65901] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(913), 1, sym_compound_statement, @@ -130672,14 +130637,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2459), 1, sym__return_type, - [65907] = 7, - ACTIONS(18), 1, + [65923] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(915), 1, sym_compound_statement, @@ -130687,28 +130652,28 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2457), 1, sym__return_type, - [65929] = 6, - ACTIONS(18), 1, + [65945] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1588), 1, + anon_sym_LPAREN, STATE(1893), 1, sym_text_interpolation, STATE(2450), 1, sym_arguments, - ACTIONS(3569), 2, + ACTIONS(3573), 2, anon_sym_COMMA, anon_sym_RBRACK, - [65949] = 7, - ACTIONS(18), 1, + [65965] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(444), 1, sym_declaration_list, @@ -130716,28 +130681,28 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2336), 1, sym_class_interface_clause, - [65971] = 6, - ACTIONS(18), 1, + [65987] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1802), 1, aux_sym__const_declaration_repeat1, STATE(1895), 1, sym_text_interpolation, - ACTIONS(4021), 2, + ACTIONS(4036), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65991] = 7, - ACTIONS(18), 1, + [66007] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1759), 1, sym_declaration_list, @@ -130745,14 +130710,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2463), 1, sym_class_interface_clause, - [66013] = 7, - ACTIONS(18), 1, + [66029] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, anon_sym_LBRACE, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, STATE(944), 1, sym_declaration_list, @@ -130760,27 +130725,27 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2468), 1, sym_class_interface_clause, - [66035] = 5, - ACTIONS(18), 1, + [66051] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1898), 1, sym_text_interpolation, STATE(2495), 1, sym_declare_directive, - ACTIONS(4023), 3, + ACTIONS(4038), 3, anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [66053] = 7, - ACTIONS(18), 1, + [66069] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(929), 1, sym_compound_statement, @@ -130788,29 +130753,29 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2483), 1, sym__return_type, - [66075] = 7, - ACTIONS(18), 1, + [66091] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3050), 1, + ACTIONS(3052), 1, aux_sym__arrow_function_header_token1, - ACTIONS(4025), 1, + ACTIONS(4040), 1, aux_sym_function_static_declaration_token1, - ACTIONS(4027), 1, + ACTIONS(4042), 1, aux_sym_namespace_use_declaration_token2, STATE(1900), 1, sym_text_interpolation, STATE(2537), 1, sym_static_modifier, - [66097] = 7, - ACTIONS(18), 1, + [66113] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1780), 1, sym_declaration_list, @@ -130818,14 +130783,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2472), 1, sym_class_interface_clause, - [66119] = 7, - ACTIONS(18), 1, + [66135] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(907), 1, sym_compound_statement, @@ -130833,14 +130798,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2466), 1, sym__return_type, - [66141] = 7, - ACTIONS(18), 1, + [66157] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1680), 1, sym_formal_parameters, @@ -130848,28 +130813,28 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2486), 1, sym_reference_modifier, - [66163] = 6, - ACTIONS(18), 1, + [66179] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3985), 1, + ACTIONS(4000), 1, anon_sym_PIPE, STATE(1823), 1, aux_sym_type_list_repeat1, STATE(1904), 1, sym_text_interpolation, - ACTIONS(4029), 2, + ACTIONS(4044), 2, anon_sym_RPAREN, anon_sym_DOLLAR, - [66183] = 7, - ACTIONS(18), 1, + [66199] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(3433), 1, aux_sym_base_clause_token1, - ACTIONS(4031), 1, + ACTIONS(4046), 1, anon_sym_LBRACE, STATE(559), 1, sym_declaration_list, @@ -130877,84 +130842,85 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2478), 1, sym_base_clause, - [66205] = 6, - ACTIONS(18), 1, + [66221] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3951), 1, + ACTIONS(3964), 1, aux_sym_namespace_aliasing_clause_token1, STATE(1906), 1, sym_text_interpolation, STATE(2254), 1, sym_namespace_aliasing_clause, - ACTIONS(4033), 2, + ACTIONS(4048), 2, anon_sym_COMMA, anon_sym_RBRACE, - [66225] = 6, + [66241] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4035), 1, + ACTIONS(3992), 1, + aux_sym_string_token2, + ACTIONS(3994), 1, + sym_string_value, + ACTIONS(4050), 1, anon_sym_SQUOTE, STATE(1834), 1, aux_sym_string_repeat1, STATE(1907), 1, sym_text_interpolation, - ACTIONS(3979), 2, - aux_sym_string_token2, - sym_string_value, - [66245] = 6, - ACTIONS(18), 1, + [66263] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1802), 1, aux_sym__const_declaration_repeat1, STATE(1908), 1, sym_text_interpolation, - ACTIONS(4037), 2, + ACTIONS(4052), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66265] = 6, - ACTIONS(18), 1, + [66283] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1895), 1, aux_sym__const_declaration_repeat1, STATE(1909), 1, sym_text_interpolation, - ACTIONS(4039), 2, + ACTIONS(4054), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66285] = 6, - ACTIONS(18), 1, + [66303] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1857), 1, aux_sym__const_declaration_repeat1, STATE(1910), 1, sym_text_interpolation, - ACTIONS(4041), 2, + ACTIONS(4056), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66305] = 7, - ACTIONS(18), 1, + [66323] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1734), 1, sym_declaration_list, @@ -130962,168 +130928,168 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2425), 1, sym_class_interface_clause, - [66327] = 5, - ACTIONS(18), 1, + [66345] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4043), 1, + ACTIONS(4058), 1, anon_sym_COMMA, - ACTIONS(3517), 2, + ACTIONS(3519), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, STATE(1912), 2, sym_text_interpolation, aux_sym_base_clause_repeat1, - [66345] = 6, - ACTIONS(18), 1, + [66363] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3881), 1, anon_sym_COMMA, STATE(1872), 1, aux_sym_namespace_use_declaration_repeat1, STATE(1913), 1, sym_text_interpolation, - ACTIONS(4046), 2, + ACTIONS(4061), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66365] = 7, - ACTIONS(18), 1, + [66383] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3040), 1, + ACTIONS(3042), 1, aux_sym_function_static_declaration_token1, - ACTIONS(3050), 1, + ACTIONS(3052), 1, aux_sym__arrow_function_header_token1, - ACTIONS(4048), 1, + ACTIONS(4063), 1, aux_sym_namespace_use_declaration_token2, STATE(1914), 1, sym_text_interpolation, STATE(2537), 1, sym_static_modifier, - [66387] = 7, - ACTIONS(18), 1, + [66405] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3892), 1, + ACTIONS(3902), 1, anon_sym_LBRACE, - ACTIONS(4050), 1, + ACTIONS(4065), 1, anon_sym_SEMI, - ACTIONS(4052), 1, + ACTIONS(4067), 1, sym__automatic_semicolon, STATE(1385), 1, sym_compound_statement, STATE(1915), 1, sym_text_interpolation, - [66409] = 6, - ACTIONS(18), 1, + [66427] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(3912), 1, anon_sym_COMMA, STATE(1827), 1, aux_sym_property_declaration_repeat2, STATE(1916), 1, sym_text_interpolation, - ACTIONS(4054), 2, + ACTIONS(4069), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66429] = 6, - ACTIONS(18), 1, + [66447] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(3912), 1, anon_sym_COMMA, STATE(1828), 1, aux_sym_property_declaration_repeat2, STATE(1917), 1, sym_text_interpolation, - ACTIONS(4056), 2, + ACTIONS(4071), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66449] = 5, - ACTIONS(18), 1, + [66467] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1918), 1, sym_text_interpolation, STATE(2598), 1, sym_declare_directive, - ACTIONS(4023), 3, + ACTIONS(4038), 3, anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [66467] = 6, - ACTIONS(18), 1, + [66485] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4005), 1, + ACTIONS(4020), 1, anon_sym_COMMA, STATE(1876), 1, aux_sym_global_declaration_repeat1, STATE(1919), 1, sym_text_interpolation, - ACTIONS(4058), 2, + ACTIONS(4073), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66487] = 6, - ACTIONS(18), 1, + [66505] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4016), 1, anon_sym_COMMA, STATE(1812), 1, aux_sym_function_static_declaration_repeat1, STATE(1920), 1, sym_text_interpolation, - ACTIONS(4060), 2, + ACTIONS(4075), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66507] = 6, - ACTIONS(18), 1, + [66525] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4005), 1, + ACTIONS(4020), 1, anon_sym_COMMA, STATE(1793), 1, aux_sym_global_declaration_repeat1, STATE(1921), 1, sym_text_interpolation, - ACTIONS(4062), 2, + ACTIONS(4077), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66527] = 6, - ACTIONS(18), 1, + [66545] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3881), 1, anon_sym_COMMA, STATE(1922), 1, sym_text_interpolation, STATE(1942), 1, aux_sym_namespace_use_declaration_repeat1, - ACTIONS(4064), 2, + ACTIONS(4079), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66547] = 7, - ACTIONS(18), 1, + [66565] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, anon_sym_LBRACE, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, STATE(946), 1, sym_declaration_list, @@ -131131,28 +131097,28 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2408), 1, sym_class_interface_clause, - [66569] = 6, - ACTIONS(18), 1, + [66587] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3881), 1, anon_sym_COMMA, STATE(1801), 1, aux_sym_namespace_use_declaration_repeat1, STATE(1924), 1, sym_text_interpolation, - ACTIONS(4064), 2, + ACTIONS(4079), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66589] = 7, - ACTIONS(18), 1, + [66607] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, anon_sym_LBRACE, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, STATE(947), 1, sym_declaration_list, @@ -131160,67 +131126,67 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2403), 1, sym_class_interface_clause, - [66611] = 6, - ACTIONS(18), 1, + [66629] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(3912), 1, anon_sym_COMMA, STATE(1831), 1, aux_sym_property_declaration_repeat2, STATE(1926), 1, sym_text_interpolation, - ACTIONS(4066), 2, + ACTIONS(4081), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66631] = 5, - ACTIONS(18), 1, + [66649] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4070), 1, + ACTIONS(4085), 1, anon_sym_EQ, STATE(1927), 1, sym_text_interpolation, - ACTIONS(4068), 3, + ACTIONS(4083), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [66649] = 6, - ACTIONS(18), 1, + [66667] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4016), 1, anon_sym_COMMA, STATE(1881), 1, aux_sym_function_static_declaration_repeat1, STATE(1928), 1, sym_text_interpolation, - ACTIONS(4072), 2, + ACTIONS(4087), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66669] = 4, - ACTIONS(18), 1, + [66687] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1929), 1, sym_text_interpolation, - ACTIONS(4074), 4, + ACTIONS(4089), 4, aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [66685] = 7, - ACTIONS(18), 1, + [66703] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(965), 1, sym_compound_statement, @@ -131228,14 +131194,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2299), 1, sym__return_type, - [66707] = 7, - ACTIONS(18), 1, + [66725] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1679), 1, sym_formal_parameters, @@ -131243,69 +131209,70 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2399), 1, sym_reference_modifier, - [66729] = 6, - ACTIONS(18), 1, + [66747] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1932), 1, sym_text_interpolation, STATE(1948), 1, aux_sym__const_declaration_repeat1, - ACTIONS(4076), 2, + ACTIONS(4091), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66749] = 6, - ACTIONS(18), 1, + [66767] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1802), 1, aux_sym__const_declaration_repeat1, STATE(1933), 1, sym_text_interpolation, - ACTIONS(4078), 2, + ACTIONS(4093), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66769] = 5, - ACTIONS(18), 1, + [66787] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1934), 1, sym_text_interpolation, STATE(2504), 1, sym_declare_directive, - ACTIONS(4023), 3, + ACTIONS(4038), 3, anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [66787] = 6, + [66805] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3992), 1, + aux_sym_string_token2, + ACTIONS(3994), 1, + sym_string_value, + ACTIONS(4095), 1, anon_sym_SQUOTE, STATE(1889), 1, aux_sym_string_repeat1, STATE(1935), 1, sym_text_interpolation, - ACTIONS(3979), 2, - aux_sym_string_token2, - sym_string_value, - [66807] = 7, - ACTIONS(18), 1, + [66827] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1737), 1, anon_sym_AMP, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1936), 1, sym_text_interpolation, @@ -131313,26 +131280,26 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2349), 1, sym_reference_modifier, - [66829] = 4, - ACTIONS(18), 1, + [66849] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1937), 1, sym_text_interpolation, - ACTIONS(3517), 4, + ACTIONS(3519), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, - [66845] = 7, - ACTIONS(18), 1, + [66865] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, - aux_sym_class_interface_clause_token1, ACTIONS(3435), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1723), 1, sym_declaration_list, @@ -131340,26 +131307,26 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2310), 1, sym_class_interface_clause, - [66867] = 4, - ACTIONS(18), 1, + [66887] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1939), 1, sym_text_interpolation, - ACTIONS(3194), 4, + ACTIONS(3196), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [66883] = 7, - ACTIONS(18), 1, + [66903] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(950), 1, sym_compound_statement, @@ -131367,14 +131334,14 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2387), 1, sym__return_type, - [66905] = 7, - ACTIONS(18), 1, + [66925] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, STATE(957), 1, sym_compound_statement, @@ -131382,67 +131349,67 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2382), 1, sym__return_type, - [66927] = 6, - ACTIONS(18), 1, + [66947] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3881), 1, anon_sym_COMMA, STATE(1801), 1, aux_sym_namespace_use_declaration_repeat1, STATE(1942), 1, sym_text_interpolation, - ACTIONS(4082), 2, + ACTIONS(4097), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66947] = 4, - ACTIONS(18), 1, + [66967] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1943), 1, sym_text_interpolation, - ACTIONS(4074), 4, + ACTIONS(4089), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [66963] = 6, - ACTIONS(18), 1, + [66983] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1908), 1, aux_sym__const_declaration_repeat1, STATE(1944), 1, sym_text_interpolation, - ACTIONS(4078), 2, + ACTIONS(4093), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66983] = 5, - ACTIONS(18), 1, + [67003] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1945), 1, sym_text_interpolation, STATE(2625), 1, sym_declare_directive, - ACTIONS(4023), 3, + ACTIONS(4038), 3, anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [67001] = 7, - ACTIONS(18), 1, + [67021] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3621), 1, + ACTIONS(3625), 1, anon_sym_LBRACE, STATE(1946), 1, sym_text_interpolation, @@ -131450,14 +131417,14 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2388), 1, sym_class_interface_clause, - [67023] = 7, - ACTIONS(18), 1, + [67043] = 7, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, anon_sym_LBRACE, - ACTIONS(3433), 1, + ACTIONS(3435), 1, aux_sym_class_interface_clause_token1, STATE(969), 1, sym_declaration_list, @@ -131465,8211 +131432,8212 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2341), 1, sym_class_interface_clause, - [67045] = 6, - ACTIONS(18), 1, + [67065] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3869), 1, anon_sym_COMMA, STATE(1802), 1, aux_sym__const_declaration_repeat1, STATE(1948), 1, sym_text_interpolation, - ACTIONS(4084), 2, + ACTIONS(4099), 2, sym__automatic_semicolon, anon_sym_SEMI, - [67065] = 5, - ACTIONS(18), 1, + [67085] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4088), 1, + ACTIONS(4103), 1, anon_sym_EQ, STATE(1949), 1, sym_text_interpolation, - ACTIONS(4086), 2, + ACTIONS(4101), 2, sym__automatic_semicolon, anon_sym_SEMI, - [67082] = 5, - ACTIONS(18), 1, + [67102] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4090), 1, + ACTIONS(4105), 1, anon_sym_COMMA, - ACTIONS(4093), 1, + ACTIONS(4108), 1, anon_sym_RBRACK, STATE(1950), 2, sym_text_interpolation, aux_sym_attribute_group_repeat1, - [67099] = 5, - ACTIONS(18), 1, + [67119] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1530), 1, + ACTIONS(1532), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1951), 1, sym_text_interpolation, - ACTIONS(1528), 2, + ACTIONS(1530), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67116] = 5, - ACTIONS(18), 1, + [67136] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1496), 1, + ACTIONS(1498), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1952), 1, sym_text_interpolation, - ACTIONS(1494), 2, + ACTIONS(1496), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67133] = 5, - ACTIONS(18), 1, + [67153] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(316), 1, + ACTIONS(318), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1953), 1, sym_text_interpolation, STATE(1919), 2, sym_dynamic_variable_name, sym_variable_name, - [67150] = 6, - ACTIONS(18), 1, + [67170] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1720), 1, - anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1724), 1, + anon_sym_DOLLAR, STATE(1699), 1, sym_variable_name, STATE(1954), 1, sym_text_interpolation, STATE(2180), 1, sym_property_element, - [67169] = 5, - ACTIONS(18), 1, + [67189] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1332), 1, + ACTIONS(1334), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1955), 1, sym_text_interpolation, - ACTIONS(1330), 2, + ACTIONS(1332), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67186] = 6, - ACTIONS(18), 1, + [67206] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1720), 1, - anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1724), 1, + anon_sym_DOLLAR, STATE(1699), 1, sym_variable_name, STATE(1830), 1, sym_property_element, STATE(1956), 1, sym_text_interpolation, - [67205] = 5, - ACTIONS(18), 1, + [67225] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1256), 1, + ACTIONS(1258), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1957), 1, sym_text_interpolation, - ACTIONS(1254), 2, + ACTIONS(1256), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67222] = 5, - ACTIONS(18), 1, + [67242] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1252), 1, + ACTIONS(1254), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1958), 1, sym_text_interpolation, - ACTIONS(1250), 2, + ACTIONS(1252), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67239] = 5, - ACTIONS(18), 1, + [67259] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1244), 1, + ACTIONS(1246), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1959), 1, sym_text_interpolation, - ACTIONS(1242), 2, + ACTIONS(1244), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67256] = 6, - ACTIONS(18), 1, + [67276] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4095), 1, + ACTIONS(4110), 1, anon_sym_SQUOTE, - ACTIONS(4097), 1, + ACTIONS(4112), 1, anon_sym_DQUOTE, - ACTIONS(4099), 1, + ACTIONS(4114), 1, sym_heredoc_start, STATE(1960), 1, sym_text_interpolation, - [67275] = 6, - ACTIONS(18), 1, + [67295] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4101), 1, + ACTIONS(4116), 1, anon_sym_COMMA, - ACTIONS(4103), 1, + ACTIONS(4118), 1, anon_sym_RPAREN, STATE(1961), 1, sym_text_interpolation, STATE(1989), 1, aux_sym_array_creation_expression_repeat1, - [67294] = 5, - ACTIONS(18), 1, + [67314] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1192), 1, + ACTIONS(1194), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1962), 1, sym_text_interpolation, - ACTIONS(1190), 2, + ACTIONS(1192), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67311] = 5, - ACTIONS(18), 1, + [67331] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1192), 1, + ACTIONS(1194), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1963), 1, sym_text_interpolation, - ACTIONS(1190), 2, + ACTIONS(1192), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67328] = 6, - ACTIONS(18), 1, + [67348] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3048), 1, + ACTIONS(3050), 1, aux_sym_readonly_modifier_token1, - ACTIONS(4105), 1, + ACTIONS(4120), 1, aux_sym_class_declaration_token1, STATE(1964), 1, sym_text_interpolation, STATE(2545), 1, sym_readonly_modifier, - [67347] = 5, - ACTIONS(18), 1, + [67367] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1392), 1, + ACTIONS(1394), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1965), 1, sym_text_interpolation, - ACTIONS(1390), 2, + ACTIONS(1392), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67364] = 6, - ACTIONS(18), 1, + [67384] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3829), 1, + ACTIONS(3839), 1, anon_sym_RPAREN, - ACTIONS(4107), 1, + ACTIONS(4122), 1, anon_sym_COMMA, STATE(1966), 1, sym_text_interpolation, STATE(2209), 1, aux_sym_anonymous_function_use_clause_repeat1, - [67383] = 6, - ACTIONS(18), 1, + [67403] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(839), 1, + ACTIONS(841), 1, anon_sym_RBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4109), 1, + ACTIONS(4124), 1, anon_sym_COMMA, STATE(1967), 1, sym_text_interpolation, STATE(2206), 1, aux_sym_array_creation_expression_repeat1, - [67402] = 5, - ACTIONS(18), 1, + [67422] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1208), 1, + ACTIONS(1210), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1968), 1, sym_text_interpolation, - ACTIONS(1206), 2, + ACTIONS(1208), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67419] = 6, - ACTIONS(18), 1, + [67439] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(3158), 1, anon_sym_RBRACK, - ACTIONS(4111), 1, + ACTIONS(4126), 1, anon_sym_COMMA, STATE(1950), 1, aux_sym_attribute_group_repeat1, STATE(1969), 1, sym_text_interpolation, - [67438] = 5, - ACTIONS(18), 1, + [67458] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4113), 1, + ACTIONS(4128), 1, anon_sym_COMMA, - ACTIONS(4116), 1, + ACTIONS(4131), 1, anon_sym_RPAREN, STATE(1970), 2, sym_text_interpolation, aux_sym_array_creation_expression_repeat1, - [67455] = 5, - ACTIONS(18), 1, + [67475] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1212), 1, + ACTIONS(1214), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1971), 1, sym_text_interpolation, - ACTIONS(1210), 2, + ACTIONS(1212), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67472] = 5, - ACTIONS(18), 1, + [67492] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1212), 1, + ACTIONS(1214), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1972), 1, sym_text_interpolation, - ACTIONS(1210), 2, + ACTIONS(1212), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67489] = 5, - ACTIONS(18), 1, + [67509] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1232), 1, + ACTIONS(1234), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1973), 1, sym_text_interpolation, - ACTIONS(1230), 2, + ACTIONS(1232), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67506] = 6, - ACTIONS(18), 1, + [67526] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4118), 1, + ACTIONS(4133), 1, anon_sym_COMMA, - ACTIONS(4120), 1, + ACTIONS(4135), 1, anon_sym_RPAREN, STATE(1974), 1, sym_text_interpolation, STATE(2011), 1, aux_sym_arguments_repeat1, - [67525] = 5, - ACTIONS(18), 1, + [67545] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4139), 1, anon_sym_EQ, STATE(1975), 1, sym_text_interpolation, - ACTIONS(4122), 2, + ACTIONS(4137), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67542] = 5, - ACTIONS(18), 1, + [67562] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1268), 1, + ACTIONS(1270), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1976), 1, sym_text_interpolation, - ACTIONS(1266), 2, + ACTIONS(1268), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67559] = 5, - ACTIONS(18), 1, + [67579] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1284), 1, + ACTIONS(1286), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1977), 1, sym_text_interpolation, - ACTIONS(1282), 2, + ACTIONS(1284), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67576] = 5, - ACTIONS(18), 1, + [67596] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4128), 1, + ACTIONS(4143), 1, anon_sym_EQ, STATE(1978), 1, sym_text_interpolation, - ACTIONS(4126), 2, + ACTIONS(4141), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67593] = 5, - ACTIONS(18), 1, + [67613] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1288), 1, + ACTIONS(1290), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1979), 1, sym_text_interpolation, - ACTIONS(1286), 2, + ACTIONS(1288), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67610] = 5, - ACTIONS(18), 1, + [67630] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1320), 1, + ACTIONS(1322), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1980), 1, sym_text_interpolation, - ACTIONS(1318), 2, + ACTIONS(1320), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67627] = 5, - ACTIONS(18), 1, + [67647] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4132), 1, + ACTIONS(4147), 1, anon_sym_EQ, STATE(1981), 1, sym_text_interpolation, - ACTIONS(4130), 2, + ACTIONS(4145), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67644] = 6, - ACTIONS(18), 1, + [67664] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1779), 1, + ACTIONS(1781), 1, anon_sym_RPAREN, - ACTIONS(4134), 1, + ACTIONS(4149), 1, anon_sym_COMMA, STATE(1982), 1, sym_text_interpolation, STATE(2193), 1, aux_sym_formal_parameters_repeat1, - [67663] = 5, - ACTIONS(18), 1, + [67683] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1328), 1, + ACTIONS(1330), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1983), 1, sym_text_interpolation, - ACTIONS(1326), 2, + ACTIONS(1328), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67680] = 5, - ACTIONS(18), 1, + [67700] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1364), 1, + ACTIONS(1366), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1984), 1, sym_text_interpolation, - ACTIONS(1362), 2, + ACTIONS(1364), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67697] = 6, - ACTIONS(18), 1, + [67717] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3048), 1, + ACTIONS(3050), 1, aux_sym_readonly_modifier_token1, - ACTIONS(4136), 1, + ACTIONS(4151), 1, aux_sym_class_declaration_token1, STATE(1985), 1, sym_text_interpolation, STATE(2629), 1, sym_readonly_modifier, - [67716] = 5, - ACTIONS(18), 1, + [67736] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1376), 1, + ACTIONS(1378), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1986), 1, sym_text_interpolation, - ACTIONS(1374), 2, + ACTIONS(1376), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67733] = 6, - ACTIONS(18), 1, + [67753] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3633), 1, + ACTIONS(3637), 1, anon_sym_BSLASH, - ACTIONS(3929), 1, + ACTIONS(3939), 1, sym_name, STATE(1987), 1, sym_text_interpolation, STATE(2595), 1, sym_namespace_name, - [67752] = 5, - ACTIONS(18), 1, + [67772] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1472), 1, + ACTIONS(1474), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1988), 1, sym_text_interpolation, - ACTIONS(1470), 2, + ACTIONS(1472), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67769] = 6, - ACTIONS(18), 1, + [67789] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(837), 1, + ACTIONS(839), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4138), 1, + ACTIONS(4153), 1, anon_sym_COMMA, STATE(1970), 1, aux_sym_array_creation_expression_repeat1, STATE(1989), 1, sym_text_interpolation, - [67788] = 6, - ACTIONS(18), 1, + [67808] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3048), 1, + ACTIONS(3050), 1, aux_sym_readonly_modifier_token1, - ACTIONS(4140), 1, + ACTIONS(4155), 1, aux_sym_class_declaration_token1, STATE(1990), 1, sym_text_interpolation, STATE(2617), 1, sym_readonly_modifier, - [67807] = 5, - ACTIONS(18), 1, + [67827] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1510), 1, + ACTIONS(1512), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1991), 1, sym_text_interpolation, - ACTIONS(1508), 2, + ACTIONS(1510), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67824] = 5, - ACTIONS(18), 1, + [67844] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1510), 1, + ACTIONS(1512), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1992), 1, sym_text_interpolation, - ACTIONS(1508), 2, + ACTIONS(1510), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67841] = 5, - ACTIONS(18), 1, + [67861] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1538), 1, + ACTIONS(1540), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1993), 1, sym_text_interpolation, - ACTIONS(1536), 2, + ACTIONS(1538), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67858] = 5, - ACTIONS(18), 1, + [67878] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1538), 1, + ACTIONS(1540), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1994), 1, sym_text_interpolation, - ACTIONS(1536), 2, + ACTIONS(1538), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67875] = 5, - ACTIONS(18), 1, + [67895] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1546), 1, + ACTIONS(1548), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1995), 1, sym_text_interpolation, - ACTIONS(1544), 2, + ACTIONS(1546), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67892] = 6, - ACTIONS(18), 1, + [67912] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4142), 1, + ACTIONS(4157), 1, anon_sym_COMMA, - ACTIONS(4144), 1, + ACTIONS(4159), 1, anon_sym_RBRACE, STATE(1996), 1, sym_text_interpolation, STATE(2042), 1, aux_sym_match_block_repeat1, - [67911] = 5, - ACTIONS(18), 1, + [67931] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1380), 1, + ACTIONS(1382), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1997), 1, sym_text_interpolation, - ACTIONS(1378), 2, + ACTIONS(1380), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67928] = 5, - ACTIONS(18), 1, + [67948] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4148), 1, + ACTIONS(4163), 1, anon_sym_EQ, STATE(1998), 1, sym_text_interpolation, - ACTIONS(4146), 2, + ACTIONS(4161), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67945] = 5, - ACTIONS(18), 1, + [67965] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1380), 1, + ACTIONS(1382), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1999), 1, sym_text_interpolation, - ACTIONS(1378), 2, + ACTIONS(1380), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67962] = 4, - ACTIONS(18), 1, + [67982] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2000), 1, sym_text_interpolation, - ACTIONS(4150), 3, + ACTIONS(4165), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [67977] = 5, - ACTIONS(18), 1, + [67997] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1200), 1, + ACTIONS(1202), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2001), 1, sym_text_interpolation, - ACTIONS(1198), 2, + ACTIONS(1200), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67994] = 5, - ACTIONS(18), 1, + [68014] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1280), 1, + ACTIONS(1282), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2002), 1, sym_text_interpolation, - ACTIONS(1278), 2, + ACTIONS(1280), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68011] = 5, - ACTIONS(18), 1, + [68031] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1452), 1, + ACTIONS(1454), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2003), 1, sym_text_interpolation, - ACTIONS(1450), 2, + ACTIONS(1452), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68028] = 6, - ACTIONS(18), 1, + [68048] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4167), 1, anon_sym_COMMA, - ACTIONS(4154), 1, + ACTIONS(4169), 1, anon_sym_RBRACE, STATE(2004), 1, sym_text_interpolation, STATE(2195), 1, aux_sym_namespace_use_group_repeat1, - [68047] = 6, - ACTIONS(18), 1, + [68067] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(4156), 1, + ACTIONS(4171), 1, anon_sym_EQ_GT, STATE(2005), 1, sym_text_interpolation, STATE(2491), 1, sym__return_type, - [68066] = 5, - ACTIONS(18), 1, + [68086] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1416), 1, + ACTIONS(1418), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2006), 1, sym_text_interpolation, - ACTIONS(1414), 2, + ACTIONS(1416), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68083] = 5, - ACTIONS(18), 1, + [68103] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1408), 1, + ACTIONS(1410), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2007), 1, sym_text_interpolation, - ACTIONS(1406), 2, + ACTIONS(1408), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68100] = 6, + [68120] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4173), 1, sym__new_line, - ACTIONS(4160), 1, + ACTIONS(4175), 1, sym_heredoc_end, STATE(2008), 1, sym_text_interpolation, STATE(2413), 1, sym_nowdoc_body, - [68119] = 6, + [68139] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4177), 1, sym__new_line, - ACTIONS(4164), 1, + ACTIONS(4179), 1, sym_heredoc_end, STATE(2009), 1, sym_text_interpolation, STATE(2419), 1, sym_heredoc_body, - [68138] = 5, - ACTIONS(18), 1, + [68158] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1220), 1, + ACTIONS(1222), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2010), 1, sym_text_interpolation, - ACTIONS(1218), 2, + ACTIONS(1220), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68155] = 6, - ACTIONS(18), 1, + [68175] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(777), 1, + ACTIONS(779), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4181), 1, anon_sym_COMMA, STATE(2011), 1, sym_text_interpolation, STATE(2108), 1, aux_sym_arguments_repeat1, - [68174] = 4, - ACTIONS(18), 1, + [68194] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2012), 1, sym_text_interpolation, - ACTIONS(3517), 3, + ACTIONS(3519), 3, anon_sym_COMMA, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [68189] = 5, - ACTIONS(18), 1, + [68209] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1336), 1, + ACTIONS(1338), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2013), 1, sym_text_interpolation, - ACTIONS(1334), 2, + ACTIONS(1336), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68206] = 5, - ACTIONS(18), 1, + [68226] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1324), 1, + ACTIONS(1326), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2014), 1, sym_text_interpolation, - ACTIONS(1322), 2, + ACTIONS(1324), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68223] = 5, - ACTIONS(18), 1, + [68243] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4170), 1, + ACTIONS(4185), 1, anon_sym_EQ, STATE(2015), 1, sym_text_interpolation, - ACTIONS(4168), 2, + ACTIONS(4183), 2, sym__automatic_semicolon, anon_sym_SEMI, - [68240] = 6, + [68260] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4177), 1, sym__new_line, - ACTIONS(4172), 1, + ACTIONS(4187), 1, sym_heredoc_end, STATE(2016), 1, sym_text_interpolation, STATE(2288), 1, sym_heredoc_body, - [68259] = 5, - ACTIONS(18), 1, + [68279] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1324), 1, + ACTIONS(1326), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2017), 1, sym_text_interpolation, - ACTIONS(1322), 2, + ACTIONS(1324), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68276] = 5, - ACTIONS(18), 1, + [68296] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1292), 1, + ACTIONS(1294), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2018), 1, sym_text_interpolation, - ACTIONS(1290), 2, + ACTIONS(1292), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68293] = 5, - ACTIONS(18), 1, + [68313] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1432), 1, + ACTIONS(1434), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2019), 1, sym_text_interpolation, - ACTIONS(1430), 2, + ACTIONS(1432), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68310] = 6, - ACTIONS(18), 1, + [68330] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4174), 1, + ACTIONS(4189), 1, anon_sym_COMMA, - ACTIONS(4176), 1, + ACTIONS(4191), 1, anon_sym_RBRACK, STATE(1969), 1, aux_sym_attribute_group_repeat1, STATE(2020), 1, sym_text_interpolation, - [68329] = 6, - ACTIONS(18), 1, + [68349] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4178), 1, + ACTIONS(4193), 1, anon_sym_COMMA, - ACTIONS(4180), 1, + ACTIONS(4195), 1, anon_sym_RBRACK, STATE(1967), 1, aux_sym_array_creation_expression_repeat1, STATE(2021), 1, sym_text_interpolation, - [68348] = 6, - ACTIONS(18), 1, + [68368] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(4197), 1, anon_sym_LBRACE, - ACTIONS(4184), 1, + ACTIONS(4199), 1, anon_sym_COLON, STATE(457), 1, sym_switch_block, STATE(2022), 1, sym_text_interpolation, - [68367] = 5, - ACTIONS(18), 1, + [68387] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1276), 1, + ACTIONS(1278), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2023), 1, sym_text_interpolation, - ACTIONS(1274), 2, + ACTIONS(1276), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68384] = 5, - ACTIONS(18), 1, + [68404] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3955), 1, + ACTIONS(3968), 1, anon_sym_EQ, STATE(2024), 1, sym_text_interpolation, - ACTIONS(4186), 2, + ACTIONS(4201), 2, anon_sym_COMMA, anon_sym_RBRACK, - [68401] = 6, - ACTIONS(18), 1, + [68421] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4188), 1, + ACTIONS(4203), 1, anon_sym_COMMA, - ACTIONS(4190), 1, + ACTIONS(4205), 1, anon_sym_RBRACK, STATE(2025), 1, sym_text_interpolation, STATE(2084), 1, aux_sym__array_destructing_repeat1, - [68420] = 6, - ACTIONS(18), 1, + [68440] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4192), 1, + ACTIONS(4207), 1, anon_sym_COMMA, - ACTIONS(4194), 1, + ACTIONS(4209), 1, anon_sym_RBRACK, STATE(2026), 1, sym_text_interpolation, STATE(2085), 1, aux_sym_array_creation_expression_repeat1, - [68439] = 6, - ACTIONS(18), 1, + [68459] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4188), 1, + ACTIONS(4203), 1, anon_sym_COMMA, - ACTIONS(4190), 1, + ACTIONS(4205), 1, anon_sym_RBRACK, STATE(2027), 1, sym_text_interpolation, STATE(2086), 1, aux_sym__array_destructing_repeat1, - [68458] = 5, - ACTIONS(18), 1, + [68478] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1264), 1, + ACTIONS(1266), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2028), 1, sym_text_interpolation, - ACTIONS(1262), 2, + ACTIONS(1264), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68475] = 5, - ACTIONS(18), 1, + [68495] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4198), 1, + ACTIONS(4213), 1, aux_sym_else_clause_token1, STATE(2029), 1, sym_text_interpolation, - ACTIONS(4196), 2, + ACTIONS(4211), 2, aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [68492] = 5, - ACTIONS(18), 1, + [68512] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1260), 1, + ACTIONS(1262), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2030), 1, sym_text_interpolation, - ACTIONS(1258), 2, + ACTIONS(1260), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68509] = 6, - ACTIONS(18), 1, + [68529] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4200), 1, + ACTIONS(4215), 1, anon_sym_COMMA, - ACTIONS(4202), 1, + ACTIONS(4217), 1, anon_sym_RBRACK, STATE(2031), 1, sym_text_interpolation, STATE(2087), 1, aux_sym_attribute_group_repeat1, - [68528] = 4, + [68548] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, + ACTIONS(4221), 1, + sym_string_value, STATE(2032), 1, sym_text_interpolation, - ACTIONS(4204), 3, + ACTIONS(4219), 2, anon_sym_SQUOTE, aux_sym_string_token2, - sym_string_value, - [68543] = 5, - ACTIONS(18), 1, + [68565] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1260), 1, + ACTIONS(1262), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2033), 1, sym_text_interpolation, - ACTIONS(1258), 2, + ACTIONS(1260), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68560] = 6, + [68582] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4177), 1, sym__new_line, - ACTIONS(4206), 1, + ACTIONS(4223), 1, sym_heredoc_end, STATE(2034), 1, sym_text_interpolation, STATE(2446), 1, sym_heredoc_body, - [68579] = 5, - ACTIONS(18), 1, + [68601] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1240), 1, + ACTIONS(1242), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2035), 1, sym_text_interpolation, - ACTIONS(1238), 2, + ACTIONS(1240), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68596] = 5, - ACTIONS(18), 1, + [68618] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1236), 1, + ACTIONS(1238), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2036), 1, sym_text_interpolation, - ACTIONS(1234), 2, + ACTIONS(1236), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68613] = 5, - ACTIONS(18), 1, + [68635] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1176), 1, + ACTIONS(1178), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2037), 1, sym_text_interpolation, - ACTIONS(1174), 2, + ACTIONS(1176), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68630] = 6, - ACTIONS(18), 1, + [68652] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(4208), 1, + ACTIONS(4225), 1, anon_sym_EQ_GT, STATE(2038), 1, sym_text_interpolation, STATE(2489), 1, sym__return_type, - [68649] = 6, - ACTIONS(18), 1, + [68671] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3048), 1, + ACTIONS(3050), 1, aux_sym_readonly_modifier_token1, - ACTIONS(4210), 1, + ACTIONS(4227), 1, aux_sym_class_declaration_token1, STATE(2039), 1, sym_text_interpolation, STATE(2522), 1, sym_readonly_modifier, - [68668] = 5, - ACTIONS(18), 1, + [68690] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1400), 1, + ACTIONS(1402), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2040), 1, sym_text_interpolation, - ACTIONS(1398), 2, + ACTIONS(1400), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68685] = 6, - ACTIONS(18), 1, + [68707] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1720), 1, - anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1724), 1, + anon_sym_DOLLAR, STATE(1927), 1, sym_variable_name, STATE(2041), 1, sym_text_interpolation, STATE(2110), 1, sym_static_variable_declaration, - [68704] = 6, - ACTIONS(18), 1, + [68726] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(858), 1, + ACTIONS(860), 1, anon_sym_RBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4212), 1, + ACTIONS(4229), 1, anon_sym_COMMA, STATE(2042), 1, sym_text_interpolation, STATE(2054), 1, aux_sym_match_block_repeat1, - [68723] = 5, - ACTIONS(18), 1, + [68745] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1526), 1, + ACTIONS(1528), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2043), 1, sym_text_interpolation, - ACTIONS(1524), 2, + ACTIONS(1526), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68740] = 5, - ACTIONS(18), 1, + [68762] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(316), 1, + ACTIONS(318), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2044), 1, sym_text_interpolation, STATE(2113), 2, sym_dynamic_variable_name, sym_variable_name, - [68757] = 5, - ACTIONS(18), 1, + [68779] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1188), 1, + ACTIONS(1190), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2045), 1, sym_text_interpolation, - ACTIONS(1186), 2, + ACTIONS(1188), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68774] = 5, - ACTIONS(18), 1, + [68796] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1480), 1, + ACTIONS(1482), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2046), 1, sym_text_interpolation, - ACTIONS(1478), 2, + ACTIONS(1480), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68791] = 4, - ACTIONS(18), 1, + [68813] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2047), 1, sym_text_interpolation, - ACTIONS(4214), 3, + ACTIONS(4231), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [68806] = 5, - ACTIONS(18), 1, + [68828] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1468), 1, + ACTIONS(1470), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2048), 1, sym_text_interpolation, - ACTIONS(1466), 2, + ACTIONS(1468), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68823] = 6, - ACTIONS(18), 1, + [68845] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4216), 1, + ACTIONS(4233), 1, sym_name, - ACTIONS(4218), 1, + ACTIONS(4235), 1, anon_sym_LBRACE, STATE(2049), 1, sym_text_interpolation, STATE(2401), 1, sym_namespace_use_group, - [68842] = 5, - ACTIONS(18), 1, + [68864] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1436), 1, + ACTIONS(1438), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2050), 1, sym_text_interpolation, - ACTIONS(1434), 2, + ACTIONS(1436), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68859] = 6, - ACTIONS(18), 1, + [68881] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4220), 1, + ACTIONS(4237), 1, anon_sym_LBRACE, - ACTIONS(4222), 1, + ACTIONS(4239), 1, anon_sym_COLON, STATE(2051), 1, sym_text_interpolation, STATE(2103), 1, sym_switch_block, - [68878] = 6, - ACTIONS(18), 1, + [68900] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(4241), 1, anon_sym_DOT_DOT_DOT, STATE(2052), 1, sym_text_interpolation, STATE(2127), 1, sym_variable_name, - [68897] = 6, - ACTIONS(18), 1, + [68919] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4226), 1, + ACTIONS(4243), 1, anon_sym_COMMA, - ACTIONS(4228), 1, + ACTIONS(4245), 1, anon_sym_RPAREN, STATE(2053), 1, sym_text_interpolation, STATE(2129), 1, aux_sym_formal_parameters_repeat1, - [68916] = 5, - ACTIONS(18), 1, + [68938] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4230), 1, + ACTIONS(4247), 1, anon_sym_COMMA, - ACTIONS(4233), 1, + ACTIONS(4250), 1, anon_sym_RBRACE, STATE(2054), 2, sym_text_interpolation, aux_sym_match_block_repeat1, - [68933] = 5, - ACTIONS(18), 1, + [68955] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(2617), 1, anon_sym_EQ_GT, - ACTIONS(4235), 1, + ACTIONS(4252), 1, anon_sym_COMMA, STATE(2055), 2, sym_text_interpolation, aux_sym_match_condition_list_repeat1, - [68950] = 5, - ACTIONS(18), 1, + [68972] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1388), 1, + ACTIONS(1390), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2056), 1, sym_text_interpolation, - ACTIONS(1386), 2, + ACTIONS(1388), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68967] = 5, - ACTIONS(18), 1, + [68989] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4240), 1, + ACTIONS(4257), 1, anon_sym_EQ, STATE(2057), 1, sym_text_interpolation, - ACTIONS(4238), 2, + ACTIONS(4255), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68984] = 6, - ACTIONS(18), 1, + [69006] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3775), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, STATE(2058), 1, sym_text_interpolation, STATE(2572), 1, sym__return_type, - [69003] = 5, - ACTIONS(18), 1, + [69025] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1384), 1, + ACTIONS(1386), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2059), 1, sym_text_interpolation, - ACTIONS(1382), 2, + ACTIONS(1384), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69020] = 5, - ACTIONS(18), 1, + [69042] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1360), 1, + ACTIONS(1362), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2060), 1, sym_text_interpolation, - ACTIONS(1358), 2, + ACTIONS(1360), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69037] = 6, - ACTIONS(18), 1, + [69059] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(3149), 1, anon_sym_AMP, - ACTIONS(4242), 1, + ACTIONS(4259), 1, anon_sym_RPAREN, STATE(1481), 1, aux_sym_intersection_type_repeat1, STATE(2061), 1, sym_text_interpolation, - [69056] = 5, - ACTIONS(18), 1, + [69078] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1360), 1, + ACTIONS(1362), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2062), 1, sym_text_interpolation, - ACTIONS(1358), 2, + ACTIONS(1360), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69073] = 5, - ACTIONS(18), 1, + [69095] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1352), 1, + ACTIONS(1354), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2063), 1, sym_text_interpolation, - ACTIONS(1350), 2, + ACTIONS(1352), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69090] = 5, - ACTIONS(18), 1, + [69112] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1316), 1, + ACTIONS(1318), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2064), 1, sym_text_interpolation, - ACTIONS(1314), 2, + ACTIONS(1316), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69107] = 5, - ACTIONS(18), 1, + [69129] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1312), 1, + ACTIONS(1314), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2065), 1, sym_text_interpolation, - ACTIONS(1310), 2, + ACTIONS(1312), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69124] = 5, - ACTIONS(18), 1, + [69146] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1308), 1, + ACTIONS(1310), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2066), 1, sym_text_interpolation, - ACTIONS(1306), 2, + ACTIONS(1308), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69141] = 6, - ACTIONS(18), 1, + [69163] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(4244), 1, + ACTIONS(4261), 1, anon_sym_EQ_GT, STATE(2067), 1, sym_text_interpolation, STATE(2605), 1, sym__return_type, - [69160] = 5, - ACTIONS(18), 1, + [69182] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1272), 1, + ACTIONS(1274), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2068), 1, sym_text_interpolation, - ACTIONS(1270), 2, + ACTIONS(1272), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69177] = 5, - ACTIONS(18), 1, + [69199] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1440), 1, + ACTIONS(1442), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2069), 1, sym_text_interpolation, - ACTIONS(1438), 2, + ACTIONS(1440), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69194] = 4, - ACTIONS(18), 1, + [69216] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2070), 1, sym_text_interpolation, - ACTIONS(4246), 3, + ACTIONS(4263), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [69209] = 6, - ACTIONS(18), 1, + [69231] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4248), 1, + ACTIONS(4265), 1, anon_sym_COMMA, - ACTIONS(4250), 1, + ACTIONS(4267), 1, anon_sym_RPAREN, STATE(2071), 1, sym_text_interpolation, STATE(2171), 1, aux_sym_array_creation_expression_repeat1, - [69228] = 5, - ACTIONS(18), 1, + [69250] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1248), 1, + ACTIONS(1250), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2072), 1, sym_text_interpolation, - ACTIONS(1246), 2, + ACTIONS(1248), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69245] = 4, + [69267] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(2073), 1, sym_text_interpolation, - ACTIONS(4252), 3, + ACTIONS(4269), 3, sym_heredoc_end, sym_nowdoc_string, sym__new_line, - [69260] = 5, - ACTIONS(18), 1, + [69282] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1180), 1, + ACTIONS(1182), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2074), 1, sym_text_interpolation, - ACTIONS(1178), 2, + ACTIONS(1180), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69277] = 5, - ACTIONS(18), 1, + [69299] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1300), 1, + ACTIONS(1302), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2075), 1, sym_text_interpolation, - ACTIONS(1298), 2, + ACTIONS(1300), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69294] = 5, - ACTIONS(18), 1, + [69316] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1340), 1, + ACTIONS(1342), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2076), 1, sym_text_interpolation, - ACTIONS(1338), 2, + ACTIONS(1340), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69311] = 5, - ACTIONS(18), 1, + [69333] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1344), 1, + ACTIONS(1346), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2077), 1, sym_text_interpolation, - ACTIONS(1342), 2, + ACTIONS(1344), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69328] = 4, - ACTIONS(18), 1, + [69350] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2078), 1, sym_text_interpolation, - ACTIONS(4254), 3, + ACTIONS(4271), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [69343] = 6, - ACTIONS(18), 1, + [69365] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4256), 1, + ACTIONS(4273), 1, anon_sym_RPAREN, STATE(2079), 1, sym_text_interpolation, STATE(2199), 1, aux_sym__list_destructing_repeat1, - [69362] = 5, - ACTIONS(18), 1, + [69384] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1372), 1, + ACTIONS(1374), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2080), 1, sym_text_interpolation, - ACTIONS(1370), 2, + ACTIONS(1372), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69379] = 6, - ACTIONS(18), 1, + [69401] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1682), 1, - anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1686), 1, + anon_sym_RPAREN, STATE(2081), 1, sym_text_interpolation, STATE(2190), 1, aux_sym__list_destructing_repeat1, - [69398] = 6, - ACTIONS(18), 1, + [69420] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1682), 1, - anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1686), 1, + anon_sym_RPAREN, STATE(2082), 1, sym_text_interpolation, STATE(2199), 1, aux_sym__list_destructing_repeat1, - [69417] = 5, - ACTIONS(18), 1, + [69439] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1420), 1, + ACTIONS(1422), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2083), 1, sym_text_interpolation, - ACTIONS(1418), 2, + ACTIONS(1420), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69434] = 6, - ACTIONS(18), 1, + [69456] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4188), 1, + ACTIONS(4203), 1, anon_sym_COMMA, - ACTIONS(4258), 1, + ACTIONS(4275), 1, anon_sym_RBRACK, STATE(2084), 1, sym_text_interpolation, STATE(2086), 1, aux_sym__array_destructing_repeat1, - [69453] = 6, - ACTIONS(18), 1, + [69475] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(845), 1, + ACTIONS(847), 1, anon_sym_RBRACK, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4260), 1, + ACTIONS(4277), 1, anon_sym_COMMA, STATE(2085), 1, sym_text_interpolation, STATE(2206), 1, aux_sym_array_creation_expression_repeat1, - [69472] = 5, - ACTIONS(18), 1, + [69494] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4279), 1, anon_sym_COMMA, - ACTIONS(4265), 1, + ACTIONS(4282), 1, anon_sym_RBRACK, STATE(2086), 2, sym_text_interpolation, aux_sym__array_destructing_repeat1, - [69489] = 6, - ACTIONS(18), 1, + [69511] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3138), 1, + ACTIONS(3140), 1, anon_sym_RBRACK, - ACTIONS(4267), 1, + ACTIONS(4284), 1, anon_sym_COMMA, STATE(1950), 1, aux_sym_attribute_group_repeat1, STATE(2087), 1, sym_text_interpolation, - [69508] = 5, - ACTIONS(18), 1, + [69530] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1456), 1, + ACTIONS(1458), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2088), 1, sym_text_interpolation, - ACTIONS(1454), 2, + ACTIONS(1456), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69525] = 5, - ACTIONS(18), 1, + [69547] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1506), 1, + ACTIONS(1508), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2089), 1, sym_text_interpolation, - ACTIONS(1504), 2, + ACTIONS(1506), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69542] = 5, - ACTIONS(18), 1, + [69564] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1518), 1, + ACTIONS(1520), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2090), 1, sym_text_interpolation, - ACTIONS(1516), 2, + ACTIONS(1518), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69559] = 5, - ACTIONS(18), 1, + [69581] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1304), 1, + ACTIONS(1306), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2091), 1, sym_text_interpolation, - ACTIONS(1302), 2, + ACTIONS(1304), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69576] = 5, - ACTIONS(18), 1, + [69598] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1228), 1, + ACTIONS(1230), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2092), 1, sym_text_interpolation, - ACTIONS(1226), 2, + ACTIONS(1228), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69593] = 4, - ACTIONS(18), 1, + [69615] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2093), 1, sym_text_interpolation, - ACTIONS(4269), 3, + ACTIONS(4286), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [69608] = 4, - ACTIONS(18), 1, + [69630] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2094), 1, sym_text_interpolation, - ACTIONS(4271), 3, + ACTIONS(4288), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [69623] = 6, - ACTIONS(18), 1, + [69645] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2447), 1, anon_sym_COLON, - ACTIONS(4273), 1, + ACTIONS(4290), 1, anon_sym_LPAREN, STATE(2095), 1, sym_text_interpolation, STATE(2444), 1, sym_parenthesized_expression, - [69642] = 6, - ACTIONS(18), 1, + [69664] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4275), 1, + ACTIONS(4292), 1, anon_sym_COMMA, - ACTIONS(4277), 1, + ACTIONS(4294), 1, anon_sym_RPAREN, STATE(2096), 1, sym_text_interpolation, STATE(2215), 1, aux_sym_arguments_repeat1, - [69661] = 4, - ACTIONS(18), 1, + [69683] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2097), 1, sym_text_interpolation, - ACTIONS(4279), 3, + ACTIONS(4296), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [69676] = 6, - ACTIONS(18), 1, + [69698] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(4281), 1, + ACTIONS(4298), 1, anon_sym_EQ_GT, STATE(2098), 1, sym_text_interpolation, STATE(2705), 1, sym__return_type, - [69695] = 5, - ACTIONS(18), 1, + [69717] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1444), 1, + ACTIONS(1446), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2099), 1, sym_text_interpolation, - ACTIONS(1442), 2, + ACTIONS(1444), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69712] = 5, - ACTIONS(18), 1, + [69734] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1428), 1, + ACTIONS(1430), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2100), 1, sym_text_interpolation, - ACTIONS(1426), 2, + ACTIONS(1428), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69729] = 6, - ACTIONS(18), 1, + [69751] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4283), 1, + ACTIONS(4300), 1, anon_sym_RPAREN, STATE(2101), 1, sym_text_interpolation, STATE(2199), 1, aux_sym__list_destructing_repeat1, - [69748] = 5, - ACTIONS(18), 1, + [69770] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1412), 1, + ACTIONS(1414), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2102), 1, sym_text_interpolation, - ACTIONS(1410), 2, + ACTIONS(1412), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69765] = 5, - ACTIONS(18), 1, + [69787] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1166), 1, + ACTIONS(1168), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2103), 1, sym_text_interpolation, - ACTIONS(1164), 2, + ACTIONS(1166), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69782] = 6, - ACTIONS(18), 1, + [69804] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(4285), 1, + ACTIONS(4302), 1, anon_sym_EQ_GT, STATE(2104), 1, sym_text_interpolation, STATE(2696), 1, sym__return_type, - [69801] = 5, - ACTIONS(18), 1, + [69823] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4289), 1, + ACTIONS(4306), 1, anon_sym_EQ, STATE(2105), 1, sym_text_interpolation, - ACTIONS(4287), 2, + ACTIONS(4304), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69818] = 5, - ACTIONS(18), 1, + [69840] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1424), 1, + ACTIONS(1426), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2106), 1, sym_text_interpolation, - ACTIONS(1422), 2, + ACTIONS(1424), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69835] = 5, - ACTIONS(18), 1, + [69857] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1404), 1, + ACTIONS(1406), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2107), 1, sym_text_interpolation, - ACTIONS(1402), 2, + ACTIONS(1404), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69852] = 5, - ACTIONS(18), 1, + [69874] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4291), 1, + ACTIONS(4308), 1, anon_sym_COMMA, - ACTIONS(4294), 1, + ACTIONS(4311), 1, anon_sym_RPAREN, STATE(2108), 2, sym_text_interpolation, aux_sym_arguments_repeat1, - [69869] = 5, - ACTIONS(18), 1, + [69891] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1448), 1, + ACTIONS(1450), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2109), 1, sym_text_interpolation, - ACTIONS(1446), 2, + ACTIONS(1448), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69886] = 4, - ACTIONS(18), 1, + [69908] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2110), 1, sym_text_interpolation, - ACTIONS(3906), 3, + ACTIONS(3916), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [69901] = 5, - ACTIONS(18), 1, + [69923] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1460), 1, + ACTIONS(1462), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2111), 1, sym_text_interpolation, - ACTIONS(1458), 2, + ACTIONS(1460), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69918] = 6, + [69940] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(3997), 1, + ACTIONS(4012), 1, sym_nowdoc_string, - ACTIONS(4296), 1, + ACTIONS(4313), 1, anon_sym_, STATE(1864), 1, aux_sym_nowdoc_body_repeat1, STATE(2112), 1, sym_text_interpolation, - [69937] = 4, - ACTIONS(18), 1, + [69959] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2113), 1, sym_text_interpolation, - ACTIONS(3864), 3, + ACTIONS(3874), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [69952] = 5, - ACTIONS(18), 1, + [69974] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1464), 1, + ACTIONS(1466), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2114), 1, sym_text_interpolation, - ACTIONS(1462), 2, + ACTIONS(1464), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69969] = 5, - ACTIONS(18), 1, + [69991] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1484), 1, + ACTIONS(1486), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2115), 1, sym_text_interpolation, - ACTIONS(1482), 2, + ACTIONS(1484), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69986] = 4, - ACTIONS(18), 1, + [70008] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2116), 1, sym_text_interpolation, - ACTIONS(4298), 3, + ACTIONS(4315), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [70001] = 4, - ACTIONS(18), 1, + [70023] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2117), 1, sym_text_interpolation, - ACTIONS(4300), 3, + ACTIONS(4317), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [70016] = 6, - ACTIONS(18), 1, + [70038] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3210), 1, + ACTIONS(3212), 1, anon_sym_RPAREN, STATE(2079), 1, aux_sym__list_destructing_repeat1, STATE(2118), 1, sym_text_interpolation, - [70035] = 6, - ACTIONS(18), 1, + [70057] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4302), 1, + ACTIONS(4319), 1, anon_sym_RPAREN, STATE(2101), 1, aux_sym__list_destructing_repeat1, STATE(2119), 1, sym_text_interpolation, - [70054] = 6, - ACTIONS(18), 1, + [70076] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4216), 1, + ACTIONS(4233), 1, sym_name, - ACTIONS(4218), 1, + ACTIONS(4235), 1, anon_sym_LBRACE, STATE(2120), 1, sym_text_interpolation, STATE(2259), 1, sym_namespace_use_group, - [70073] = 6, - ACTIONS(18), 1, + [70095] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4218), 1, + ACTIONS(4235), 1, anon_sym_LBRACE, - ACTIONS(4304), 1, + ACTIONS(4321), 1, sym_name, STATE(2121), 1, sym_text_interpolation, STATE(2259), 1, sym_namespace_use_group, - [70092] = 4, - ACTIONS(18), 1, + [70114] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2122), 1, sym_text_interpolation, - ACTIONS(4306), 3, + ACTIONS(4323), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [70107] = 4, - ACTIONS(18), 1, + [70129] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2123), 1, sym_text_interpolation, - ACTIONS(3880), 3, + ACTIONS(3890), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [70122] = 5, - ACTIONS(18), 1, + [70144] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1196), 1, + ACTIONS(1198), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2124), 1, sym_text_interpolation, - ACTIONS(1194), 2, + ACTIONS(1196), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70139] = 5, - ACTIONS(18), 1, + [70161] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1522), 1, + ACTIONS(1524), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2125), 1, sym_text_interpolation, - ACTIONS(1520), 2, + ACTIONS(1522), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70156] = 5, - ACTIONS(18), 1, + [70178] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1162), 1, + ACTIONS(1164), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2126), 1, sym_text_interpolation, - ACTIONS(1160), 2, + ACTIONS(1162), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70173] = 5, - ACTIONS(18), 1, + [70195] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(4327), 1, anon_sym_EQ, STATE(2127), 1, sym_text_interpolation, - ACTIONS(4308), 2, + ACTIONS(4325), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70190] = 5, - ACTIONS(18), 1, + [70212] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4314), 1, + ACTIONS(4331), 1, anon_sym_EQ, STATE(2128), 1, sym_text_interpolation, - ACTIONS(4312), 2, + ACTIONS(4329), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70207] = 6, - ACTIONS(18), 1, + [70229] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1777), 1, + ACTIONS(1779), 1, anon_sym_RPAREN, - ACTIONS(4316), 1, + ACTIONS(4333), 1, anon_sym_COMMA, STATE(2129), 1, sym_text_interpolation, STATE(2193), 1, aux_sym_formal_parameters_repeat1, - [70226] = 6, - ACTIONS(18), 1, + [70248] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(949), 1, + ACTIONS(951), 1, anon_sym_EQ_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4318), 1, + ACTIONS(4335), 1, anon_sym_COMMA, STATE(2055), 1, aux_sym_match_condition_list_repeat1, STATE(2130), 1, sym_text_interpolation, - [70245] = 6, - ACTIONS(18), 1, + [70267] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(4320), 1, + ACTIONS(4337), 1, anon_sym_DOT_DOT_DOT, STATE(2131), 1, sym_text_interpolation, STATE(2188), 1, sym_variable_name, - [70264] = 6, - ACTIONS(18), 1, + [70286] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(860), 1, + ACTIONS(862), 1, anon_sym_RBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4322), 1, + ACTIONS(4339), 1, anon_sym_COMMA, STATE(2054), 1, aux_sym_match_block_repeat1, STATE(2132), 1, sym_text_interpolation, - [70283] = 5, - ACTIONS(18), 1, + [70305] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4326), 1, + ACTIONS(4343), 1, anon_sym_EQ, STATE(2133), 1, sym_text_interpolation, - ACTIONS(4324), 2, + ACTIONS(4341), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70300] = 6, - ACTIONS(18), 1, + [70322] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(4328), 1, + ACTIONS(4345), 1, anon_sym_DOT_DOT_DOT, STATE(2134), 1, sym_text_interpolation, STATE(2185), 1, sym_variable_name, - [70319] = 6, - ACTIONS(18), 1, + [70341] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(4330), 1, + ACTIONS(4347), 1, anon_sym_RPAREN, STATE(2135), 1, sym_text_interpolation, STATE(2548), 1, sym_variable_name, - [70338] = 5, - ACTIONS(18), 1, + [70360] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1542), 1, + ACTIONS(1544), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2136), 1, sym_text_interpolation, - ACTIONS(1540), 2, + ACTIONS(1542), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70355] = 5, - ACTIONS(18), 1, + [70377] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1514), 1, + ACTIONS(1516), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2137), 1, sym_text_interpolation, - ACTIONS(1512), 2, + ACTIONS(1514), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70372] = 6, - ACTIONS(18), 1, + [70394] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4218), 1, + ACTIONS(4235), 1, anon_sym_LBRACE, - ACTIONS(4304), 1, + ACTIONS(4321), 1, sym_name, STATE(2138), 1, sym_text_interpolation, STATE(2484), 1, sym_namespace_use_group, - [70391] = 5, - ACTIONS(18), 1, + [70413] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(4351), 1, anon_sym_EQ, STATE(2139), 1, sym_text_interpolation, - ACTIONS(4332), 2, + ACTIONS(4349), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70408] = 5, - ACTIONS(18), 1, + [70430] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1500), 1, + ACTIONS(1502), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2140), 1, sym_text_interpolation, - ACTIONS(1498), 2, + ACTIONS(1500), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70425] = 6, - ACTIONS(18), 1, + [70447] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4353), 1, anon_sym_COMMA, - ACTIONS(4338), 1, + ACTIONS(4355), 1, anon_sym_RPAREN, STATE(1982), 1, aux_sym_formal_parameters_repeat1, STATE(2141), 1, sym_text_interpolation, - [70444] = 5, - ACTIONS(18), 1, + [70466] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1492), 1, + ACTIONS(1494), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2142), 1, sym_text_interpolation, - ACTIONS(1490), 2, + ACTIONS(1492), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70461] = 6, - ACTIONS(18), 1, + [70483] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, STATE(2143), 1, sym_text_interpolation, STATE(2618), 1, sym__return_type, - [70480] = 5, - ACTIONS(18), 1, + [70502] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1488), 1, + ACTIONS(1490), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2144), 1, sym_text_interpolation, - ACTIONS(1486), 2, + ACTIONS(1488), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70497] = 6, - ACTIONS(18), 1, + [70519] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3241), 1, anon_sym_COMMA, - ACTIONS(4340), 1, + ACTIONS(4357), 1, anon_sym_RPAREN, STATE(2145), 1, sym_text_interpolation, STATE(2153), 1, aux_sym_unset_statement_repeat1, - [70516] = 5, - ACTIONS(18), 1, + [70538] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1476), 1, + ACTIONS(1478), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2146), 1, sym_text_interpolation, - ACTIONS(1474), 2, + ACTIONS(1476), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70533] = 6, - ACTIONS(18), 1, + [70555] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4342), 1, + ACTIONS(4359), 1, anon_sym_COMMA, - ACTIONS(4344), 1, + ACTIONS(4361), 1, anon_sym_RPAREN, STATE(2147), 1, sym_text_interpolation, STATE(2157), 1, aux_sym_arguments_repeat1, - [70552] = 5, - ACTIONS(18), 1, + [70574] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1356), 1, + ACTIONS(1358), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2148), 1, sym_text_interpolation, - ACTIONS(1354), 2, + ACTIONS(1356), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70569] = 6, - ACTIONS(18), 1, + [70591] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(4346), 1, + ACTIONS(4363), 1, anon_sym_RPAREN, STATE(2149), 1, sym_text_interpolation, STATE(2563), 1, sym_variable_name, - [70588] = 5, - ACTIONS(18), 1, + [70610] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1348), 1, + ACTIONS(1350), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2150), 1, sym_text_interpolation, - ACTIONS(1346), 2, + ACTIONS(1348), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70605] = 5, - ACTIONS(18), 1, + [70627] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1296), 1, + ACTIONS(1298), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2151), 1, sym_text_interpolation, - ACTIONS(1294), 2, + ACTIONS(1296), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70622] = 6, - ACTIONS(18), 1, + [70644] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4218), 1, + ACTIONS(4235), 1, anon_sym_LBRACE, - ACTIONS(4304), 1, + ACTIONS(4321), 1, sym_name, STATE(2152), 1, sym_text_interpolation, STATE(2384), 1, sym_namespace_use_group, - [70641] = 5, - ACTIONS(18), 1, + [70663] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3353), 1, + ACTIONS(3355), 1, anon_sym_RPAREN, - ACTIONS(4348), 1, + ACTIONS(4365), 1, anon_sym_COMMA, STATE(2153), 2, sym_text_interpolation, aux_sym_unset_statement_repeat1, - [70658] = 6, - ACTIONS(18), 1, + [70680] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4216), 1, + ACTIONS(4233), 1, sym_name, - ACTIONS(4218), 1, + ACTIONS(4235), 1, anon_sym_LBRACE, STATE(2154), 1, sym_text_interpolation, STATE(2384), 1, sym_namespace_use_group, - [70677] = 5, - ACTIONS(18), 1, + [70699] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1224), 1, + ACTIONS(1226), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2155), 1, sym_text_interpolation, - ACTIONS(1222), 2, + ACTIONS(1224), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70694] = 6, - ACTIONS(18), 1, + [70716] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3521), 1, anon_sym_COMMA, - ACTIONS(4351), 1, + ACTIONS(4368), 1, anon_sym_LBRACE, STATE(1912), 1, aux_sym_base_clause_repeat1, STATE(2156), 1, sym_text_interpolation, - [70713] = 6, - ACTIONS(18), 1, + [70735] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(803), 1, + ACTIONS(805), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4353), 1, + ACTIONS(4370), 1, anon_sym_COMMA, STATE(2108), 1, aux_sym_arguments_repeat1, STATE(2157), 1, sym_text_interpolation, - [70732] = 5, - ACTIONS(18), 1, + [70754] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1216), 1, + ACTIONS(1218), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2158), 1, sym_text_interpolation, - ACTIONS(1214), 2, + ACTIONS(1216), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70749] = 4, - ACTIONS(18), 1, + [70771] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2159), 1, sym_text_interpolation, - ACTIONS(3885), 3, + ACTIONS(3895), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [70764] = 5, - ACTIONS(18), 1, + [70786] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1170), 1, + ACTIONS(1172), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2160), 1, sym_text_interpolation, - ACTIONS(1168), 2, + ACTIONS(1170), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70781] = 4, - ACTIONS(18), 1, + [70803] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2161), 1, sym_text_interpolation, - ACTIONS(3351), 3, + ACTIONS(3353), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [70796] = 5, - ACTIONS(18), 1, + [70818] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1204), 1, + ACTIONS(1206), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2162), 1, sym_text_interpolation, - ACTIONS(1202), 2, + ACTIONS(1204), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70813] = 5, - ACTIONS(18), 1, + [70835] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1534), 1, + ACTIONS(1536), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2163), 1, sym_text_interpolation, - ACTIONS(1532), 2, + ACTIONS(1534), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70830] = 4, - ACTIONS(18), 1, + [70852] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2164), 1, sym_text_interpolation, - ACTIONS(4355), 3, + ACTIONS(4372), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [70845] = 4, - ACTIONS(18), 1, + [70867] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2165), 1, sym_text_interpolation, - ACTIONS(2777), 3, + ACTIONS(2779), 3, sym__automatic_semicolon, anon_sym_SEMI, sym_name, - [70860] = 6, - ACTIONS(18), 1, + [70882] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1720), 1, - anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, + ACTIONS(1724), 1, + anon_sym_DOLLAR, STATE(1699), 1, sym_variable_name, STATE(1916), 1, sym_property_element, STATE(2166), 1, sym_text_interpolation, - [70879] = 5, - ACTIONS(18), 1, + [70901] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1184), 1, + ACTIONS(1186), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2167), 1, sym_text_interpolation, - ACTIONS(1182), 2, + ACTIONS(1184), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70896] = 6, - ACTIONS(18), 1, + [70918] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4216), 1, + ACTIONS(4233), 1, sym_name, - ACTIONS(4218), 1, + ACTIONS(4235), 1, anon_sym_LBRACE, STATE(2168), 1, sym_text_interpolation, STATE(2297), 1, sym_namespace_use_group, - [70915] = 6, - ACTIONS(18), 1, + [70937] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3521), 1, anon_sym_COMMA, - ACTIONS(3831), 1, + ACTIONS(3841), 1, anon_sym_LBRACE, STATE(2156), 1, aux_sym_base_clause_repeat1, STATE(2169), 1, sym_text_interpolation, - [70934] = 5, - ACTIONS(18), 1, + [70956] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1396), 1, + ACTIONS(1398), 1, aux_sym_else_clause_token1, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2170), 1, sym_text_interpolation, - ACTIONS(1394), 2, + ACTIONS(1396), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70951] = 6, - ACTIONS(18), 1, + [70973] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(823), 1, + ACTIONS(825), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4357), 1, + ACTIONS(4374), 1, anon_sym_COMMA, STATE(1970), 1, aux_sym_array_creation_expression_repeat1, STATE(2171), 1, sym_text_interpolation, - [70970] = 6, - ACTIONS(18), 1, + [70992] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3241), 1, anon_sym_COMMA, - ACTIONS(4359), 1, + ACTIONS(4376), 1, anon_sym_RPAREN, STATE(2153), 1, aux_sym_unset_statement_repeat1, STATE(2172), 1, sym_text_interpolation, - [70989] = 6, - ACTIONS(18), 1, + [71011] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4361), 1, + ACTIONS(4378), 1, anon_sym_COMMA, - ACTIONS(4363), 1, + ACTIONS(4380), 1, anon_sym_RPAREN, STATE(1966), 1, aux_sym_anonymous_function_use_clause_repeat1, STATE(2173), 1, sym_text_interpolation, - [71008] = 5, - ACTIONS(18), 1, + [71030] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4365), 1, + ACTIONS(4382), 1, sym_name, STATE(2174), 1, sym_text_interpolation, - ACTIONS(4367), 2, + ACTIONS(4384), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71025] = 6, - ACTIONS(18), 1, + [71047] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4369), 1, + ACTIONS(4386), 1, anon_sym_SQUOTE, - ACTIONS(4371), 1, + ACTIONS(4388), 1, anon_sym_DQUOTE, - ACTIONS(4373), 1, + ACTIONS(4390), 1, sym_heredoc_start, STATE(2175), 1, sym_text_interpolation, - [71044] = 5, - ACTIONS(18), 1, + [71066] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4377), 1, + ACTIONS(4394), 1, aux_sym_else_clause_token1, STATE(2176), 1, sym_text_interpolation, - ACTIONS(4375), 2, + ACTIONS(4392), 2, aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [71061] = 5, - ACTIONS(18), 1, + [71083] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4381), 1, + ACTIONS(4398), 1, anon_sym_EQ, STATE(2177), 1, sym_text_interpolation, - ACTIONS(4379), 2, + ACTIONS(4396), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71078] = 5, - ACTIONS(18), 1, + [71100] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(316), 1, + ACTIONS(318), 1, anon_sym_DOLLAR, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2178), 1, sym_text_interpolation, STATE(1871), 2, sym_dynamic_variable_name, sym_variable_name, - [71095] = 6, - ACTIONS(18), 1, + [71117] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4383), 1, + ACTIONS(4400), 1, anon_sym_COMMA, - ACTIONS(4385), 1, + ACTIONS(4402), 1, anon_sym_RBRACE, STATE(2132), 1, aux_sym_match_block_repeat1, STATE(2179), 1, sym_text_interpolation, - [71114] = 4, - ACTIONS(18), 1, + [71136] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2180), 1, sym_text_interpolation, - ACTIONS(3933), 3, + ACTIONS(3943), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [71129] = 6, - ACTIONS(18), 1, + [71151] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, - ACTIONS(4387), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT_DOT, STATE(1975), 1, sym_variable_name, STATE(2181), 1, sym_text_interpolation, - [71148] = 6, - ACTIONS(18), 1, + [71170] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(797), 1, + ACTIONS(799), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4389), 1, + ACTIONS(4406), 1, anon_sym_COMMA, STATE(2108), 1, aux_sym_arguments_repeat1, STATE(2182), 1, sym_text_interpolation, - [71167] = 5, - ACTIONS(18), 1, + [71189] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4393), 1, + ACTIONS(4410), 1, anon_sym_EQ, STATE(2183), 1, sym_text_interpolation, - ACTIONS(4391), 2, + ACTIONS(4408), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71184] = 4, - ACTIONS(18), 1, + [71206] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2184), 1, sym_text_interpolation, - ACTIONS(4395), 3, + ACTIONS(4412), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [71199] = 5, - ACTIONS(18), 1, + [71221] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4416), 1, anon_sym_EQ, STATE(2185), 1, sym_text_interpolation, - ACTIONS(4397), 2, + ACTIONS(4414), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71216] = 6, - ACTIONS(18), 1, + [71238] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(4418), 1, anon_sym_COMMA, - ACTIONS(4403), 1, + ACTIONS(4420), 1, anon_sym_RPAREN, STATE(2182), 1, aux_sym_arguments_repeat1, STATE(2186), 1, sym_text_interpolation, - [71235] = 5, - ACTIONS(18), 1, + [71257] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3955), 1, + ACTIONS(3968), 1, anon_sym_EQ, STATE(2187), 1, sym_text_interpolation, - ACTIONS(4405), 2, + ACTIONS(4422), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71252] = 5, - ACTIONS(18), 1, + [71274] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(4426), 1, anon_sym_EQ, STATE(2188), 1, sym_text_interpolation, - ACTIONS(4407), 2, + ACTIONS(4424), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71269] = 4, - ACTIONS(18), 1, + [71291] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2189), 1, sym_text_interpolation, - ACTIONS(4411), 3, + ACTIONS(4428), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [71284] = 6, - ACTIONS(18), 1, + [71306] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4413), 1, + ACTIONS(4430), 1, anon_sym_RPAREN, STATE(2190), 1, sym_text_interpolation, STATE(2199), 1, aux_sym__list_destructing_repeat1, - [71303] = 4, - ACTIONS(18), 1, + [71325] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2191), 1, sym_text_interpolation, - ACTIONS(4415), 3, + ACTIONS(4432), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [71318] = 6, - ACTIONS(18), 1, + [71340] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4417), 1, + ACTIONS(4434), 1, anon_sym_COMMA, - ACTIONS(4419), 1, + ACTIONS(4436), 1, anon_sym_RPAREN, STATE(2192), 1, sym_text_interpolation, STATE(2198), 1, aux_sym_arguments_repeat1, - [71337] = 5, - ACTIONS(18), 1, + [71359] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4438), 1, anon_sym_COMMA, - ACTIONS(4424), 1, + ACTIONS(4441), 1, anon_sym_RPAREN, STATE(2193), 2, sym_text_interpolation, aux_sym_formal_parameters_repeat1, - [71354] = 6, - ACTIONS(18), 1, + [71376] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(864), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4426), 1, + ACTIONS(4443), 1, anon_sym_RPAREN, STATE(2194), 1, sym_text_interpolation, STATE(2199), 1, aux_sym__list_destructing_repeat1, - [71373] = 5, - ACTIONS(18), 1, + [71395] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4428), 1, + ACTIONS(4445), 1, anon_sym_COMMA, - ACTIONS(4431), 1, + ACTIONS(4448), 1, anon_sym_RBRACE, STATE(2195), 2, sym_text_interpolation, aux_sym_namespace_use_group_repeat1, - [71390] = 5, - ACTIONS(18), 1, + [71412] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4435), 1, + ACTIONS(4452), 1, anon_sym_EQ, STATE(2196), 1, sym_text_interpolation, - ACTIONS(4433), 2, + ACTIONS(4450), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71407] = 5, - ACTIONS(18), 1, + [71429] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4439), 1, + ACTIONS(4456), 1, anon_sym_EQ, STATE(2197), 1, sym_text_interpolation, - ACTIONS(4437), 2, + ACTIONS(4454), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71424] = 6, - ACTIONS(18), 1, + [71446] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(783), 1, + ACTIONS(785), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4441), 1, + ACTIONS(4458), 1, anon_sym_COMMA, STATE(2108), 1, aux_sym_arguments_repeat1, STATE(2198), 1, sym_text_interpolation, - [71443] = 5, - ACTIONS(18), 1, + [71465] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1693), 1, - anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4443), 1, + ACTIONS(1697), 1, + anon_sym_RPAREN, + ACTIONS(4460), 1, anon_sym_COMMA, STATE(2199), 2, sym_text_interpolation, aux_sym__list_destructing_repeat1, - [71460] = 6, - ACTIONS(18), 1, + [71482] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(793), 1, + ACTIONS(795), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4463), 1, anon_sym_COMMA, STATE(2108), 1, aux_sym_arguments_repeat1, STATE(2200), 1, sym_text_interpolation, - [71479] = 6, - ACTIONS(18), 1, + [71501] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4167), 1, anon_sym_COMMA, - ACTIONS(4448), 1, + ACTIONS(4465), 1, anon_sym_RBRACE, STATE(2004), 1, aux_sym_namespace_use_group_repeat1, STATE(2201), 1, sym_text_interpolation, - [71498] = 5, - ACTIONS(18), 1, + [71520] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3955), 1, + ACTIONS(3968), 1, anon_sym_EQ, STATE(2202), 1, sym_text_interpolation, - ACTIONS(4450), 2, + ACTIONS(4467), 2, anon_sym_COMMA, anon_sym_RBRACK, - [71515] = 6, - ACTIONS(18), 1, + [71537] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4452), 1, + ACTIONS(4469), 1, anon_sym_COMMA, - ACTIONS(4454), 1, + ACTIONS(4471), 1, anon_sym_RPAREN, STATE(2200), 1, aux_sym_arguments_repeat1, STATE(2203), 1, sym_text_interpolation, - [71534] = 4, - ACTIONS(18), 1, + [71556] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2204), 1, sym_text_interpolation, - ACTIONS(4116), 3, + ACTIONS(4131), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [71549] = 6, - ACTIONS(18), 1, + [71571] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4218), 1, + ACTIONS(4235), 1, anon_sym_LBRACE, - ACTIONS(4304), 1, + ACTIONS(4321), 1, sym_name, STATE(2205), 1, sym_text_interpolation, STATE(2366), 1, sym_namespace_use_group, - [71568] = 5, - ACTIONS(18), 1, + [71590] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(4131), 1, anon_sym_RBRACK, - ACTIONS(4456), 1, + ACTIONS(4473), 1, anon_sym_COMMA, STATE(2206), 2, sym_text_interpolation, aux_sym_array_creation_expression_repeat1, - [71585] = 6, - ACTIONS(18), 1, + [71607] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(4459), 1, + ACTIONS(4476), 1, anon_sym_EQ_GT, STATE(2207), 1, sym_text_interpolation, STATE(2550), 1, sym__return_type, - [71604] = 6, - ACTIONS(18), 1, + [71626] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(4461), 1, + ACTIONS(4478), 1, anon_sym_EQ_GT, STATE(2208), 1, sym_text_interpolation, STATE(2493), 1, sym__return_type, - [71623] = 5, - ACTIONS(18), 1, + [71645] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4463), 1, + ACTIONS(4480), 1, anon_sym_COMMA, - ACTIONS(4466), 1, + ACTIONS(4483), 1, anon_sym_RPAREN, STATE(2209), 2, sym_text_interpolation, aux_sym_anonymous_function_use_clause_repeat1, - [71640] = 6, - ACTIONS(18), 1, + [71662] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4485), 1, anon_sym_COMMA, - ACTIONS(4470), 1, + ACTIONS(4487), 1, anon_sym_RPAREN, STATE(2210), 1, sym_text_interpolation, STATE(2211), 1, aux_sym_arguments_repeat1, - [71659] = 6, - ACTIONS(18), 1, + [71681] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(819), 1, + ACTIONS(821), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4472), 1, + ACTIONS(4489), 1, anon_sym_COMMA, STATE(2108), 1, aux_sym_arguments_repeat1, STATE(2211), 1, sym_text_interpolation, - [71678] = 4, - ACTIONS(18), 1, + [71700] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2212), 1, sym_text_interpolation, - ACTIONS(4474), 3, + ACTIONS(4491), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [71693] = 4, - ACTIONS(18), 1, + [71715] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2213), 1, sym_text_interpolation, - ACTIONS(3922), 3, + ACTIONS(3932), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - [71708] = 6, - ACTIONS(18), 1, + [71730] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3517), 1, anon_sym_COLON, - ACTIONS(4476), 1, + ACTIONS(4493), 1, anon_sym_EQ_GT, STATE(2214), 1, sym_text_interpolation, STATE(2599), 1, sym__return_type, - [71727] = 6, - ACTIONS(18), 1, + [71749] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(801), 1, + ACTIONS(803), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4478), 1, + ACTIONS(4495), 1, anon_sym_COMMA, STATE(2108), 1, aux_sym_arguments_repeat1, STATE(2215), 1, sym_text_interpolation, - [71746] = 6, - ACTIONS(18), 1, + [71768] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4480), 1, + ACTIONS(4497), 1, anon_sym_COMMA, - ACTIONS(4482), 1, + ACTIONS(4499), 1, anon_sym_RPAREN, STATE(2216), 1, sym_text_interpolation, STATE(2219), 1, aux_sym_arguments_repeat1, - [71765] = 6, + [71787] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4177), 1, sym__new_line, - ACTIONS(4484), 1, + ACTIONS(4501), 1, sym_heredoc_end, STATE(2217), 1, sym_text_interpolation, STATE(2415), 1, sym_heredoc_body, - [71784] = 6, + [71806] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4173), 1, sym__new_line, - ACTIONS(4486), 1, + ACTIONS(4503), 1, sym_heredoc_end, STATE(2218), 1, sym_text_interpolation, STATE(2414), 1, sym_nowdoc_body, - [71803] = 6, - ACTIONS(18), 1, + [71825] = 6, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(795), 1, + ACTIONS(797), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4488), 1, + ACTIONS(4505), 1, anon_sym_COMMA, STATE(2108), 1, aux_sym_arguments_repeat1, STATE(2219), 1, sym_text_interpolation, - [71822] = 5, - ACTIONS(18), 1, + [71844] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2150), 1, sym_compound_statement, STATE(2220), 1, sym_text_interpolation, - [71838] = 4, - ACTIONS(18), 1, + [71860] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2221), 1, sym_text_interpolation, - ACTIONS(4490), 2, + ACTIONS(4507), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71852] = 4, - ACTIONS(18), 1, + [71874] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2222), 1, sym_text_interpolation, - ACTIONS(4492), 2, + ACTIONS(4509), 2, anon_sym_string, anon_sym_int, - [71866] = 4, - ACTIONS(18), 1, + [71888] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2223), 1, sym_text_interpolation, - ACTIONS(4494), 2, + ACTIONS(4511), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71880] = 5, - ACTIONS(18), 1, + [71902] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1069), 1, sym_compound_statement, STATE(2224), 1, sym_text_interpolation, - [71896] = 4, - ACTIONS(18), 1, + [71918] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2225), 1, sym_text_interpolation, - ACTIONS(4496), 2, + ACTIONS(4513), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71910] = 5, - ACTIONS(18), 1, + [71932] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(2038), 1, sym_formal_parameters, STATE(2226), 1, sym_text_interpolation, - [71926] = 4, - ACTIONS(18), 1, + [71948] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2227), 1, sym_text_interpolation, - ACTIONS(4498), 2, + ACTIONS(4515), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71940] = 5, - ACTIONS(18), 1, + [71962] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1681), 1, sym_formal_parameters, STATE(2228), 1, sym_text_interpolation, - [71956] = 4, - ACTIONS(18), 1, + [71978] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2229), 1, sym_text_interpolation, - ACTIONS(4500), 2, + ACTIONS(4517), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71970] = 5, - ACTIONS(18), 1, + [71992] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(964), 1, sym_compound_statement, STATE(2230), 1, sym_text_interpolation, - [71986] = 5, - ACTIONS(18), 1, + [72008] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(459), 1, + ACTIONS(461), 1, ts_builtin_sym_end, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4519), 1, sym_php_tag, STATE(2231), 1, sym_text_interpolation, - [72002] = 4, - ACTIONS(18), 1, + [72024] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2232), 1, sym_text_interpolation, - ACTIONS(4466), 2, + ACTIONS(4483), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72016] = 5, - ACTIONS(18), 1, + [72038] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4521), 1, anon_sym_LBRACE, STATE(434), 1, sym_compound_statement, STATE(2233), 1, sym_text_interpolation, - [72032] = 4, - ACTIONS(18), 1, + [72054] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2234), 1, sym_text_interpolation, - ACTIONS(4506), 2, + ACTIONS(4523), 2, sym__eof, sym_php_tag, - [72046] = 4, - ACTIONS(18), 1, + [72068] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2235), 1, sym_text_interpolation, - ACTIONS(489), 2, + ACTIONS(491), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72060] = 5, - ACTIONS(18), 1, + [72082] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(437), 1, sym_declaration_list, STATE(2236), 1, sym_text_interpolation, - [72076] = 5, - ACTIONS(18), 1, + [72098] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, anon_sym_LBRACE, STATE(2090), 1, sym_declaration_list, STATE(2237), 1, sym_text_interpolation, - [72092] = 4, - ACTIONS(18), 1, + [72114] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2238), 1, sym_text_interpolation, - ACTIONS(2529), 2, + ACTIONS(2531), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72106] = 5, - ACTIONS(18), 1, + [72128] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3621), 1, + ACTIONS(3625), 1, anon_sym_LBRACE, STATE(2088), 1, sym_enum_declaration_list, STATE(2239), 1, sym_text_interpolation, - [72122] = 4, - ACTIONS(18), 1, + [72144] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2240), 1, sym_text_interpolation, - ACTIONS(2527), 2, + ACTIONS(2529), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72136] = 5, - ACTIONS(18), 1, + [72158] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4508), 1, + ACTIONS(4525), 1, sym_name, STATE(2241), 1, sym_text_interpolation, STATE(2595), 1, sym_namespace_name, - [72152] = 4, - ACTIONS(18), 1, + [72174] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2242), 1, sym_text_interpolation, - ACTIONS(4511), 2, + ACTIONS(4528), 2, anon_sym_LBRACE, anon_sym_COLON, - [72166] = 5, - ACTIONS(18), 1, + [72188] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(447), 1, sym_declaration_list, STATE(2243), 1, sym_text_interpolation, - [72182] = 5, - ACTIONS(18), 1, + [72204] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4508), 1, + ACTIONS(4525), 1, sym_name, STATE(2244), 1, sym_text_interpolation, STATE(2630), 1, sym_namespace_name, - [72198] = 5, - ACTIONS(18), 1, + [72220] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1723), 1, sym_declaration_list, STATE(2245), 1, sym_text_interpolation, - [72214] = 5, - ACTIONS(18), 1, + [72236] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4508), 1, + ACTIONS(4525), 1, sym_name, STATE(2246), 1, sym_text_interpolation, STATE(2622), 1, sym_namespace_name, - [72230] = 5, - ACTIONS(18), 1, + [72252] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1682), 1, sym_formal_parameters, STATE(2247), 1, sym_text_interpolation, - [72246] = 5, - ACTIONS(18), 1, + [72268] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1708), 1, sym_compound_statement, STATE(2248), 1, sym_text_interpolation, - [72262] = 5, - ACTIONS(18), 1, + [72284] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4513), 1, + ACTIONS(4530), 1, anon_sym_LPAREN, STATE(51), 1, sym_parenthesized_expression, STATE(2249), 1, sym_text_interpolation, - [72278] = 4, - ACTIONS(18), 1, + [72300] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2250), 1, sym_text_interpolation, - ACTIONS(4515), 2, + ACTIONS(4532), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72292] = 4, - ACTIONS(18), 1, + [72314] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2251), 1, sym_text_interpolation, - ACTIONS(4093), 2, + ACTIONS(4108), 2, anon_sym_COMMA, anon_sym_RBRACK, - [72306] = 5, - ACTIONS(18), 1, + [72328] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4513), 1, + ACTIONS(4530), 1, anon_sym_LPAREN, STATE(47), 1, sym_parenthesized_expression, STATE(2252), 1, sym_text_interpolation, - [72322] = 5, - ACTIONS(18), 1, + [72344] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4290), 1, anon_sym_LPAREN, STATE(2253), 1, sym_text_interpolation, STATE(2370), 1, sym_parenthesized_expression, - [72338] = 4, - ACTIONS(18), 1, + [72360] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2254), 1, sym_text_interpolation, - ACTIONS(4517), 2, + ACTIONS(4534), 2, anon_sym_COMMA, anon_sym_RBRACE, - [72352] = 5, - ACTIONS(18), 1, + [72374] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1106), 1, sym_compound_statement, STATE(2255), 1, sym_text_interpolation, - [72368] = 5, - ACTIONS(18), 1, + [72390] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2671), 1, + ACTIONS(2673), 1, anon_sym_RPAREN, - ACTIONS(4519), 1, + ACTIONS(4536), 1, anon_sym_EQ, STATE(2256), 1, sym_text_interpolation, - [72384] = 4, - ACTIONS(18), 1, + [72406] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2257), 1, sym_text_interpolation, - ACTIONS(4521), 2, + ACTIONS(4538), 2, anon_sym_COMMA, anon_sym_RBRACK, - [72398] = 5, - ACTIONS(18), 1, + [72420] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4290), 1, anon_sym_LPAREN, STATE(2022), 1, sym_parenthesized_expression, STATE(2258), 1, sym_text_interpolation, - [72414] = 4, - ACTIONS(18), 1, + [72436] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2259), 1, sym_text_interpolation, - ACTIONS(4524), 2, + ACTIONS(4541), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72428] = 5, - ACTIONS(18), 1, + [72450] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(4543), 1, sym_name, STATE(1906), 1, sym_namespace_name, STATE(2260), 1, sym_text_interpolation, - [72444] = 4, - ACTIONS(18), 1, + [72466] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2261), 1, sym_text_interpolation, - ACTIONS(4528), 2, + ACTIONS(4545), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72458] = 4, - ACTIONS(18), 1, + [72480] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2262), 1, sym_text_interpolation, - ACTIONS(4530), 2, + ACTIONS(4547), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72472] = 5, - ACTIONS(18), 1, + [72494] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1119), 1, sym_compound_statement, STATE(2263), 1, sym_text_interpolation, - [72488] = 4, - ACTIONS(18), 1, + [72510] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2264), 1, sym_text_interpolation, - ACTIONS(4424), 2, + ACTIONS(4441), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72502] = 5, - ACTIONS(18), 1, + [72524] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1720), 1, sym_compound_statement, STATE(2265), 1, sym_text_interpolation, - [72518] = 5, - ACTIONS(18), 1, + [72540] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(439), 1, sym_declaration_list, STATE(2266), 1, sym_text_interpolation, - [72534] = 5, - ACTIONS(18), 1, + [72556] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, anon_sym_LBRACE, STATE(969), 1, sym_declaration_list, STATE(2267), 1, sym_text_interpolation, - [72550] = 4, - ACTIONS(18), 1, + [72572] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2268), 1, sym_text_interpolation, - ACTIONS(4532), 2, + ACTIONS(4549), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72564] = 4, - ACTIONS(18), 1, + [72586] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2269), 1, sym_text_interpolation, - ACTIONS(1693), 2, + ACTIONS(1697), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72578] = 5, - ACTIONS(18), 1, + [72600] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(2270), 1, sym_text_interpolation, STATE(2315), 1, sym_variable_name, - [72594] = 5, - ACTIONS(18), 1, + [72616] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1050), 1, sym_declaration_list, STATE(2271), 1, sym_text_interpolation, - [72610] = 5, - ACTIONS(18), 1, + [72632] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(220), 1, + ACTIONS(222), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(510), 1, sym_compound_statement, STATE(2272), 1, sym_text_interpolation, - [72626] = 4, - ACTIONS(18), 1, + [72648] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2273), 1, sym_text_interpolation, - ACTIONS(4534), 2, + ACTIONS(4551), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72640] = 5, - ACTIONS(18), 1, + [72662] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(2274), 1, sym_text_interpolation, STATE(2304), 1, sym_variable_name, - [72656] = 5, - ACTIONS(18), 1, + [72678] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(1978), 1, sym_variable_name, STATE(2275), 1, sym_text_interpolation, - [72672] = 5, - ACTIONS(18), 1, + [72694] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(2276), 1, sym_text_interpolation, STATE(2293), 1, sym_variable_name, - [72688] = 5, - ACTIONS(18), 1, + [72710] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1055), 1, sym_declaration_list, STATE(2277), 1, sym_text_interpolation, - [72704] = 5, - ACTIONS(18), 1, + [72726] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1093), 1, sym_compound_statement, STATE(2278), 1, sym_text_interpolation, - [72720] = 4, - ACTIONS(18), 1, + [72742] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2279), 1, sym_text_interpolation, - ACTIONS(3503), 2, + ACTIONS(3505), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72734] = 5, - ACTIONS(18), 1, + [72756] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(451), 1, sym_declaration_list, STATE(2280), 1, sym_text_interpolation, - [72750] = 4, - ACTIONS(18), 1, + [72772] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2281), 1, sym_text_interpolation, - ACTIONS(3955), 2, + ACTIONS(3968), 2, anon_sym_EQ, anon_sym_RPAREN, - [72764] = 4, - ACTIONS(18), 1, + [72786] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2282), 1, sym_text_interpolation, - ACTIONS(4536), 2, + ACTIONS(4553), 2, anon_sym_LBRACE, anon_sym_COLON, - [72778] = 4, - ACTIONS(18), 1, + [72800] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2283), 1, sym_text_interpolation, - ACTIONS(4538), 2, + ACTIONS(4555), 2, anon_sym_LBRACE, anon_sym_COLON, - [72792] = 4, - ACTIONS(18), 1, + [72814] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2284), 1, sym_text_interpolation, - ACTIONS(4540), 2, + ACTIONS(4557), 2, anon_sym_SEMI, anon_sym_COLON, - [72806] = 4, - ACTIONS(18), 1, + [72828] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2285), 1, sym_text_interpolation, - ACTIONS(4542), 2, + ACTIONS(4559), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72820] = 4, - ACTIONS(18), 1, + [72842] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2286), 1, sym_text_interpolation, - ACTIONS(4544), 2, + ACTIONS(4561), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72834] = 5, - ACTIONS(18), 1, + [72856] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2537), 1, + ACTIONS(2539), 1, anon_sym_RPAREN, - ACTIONS(4519), 1, + ACTIONS(4536), 1, anon_sym_EQ, STATE(2287), 1, sym_text_interpolation, - [72850] = 5, + [72872] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4546), 1, + ACTIONS(4563), 1, sym__new_line, - ACTIONS(4548), 1, + ACTIONS(4565), 1, sym_heredoc_end, STATE(2288), 1, sym_text_interpolation, - [72866] = 4, - ACTIONS(18), 1, + [72888] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2289), 1, sym_text_interpolation, - ACTIONS(4550), 2, + ACTIONS(4567), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72880] = 4, - ACTIONS(18), 1, + [72902] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2290), 1, sym_text_interpolation, - ACTIONS(449), 2, + ACTIONS(451), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72894] = 4, - ACTIONS(18), 1, + [72916] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2291), 1, sym_text_interpolation, - ACTIONS(4552), 2, + ACTIONS(4569), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72908] = 5, - ACTIONS(18), 1, + [72930] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(2225), 1, sym_variable_name, STATE(2292), 1, sym_text_interpolation, - [72924] = 4, - ACTIONS(18), 1, + [72946] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2293), 1, sym_text_interpolation, - ACTIONS(4554), 2, + ACTIONS(4571), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72938] = 4, - ACTIONS(18), 1, + [72960] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2294), 1, sym_text_interpolation, - ACTIONS(4367), 2, + ACTIONS(4384), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72952] = 5, - ACTIONS(18), 1, + [72974] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(967), 1, sym_compound_statement, STATE(2295), 1, sym_text_interpolation, - [72968] = 5, - ACTIONS(18), 1, + [72990] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4556), 1, + ACTIONS(4573), 1, sym_name, STATE(2296), 1, sym_text_interpolation, STATE(2529), 1, sym_namespace_name, - [72984] = 4, - ACTIONS(18), 1, + [73006] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2297), 1, sym_text_interpolation, - ACTIONS(4082), 2, + ACTIONS(4097), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72998] = 5, - ACTIONS(18), 1, + [73020] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(951), 1, sym_compound_statement, STATE(2298), 1, sym_text_interpolation, - [73014] = 5, - ACTIONS(18), 1, + [73036] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(949), 1, sym_compound_statement, STATE(2299), 1, sym_text_interpolation, - [73030] = 4, - ACTIONS(18), 1, + [73052] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2300), 1, sym_text_interpolation, - ACTIONS(4431), 2, + ACTIONS(4448), 2, anon_sym_COMMA, anon_sym_RBRACE, - [73044] = 5, - ACTIONS(18), 1, + [73066] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(2105), 1, sym_variable_name, STATE(2301), 1, sym_text_interpolation, - [73060] = 5, - ACTIONS(18), 1, + [73082] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(371), 1, + ACTIONS(373), 1, anon_sym_COLON, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2302), 1, sym_text_interpolation, STATE(2559), 1, sym_colon_block, - [73076] = 5, - ACTIONS(18), 1, + [73098] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1704), 1, sym_compound_statement, STATE(2303), 1, sym_text_interpolation, - [73092] = 4, - ACTIONS(18), 1, + [73114] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2304), 1, sym_text_interpolation, - ACTIONS(4559), 2, + ACTIONS(4576), 2, anon_sym_COMMA, anon_sym_RPAREN, - [73106] = 5, - ACTIONS(18), 1, + [73128] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4513), 1, + ACTIONS(4530), 1, anon_sym_LPAREN, STATE(55), 1, sym_parenthesized_expression, STATE(2305), 1, sym_text_interpolation, - [73122] = 5, - ACTIONS(18), 1, + [73144] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4290), 1, anon_sym_LPAREN, STATE(2306), 1, sym_text_interpolation, STATE(2444), 1, sym_parenthesized_expression, - [73138] = 5, - ACTIONS(18), 1, + [73160] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4290), 1, anon_sym_LPAREN, STATE(2051), 1, sym_parenthesized_expression, STATE(2307), 1, sym_text_interpolation, - [73154] = 5, - ACTIONS(18), 1, + [73176] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4290), 1, anon_sym_LPAREN, STATE(2308), 1, sym_text_interpolation, STATE(2378), 1, sym_parenthesized_expression, - [73170] = 5, - ACTIONS(18), 1, + [73192] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(2825), 1, aux_sym__arrow_function_header_token1, - ACTIONS(4561), 1, + ACTIONS(4578), 1, aux_sym_namespace_use_declaration_token2, STATE(2309), 1, sym_text_interpolation, - [73186] = 5, - ACTIONS(18), 1, + [73208] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1700), 1, sym_declaration_list, STATE(2310), 1, sym_text_interpolation, - [73202] = 5, - ACTIONS(18), 1, + [73224] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1136), 1, sym_compound_statement, STATE(2311), 1, sym_text_interpolation, - [73218] = 4, - ACTIONS(18), 1, + [73240] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2312), 1, sym_text_interpolation, - ACTIONS(4563), 2, + ACTIONS(4580), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73232] = 4, - ACTIONS(18), 1, + [73254] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2313), 1, sym_text_interpolation, - ACTIONS(4565), 2, + ACTIONS(4582), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73246] = 5, - ACTIONS(18), 1, + [73268] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4513), 1, + ACTIONS(4530), 1, anon_sym_LPAREN, STATE(80), 1, sym_parenthesized_expression, STATE(2314), 1, sym_text_interpolation, - [73262] = 4, - ACTIONS(18), 1, + [73284] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2315), 1, sym_text_interpolation, - ACTIONS(4567), 2, + ACTIONS(4584), 2, anon_sym_COMMA, anon_sym_RPAREN, - [73276] = 4, - ACTIONS(18), 1, + [73298] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2316), 1, sym_text_interpolation, - ACTIONS(4569), 2, + ACTIONS(4586), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73290] = 4, - ACTIONS(18), 1, + [73312] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2317), 1, sym_text_interpolation, - ACTIONS(4571), 2, + ACTIONS(4588), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73304] = 5, - ACTIONS(18), 1, + [73326] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(450), 1, sym_declaration_list, STATE(2318), 1, sym_text_interpolation, - [73320] = 5, - ACTIONS(18), 1, + [73342] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(2289), 1, sym_variable_name, STATE(2319), 1, sym_text_interpolation, - [73336] = 4, - ACTIONS(18), 1, + [73358] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2320), 1, sym_text_interpolation, - ACTIONS(4573), 2, + ACTIONS(4590), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73350] = 4, - ACTIONS(18), 1, + [73372] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2321), 1, sym_text_interpolation, - ACTIONS(4575), 2, + ACTIONS(4592), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73364] = 4, - ACTIONS(18), 1, + [73386] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2322), 1, sym_text_interpolation, - ACTIONS(2457), 2, + ACTIONS(2459), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73378] = 4, - ACTIONS(18), 1, + [73400] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2323), 1, sym_text_interpolation, - ACTIONS(4577), 2, + ACTIONS(4594), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73392] = 5, - ACTIONS(18), 1, + [73414] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1656), 1, sym_formal_parameters, STATE(2324), 1, sym_text_interpolation, - [73408] = 5, - ACTIONS(18), 1, + [73430] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4513), 1, + ACTIONS(4530), 1, anon_sym_LPAREN, STATE(17), 1, sym_parenthesized_expression, STATE(2325), 1, sym_text_interpolation, - [73424] = 5, - ACTIONS(18), 1, + [73446] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4508), 1, + ACTIONS(4525), 1, sym_name, STATE(2326), 1, sym_text_interpolation, STATE(2524), 1, sym_namespace_name, - [73440] = 5, - ACTIONS(18), 1, + [73462] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1715), 1, sym_declaration_list, STATE(2327), 1, sym_text_interpolation, - [73456] = 4, - ACTIONS(18), 1, + [73478] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2328), 1, sym_text_interpolation, - ACTIONS(4579), 2, + ACTIONS(4596), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73470] = 5, - ACTIONS(18), 1, + [73492] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4513), 1, + ACTIONS(4530), 1, anon_sym_LPAREN, STATE(84), 1, sym_parenthesized_expression, STATE(2329), 1, sym_text_interpolation, - [73486] = 5, - ACTIONS(18), 1, + [73508] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(2058), 1, sym_formal_parameters, STATE(2330), 1, sym_text_interpolation, - [73502] = 5, - ACTIONS(18), 1, + [73524] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1621), 1, sym_formal_parameters, STATE(2331), 1, sym_text_interpolation, - [73518] = 5, - ACTIONS(18), 1, + [73540] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(442), 1, sym_declaration_list, STATE(2332), 1, sym_text_interpolation, - [73534] = 4, - ACTIONS(18), 1, + [73556] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2333), 1, sym_text_interpolation, - ACTIONS(4581), 2, + ACTIONS(4598), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73548] = 4, - ACTIONS(18), 1, + [73570] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2334), 1, sym_text_interpolation, - ACTIONS(4583), 2, + ACTIONS(4600), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73562] = 4, - ACTIONS(18), 1, + [73584] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2335), 1, sym_text_interpolation, - ACTIONS(4585), 2, + ACTIONS(4602), 2, anon_sym_string, anon_sym_int, - [73576] = 5, - ACTIONS(18), 1, + [73598] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(441), 1, sym_declaration_list, STATE(2336), 1, sym_text_interpolation, - [73592] = 4, - ACTIONS(18), 1, + [73614] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2337), 1, sym_text_interpolation, - ACTIONS(4587), 2, + ACTIONS(4604), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73606] = 5, - ACTIONS(18), 1, + [73628] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4513), 1, + ACTIONS(4530), 1, anon_sym_LPAREN, STATE(43), 1, sym_parenthesized_expression, STATE(2338), 1, sym_text_interpolation, - [73622] = 4, - ACTIONS(18), 1, + [73644] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2339), 1, sym_text_interpolation, - ACTIONS(3527), 2, + ACTIONS(3529), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73636] = 5, - ACTIONS(18), 1, + [73658] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4513), 1, + ACTIONS(4530), 1, anon_sym_LPAREN, STATE(44), 1, sym_parenthesized_expression, STATE(2340), 1, sym_text_interpolation, - [73652] = 5, - ACTIONS(18), 1, + [73674] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, anon_sym_LBRACE, STATE(947), 1, sym_declaration_list, STATE(2341), 1, sym_text_interpolation, - [73668] = 5, - ACTIONS(18), 1, + [73690] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4589), 1, + ACTIONS(4606), 1, anon_sym_LPAREN, STATE(2328), 1, sym_parenthesized_expression, STATE(2342), 1, sym_text_interpolation, - [73684] = 5, - ACTIONS(18), 1, + [73706] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1724), 1, + ACTIONS(1726), 1, anon_sym_BSLASH, STATE(2343), 1, sym_text_interpolation, STATE(2390), 1, aux_sym_namespace_name_repeat1, - [73700] = 5, - ACTIONS(18), 1, + [73722] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3699), 1, + ACTIONS(3703), 1, anon_sym_LBRACE, STATE(540), 1, sym_enum_declaration_list, STATE(2344), 1, sym_text_interpolation, - [73716] = 5, - ACTIONS(18), 1, + [73738] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4031), 1, + ACTIONS(4046), 1, anon_sym_LBRACE, STATE(456), 1, sym_declaration_list, STATE(2345), 1, sym_text_interpolation, - [73732] = 5, - ACTIONS(18), 1, + [73754] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1114), 1, sym_compound_statement, STATE(2346), 1, sym_text_interpolation, - [73748] = 5, - ACTIONS(18), 1, + [73770] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, anon_sym_LBRACE, STATE(946), 1, sym_declaration_list, STATE(2347), 1, sym_text_interpolation, - [73764] = 5, - ACTIONS(18), 1, + [73786] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3699), 1, + ACTIONS(3703), 1, anon_sym_LBRACE, STATE(562), 1, sym_enum_declaration_list, STATE(2348), 1, sym_text_interpolation, - [73780] = 5, - ACTIONS(18), 1, + [73802] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(2067), 1, sym_formal_parameters, STATE(2349), 1, sym_text_interpolation, - [73796] = 4, - ACTIONS(18), 1, + [73818] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2350), 1, sym_text_interpolation, - ACTIONS(2469), 2, + ACTIONS(2471), 2, anon_sym_SEMI, anon_sym_RPAREN, - [73810] = 5, - ACTIONS(18), 1, + [73832] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2170), 1, sym_compound_statement, STATE(2351), 1, sym_text_interpolation, - [73826] = 5, - ACTIONS(18), 1, + [73848] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3699), 1, + ACTIONS(3703), 1, anon_sym_LBRACE, STATE(482), 1, sym_enum_declaration_list, STATE(2352), 1, sym_text_interpolation, - [73842] = 5, - ACTIONS(18), 1, + [73864] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1115), 1, sym_compound_statement, STATE(2353), 1, sym_text_interpolation, - [73858] = 5, - ACTIONS(18), 1, + [73880] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1118), 1, sym_compound_statement, STATE(2354), 1, sym_text_interpolation, - [73874] = 5, - ACTIONS(18), 1, + [73896] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4591), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(4593), 1, + ACTIONS(4610), 1, anon_sym_RPAREN, STATE(2355), 1, sym_text_interpolation, - [73890] = 5, - ACTIONS(18), 1, + [73912] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4595), 1, + ACTIONS(4612), 1, anon_sym_LPAREN, STATE(1771), 1, sym_formal_parameters, STATE(2356), 1, sym_text_interpolation, - [73906] = 4, - ACTIONS(18), 1, + [73928] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2357), 1, sym_text_interpolation, - ACTIONS(4597), 2, + ACTIONS(4614), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73920] = 5, - ACTIONS(18), 1, + [73942] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1125), 1, sym_compound_statement, STATE(2358), 1, sym_text_interpolation, - [73936] = 4, - ACTIONS(18), 1, + [73958] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2359), 1, sym_text_interpolation, - ACTIONS(4271), 2, + ACTIONS(4288), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [73950] = 4, - ACTIONS(18), 1, + [73972] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2360), 1, sym_text_interpolation, - ACTIONS(4033), 2, + ACTIONS(4048), 2, anon_sym_COMMA, anon_sym_RBRACE, - [73964] = 5, - ACTIONS(18), 1, + [73986] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(438), 1, sym_declaration_list, STATE(2361), 1, sym_text_interpolation, - [73980] = 4, - ACTIONS(18), 1, + [74002] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2362), 1, sym_text_interpolation, - ACTIONS(4599), 2, + ACTIONS(4616), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73994] = 4, - ACTIONS(18), 1, + [74016] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2363), 1, sym_text_interpolation, - ACTIONS(2469), 2, + ACTIONS(2471), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74008] = 5, - ACTIONS(18), 1, + [74030] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1654), 1, sym_formal_parameters, STATE(2364), 1, sym_text_interpolation, - [74024] = 4, - ACTIONS(18), 1, + [74046] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2365), 1, sym_text_interpolation, - ACTIONS(4601), 2, + ACTIONS(4618), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74038] = 4, - ACTIONS(18), 1, + [74060] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2366), 1, sym_text_interpolation, - ACTIONS(4603), 2, + ACTIONS(4620), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74052] = 5, - ACTIONS(18), 1, + [74074] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1129), 1, sym_compound_statement, STATE(2367), 1, sym_text_interpolation, - [74068] = 4, - ACTIONS(18), 1, + [74090] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2368), 1, sym_text_interpolation, - ACTIONS(4605), 2, + ACTIONS(4622), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74082] = 5, - ACTIONS(18), 1, + [74104] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(941), 1, sym_compound_statement, STATE(2369), 1, sym_text_interpolation, - [74098] = 5, - ACTIONS(18), 1, + [74120] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4607), 1, + ACTIONS(4624), 1, anon_sym_LBRACE, STATE(1040), 1, sym_match_block, STATE(2370), 1, sym_text_interpolation, - [74114] = 5, - ACTIONS(18), 1, + [74136] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4521), 1, anon_sym_LBRACE, STATE(432), 1, sym_compound_statement, STATE(2371), 1, sym_text_interpolation, - [74130] = 5, - ACTIONS(18), 1, + [74152] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3621), 1, + ACTIONS(3625), 1, anon_sym_LBRACE, STATE(1951), 1, sym_enum_declaration_list, STATE(2372), 1, sym_text_interpolation, - [74146] = 5, - ACTIONS(18), 1, + [74168] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1780), 1, sym_declaration_list, STATE(2373), 1, sym_text_interpolation, - [74162] = 5, - ACTIONS(18), 1, + [74184] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1668), 1, sym_formal_parameters, STATE(2374), 1, sym_text_interpolation, - [74178] = 4, - ACTIONS(18), 1, + [74200] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2375), 1, sym_text_interpolation, - ACTIONS(4609), 2, + ACTIONS(4626), 2, anon_sym_string, anon_sym_int, - [74192] = 4, - ACTIONS(18), 1, + [74214] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2376), 1, sym_text_interpolation, - ACTIONS(4611), 2, + ACTIONS(4628), 2, anon_sym_COMMA, anon_sym_RBRACK, - [74206] = 5, - ACTIONS(18), 1, + [74228] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2593), 1, + ACTIONS(2595), 1, anon_sym_RPAREN, - ACTIONS(4519), 1, + ACTIONS(4536), 1, anon_sym_EQ, STATE(2377), 1, sym_text_interpolation, - [74222] = 5, - ACTIONS(18), 1, + [74244] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(501), 1, + ACTIONS(503), 1, anon_sym_COLON, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2029), 1, sym_colon_block, STATE(2378), 1, sym_text_interpolation, - [74238] = 5, - ACTIONS(18), 1, + [74260] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(930), 1, sym_compound_statement, STATE(2379), 1, sym_text_interpolation, - [74254] = 4, - ACTIONS(18), 1, + [74276] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2380), 1, sym_text_interpolation, - ACTIONS(4614), 2, + ACTIONS(4631), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74268] = 5, - ACTIONS(18), 1, + [74290] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4616), 1, + ACTIONS(4633), 1, anon_sym_SEMI, - ACTIONS(4618), 1, + ACTIONS(4635), 1, sym__automatic_semicolon, STATE(2381), 1, sym_text_interpolation, - [74284] = 5, - ACTIONS(18), 1, + [74306] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(928), 1, sym_compound_statement, STATE(2382), 1, sym_text_interpolation, - [74300] = 5, - ACTIONS(18), 1, + [74322] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(2273), 1, sym_variable_name, STATE(2383), 1, sym_text_interpolation, - [74316] = 4, - ACTIONS(18), 1, + [74338] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2384), 1, sym_text_interpolation, - ACTIONS(4620), 2, + ACTIONS(4637), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74330] = 5, - ACTIONS(18), 1, + [74352] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1120), 1, sym_compound_statement, STATE(2385), 1, sym_text_interpolation, - [74346] = 5, - ACTIONS(18), 1, + [74368] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2589), 1, + ACTIONS(2591), 1, anon_sym_RPAREN, - ACTIONS(4519), 1, + ACTIONS(4536), 1, anon_sym_EQ, STATE(2386), 1, sym_text_interpolation, - [74362] = 5, - ACTIONS(18), 1, + [74384] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(925), 1, sym_compound_statement, STATE(2387), 1, sym_text_interpolation, - [74378] = 5, - ACTIONS(18), 1, + [74400] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3621), 1, + ACTIONS(3625), 1, anon_sym_LBRACE, STATE(1957), 1, sym_enum_declaration_list, STATE(2388), 1, sym_text_interpolation, - [74394] = 5, - ACTIONS(18), 1, + [74416] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(2268), 1, sym_variable_name, STATE(2389), 1, sym_text_interpolation, - [74410] = 5, - ACTIONS(18), 1, + [74432] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4622), 1, + ACTIONS(4639), 1, anon_sym_BSLASH, STATE(1770), 1, aux_sym_namespace_name_repeat1, STATE(2390), 1, sym_text_interpolation, - [74426] = 4, - ACTIONS(18), 1, + [74448] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2391), 1, sym_text_interpolation, - ACTIONS(4625), 2, + ACTIONS(4642), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74440] = 4, - ACTIONS(18), 1, + [74462] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2392), 1, sym_text_interpolation, - ACTIONS(4627), 2, + ACTIONS(4644), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74454] = 5, - ACTIONS(18), 1, + [74476] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(4646), 1, anon_sym_SEMI, - ACTIONS(4631), 1, + ACTIONS(4648), 1, sym__automatic_semicolon, STATE(2393), 1, sym_text_interpolation, - [74470] = 5, - ACTIONS(18), 1, + [74492] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(2196), 1, sym_variable_name, STATE(2394), 1, sym_text_interpolation, - [74486] = 4, - ACTIONS(18), 1, + [74508] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2395), 1, sym_text_interpolation, - ACTIONS(4633), 2, + ACTIONS(4650), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74500] = 5, - ACTIONS(18), 1, + [74522] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(2262), 1, sym_variable_name, STATE(2396), 1, sym_text_interpolation, - [74516] = 4, - ACTIONS(18), 1, + [74538] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2397), 1, sym_text_interpolation, - ACTIONS(4635), 2, + ACTIONS(4652), 2, anon_sym_COMMA, anon_sym_RPAREN, - [74530] = 5, - ACTIONS(18), 1, + [74552] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(220), 1, + ACTIONS(222), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(524), 1, sym_compound_statement, STATE(2398), 1, sym_text_interpolation, - [74546] = 5, - ACTIONS(18), 1, + [74568] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1641), 1, sym_formal_parameters, STATE(2399), 1, sym_text_interpolation, - [74562] = 5, - ACTIONS(18), 1, + [74584] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4654), 1, anon_sym_SEMI, - ACTIONS(4639), 1, + ACTIONS(4656), 1, sym__automatic_semicolon, STATE(2400), 1, sym_text_interpolation, - [74578] = 4, - ACTIONS(18), 1, + [74600] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2401), 1, sym_text_interpolation, - ACTIONS(3869), 2, + ACTIONS(3879), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74592] = 4, - ACTIONS(18), 1, + [74614] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2402), 1, sym_text_interpolation, - ACTIONS(4641), 2, + ACTIONS(4658), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74606] = 5, - ACTIONS(18), 1, + [74628] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, anon_sym_LBRACE, STATE(966), 1, sym_declaration_list, STATE(2403), 1, sym_text_interpolation, - [74622] = 4, + [74644] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, STATE(2404), 1, sym_text_interpolation, - ACTIONS(3995), 2, + ACTIONS(4010), 2, sym_heredoc_end, sym__new_line, - [74636] = 5, - ACTIONS(18), 1, + [74658] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1086), 1, sym_declaration_list, STATE(2405), 1, sym_text_interpolation, - [74652] = 5, - ACTIONS(18), 1, + [74674] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4513), 1, + ACTIONS(4530), 1, anon_sym_LPAREN, STATE(35), 1, sym_parenthesized_expression, STATE(2406), 1, sym_text_interpolation, - [74668] = 5, - ACTIONS(18), 1, + [74690] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(1998), 1, sym_variable_name, STATE(2407), 1, sym_text_interpolation, - [74684] = 5, - ACTIONS(18), 1, + [74706] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, anon_sym_LBRACE, STATE(944), 1, sym_declaration_list, STATE(2408), 1, sym_text_interpolation, - [74700] = 4, - ACTIONS(18), 1, + [74722] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2409), 1, sym_text_interpolation, - ACTIONS(4233), 2, + ACTIONS(4250), 2, anon_sym_COMMA, anon_sym_RBRACE, - [74714] = 5, - ACTIONS(18), 1, + [74736] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4508), 1, + ACTIONS(4525), 1, sym_name, STATE(2410), 1, sym_text_interpolation, STATE(2530), 1, sym_namespace_name, - [74730] = 4, - ACTIONS(18), 1, + [74752] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2411), 1, sym_text_interpolation, - ACTIONS(4450), 2, + ACTIONS(4467), 2, anon_sym_COMMA, anon_sym_RBRACK, - [74744] = 4, - ACTIONS(18), 1, + [74766] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2412), 1, sym_text_interpolation, - ACTIONS(3359), 2, + ACTIONS(3361), 2, anon_sym_COMMA, anon_sym_RBRACK, - [74758] = 5, + [74780] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4643), 1, + ACTIONS(4660), 1, sym__new_line, - ACTIONS(4645), 1, + ACTIONS(4662), 1, sym_heredoc_end, STATE(2413), 1, sym_text_interpolation, - [74774] = 5, + [74796] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(4664), 1, sym__new_line, - ACTIONS(4649), 1, + ACTIONS(4666), 1, sym_heredoc_end, STATE(2414), 1, sym_text_interpolation, - [74790] = 5, + [74812] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4651), 1, + ACTIONS(4668), 1, sym__new_line, - ACTIONS(4653), 1, + ACTIONS(4670), 1, sym_heredoc_end, STATE(2415), 1, sym_text_interpolation, - [74806] = 5, - ACTIONS(18), 1, + [74828] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1112), 1, sym_compound_statement, STATE(2416), 1, sym_text_interpolation, - [74822] = 4, - ACTIONS(18), 1, + [74844] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2417), 1, sym_text_interpolation, - ACTIONS(4294), 2, + ACTIONS(4311), 2, anon_sym_COMMA, anon_sym_RPAREN, - [74836] = 4, - ACTIONS(18), 1, + [74858] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2418), 1, sym_text_interpolation, - ACTIONS(2475), 2, + ACTIONS(2477), 2, anon_sym_COMMA, anon_sym_RPAREN, - [74850] = 5, + [74872] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4655), 1, + ACTIONS(4672), 1, sym__new_line, - ACTIONS(4657), 1, + ACTIONS(4674), 1, sym_heredoc_end, STATE(2419), 1, sym_text_interpolation, - [74866] = 5, - ACTIONS(18), 1, + [74888] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(444), 1, sym_declaration_list, STATE(2420), 1, sym_text_interpolation, - [74882] = 5, - ACTIONS(18), 1, + [74904] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(446), 1, sym_declaration_list, STATE(2421), 1, sym_text_interpolation, - [74898] = 5, - ACTIONS(18), 1, + [74920] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(2208), 1, sym_formal_parameters, STATE(2422), 1, sym_text_interpolation, - [74914] = 5, - ACTIONS(18), 1, + [74936] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(452), 1, sym_declaration_list, STATE(2423), 1, sym_text_interpolation, - [74930] = 4, - ACTIONS(18), 1, + [74952] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2424), 1, sym_text_interpolation, - ACTIONS(2457), 2, + ACTIONS(2459), 2, anon_sym_SEMI, anon_sym_RPAREN, - [74944] = 5, - ACTIONS(18), 1, + [74966] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1763), 1, sym_declaration_list, STATE(2425), 1, sym_text_interpolation, - [74960] = 4, - ACTIONS(18), 1, + [74982] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2426), 1, sym_text_interpolation, - ACTIONS(1687), 2, + ACTIONS(1691), 2, anon_sym_COMMA, anon_sym_RBRACK, - [74974] = 5, - ACTIONS(18), 1, + [74996] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4595), 1, + ACTIONS(4612), 1, anon_sym_LPAREN, STATE(1757), 1, sym_formal_parameters, STATE(2427), 1, sym_text_interpolation, - [74990] = 5, - ACTIONS(18), 1, + [75012] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1102), 1, sym_compound_statement, STATE(2428), 1, sym_text_interpolation, - [75006] = 5, - ACTIONS(18), 1, + [75028] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, anon_sym_LBRACE, STATE(2126), 1, sym_declaration_list, STATE(2429), 1, sym_text_interpolation, - [75022] = 5, - ACTIONS(18), 1, + [75044] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(2214), 1, sym_formal_parameters, STATE(2430), 1, sym_text_interpolation, - [75038] = 5, - ACTIONS(18), 1, + [75060] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1759), 1, sym_declaration_list, STATE(2431), 1, sym_text_interpolation, - [75054] = 4, - ACTIONS(18), 1, + [75076] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2432), 1, sym_text_interpolation, - ACTIONS(4306), 2, + ACTIONS(4323), 2, anon_sym_COMMA, anon_sym_RBRACE, - [75068] = 5, - ACTIONS(18), 1, + [75090] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1105), 1, sym_compound_statement, STATE(2433), 1, sym_text_interpolation, - [75084] = 4, - ACTIONS(18), 1, + [75106] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2434), 1, sym_text_interpolation, - ACTIONS(2571), 2, + ACTIONS(2573), 2, anon_sym_COMMA, anon_sym_RPAREN, - [75098] = 4, - ACTIONS(18), 1, + [75120] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2435), 1, sym_text_interpolation, - ACTIONS(4659), 2, + ACTIONS(4676), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75112] = 4, - ACTIONS(18), 1, + [75134] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2436), 1, sym_text_interpolation, - ACTIONS(4661), 2, + ACTIONS(4678), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75126] = 5, - ACTIONS(18), 1, + [75148] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2447), 1, anon_sym_COLON, - ACTIONS(4591), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, STATE(2437), 1, sym_text_interpolation, - [75142] = 4, - ACTIONS(18), 1, + [75164] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2438), 1, sym_text_interpolation, - ACTIONS(4663), 2, + ACTIONS(4680), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75156] = 4, - ACTIONS(18), 1, + [75178] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2439), 1, sym_text_interpolation, - ACTIONS(4665), 2, + ACTIONS(4682), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75170] = 4, - ACTIONS(18), 1, + [75192] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2440), 1, sym_text_interpolation, - ACTIONS(477), 2, + ACTIONS(479), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75184] = 5, - ACTIONS(18), 1, + [75206] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1751), 1, anon_sym_DOLLAR, STATE(2397), 1, sym_variable_name, STATE(2441), 1, sym_text_interpolation, - [75200] = 5, - ACTIONS(18), 1, + [75222] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1702), 1, sym_declaration_list, STATE(2442), 1, sym_text_interpolation, - [75216] = 5, - ACTIONS(18), 1, + [75238] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(945), 1, sym_compound_statement, STATE(2443), 1, sym_text_interpolation, - [75232] = 5, - ACTIONS(18), 1, + [75254] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4667), 1, + ACTIONS(4684), 1, anon_sym_LBRACE, STATE(916), 1, sym_match_block, STATE(2444), 1, sym_text_interpolation, - [75248] = 5, - ACTIONS(18), 1, + [75270] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(918), 1, sym_compound_statement, STATE(2445), 1, sym_text_interpolation, - [75264] = 5, + [75286] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(4669), 1, + ACTIONS(4686), 1, sym__new_line, - ACTIONS(4671), 1, + ACTIONS(4688), 1, sym_heredoc_end, STATE(2446), 1, sym_text_interpolation, - [75280] = 5, - ACTIONS(18), 1, + [75302] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1121), 1, sym_declaration_list, STATE(2447), 1, sym_text_interpolation, - [75296] = 5, - ACTIONS(18), 1, + [75318] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1108), 1, sym_compound_statement, STATE(2448), 1, sym_text_interpolation, - [75312] = 4, - ACTIONS(18), 1, + [75334] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2449), 1, sym_text_interpolation, - ACTIONS(471), 2, + ACTIONS(473), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75326] = 4, - ACTIONS(18), 1, + [75348] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2450), 1, sym_text_interpolation, - ACTIONS(4673), 2, + ACTIONS(4690), 2, anon_sym_COMMA, anon_sym_RBRACK, - [75340] = 5, - ACTIONS(18), 1, + [75362] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1710), 1, sym_compound_statement, STATE(2451), 1, sym_text_interpolation, - [75356] = 4, - ACTIONS(18), 1, + [75378] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2452), 1, sym_text_interpolation, - ACTIONS(4675), 2, + ACTIONS(4692), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75370] = 5, - ACTIONS(18), 1, + [75392] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1714), 1, sym_declaration_list, STATE(2453), 1, sym_text_interpolation, - [75386] = 5, - ACTIONS(18), 1, + [75408] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(914), 1, sym_compound_statement, STATE(2454), 1, sym_text_interpolation, - [75402] = 5, - ACTIONS(18), 1, + [75424] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4589), 1, + ACTIONS(4606), 1, anon_sym_LPAREN, STATE(2316), 1, sym_parenthesized_expression, STATE(2455), 1, sym_text_interpolation, - [75418] = 4, - ACTIONS(18), 1, + [75440] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2456), 1, sym_text_interpolation, - ACTIONS(4265), 2, + ACTIONS(4282), 2, anon_sym_COMMA, anon_sym_RBRACK, - [75432] = 5, - ACTIONS(18), 1, + [75454] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(932), 1, sym_compound_statement, STATE(2457), 1, sym_text_interpolation, - [75448] = 5, - ACTIONS(18), 1, + [75470] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3621), 1, + ACTIONS(3625), 1, anon_sym_LBRACE, STATE(2003), 1, sym_enum_declaration_list, STATE(2458), 1, sym_text_interpolation, - [75464] = 5, - ACTIONS(18), 1, + [75486] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(926), 1, sym_compound_statement, STATE(2459), 1, sym_text_interpolation, - [75480] = 5, - ACTIONS(18), 1, + [75502] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1734), 1, sym_declaration_list, STATE(2460), 1, sym_text_interpolation, - [75496] = 5, - ACTIONS(18), 1, + [75518] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(923), 1, sym_compound_statement, STATE(2461), 1, sym_text_interpolation, - [75512] = 5, - ACTIONS(18), 1, + [75534] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1123), 1, sym_declaration_list, STATE(2462), 1, sym_text_interpolation, - [75528] = 5, - ACTIONS(18), 1, + [75550] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1718), 1, sym_declaration_list, STATE(2463), 1, sym_text_interpolation, - [75544] = 4, - ACTIONS(18), 1, + [75566] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2464), 1, sym_text_interpolation, - ACTIONS(4677), 2, + ACTIONS(4694), 2, anon_sym_COMMA, anon_sym_RPAREN, - [75558] = 5, - ACTIONS(18), 1, + [75580] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(2143), 1, sym_formal_parameters, STATE(2465), 1, sym_text_interpolation, - [75574] = 5, - ACTIONS(18), 1, + [75596] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(910), 1, sym_compound_statement, STATE(2466), 1, sym_text_interpolation, - [75590] = 5, - ACTIONS(18), 1, + [75612] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3543), 1, anon_sym_LBRACE, STATE(1066), 1, sym_compound_statement, STATE(2467), 1, sym_text_interpolation, - [75606] = 5, - ACTIONS(18), 1, + [75628] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3431), 1, anon_sym_LBRACE, STATE(908), 1, sym_declaration_list, STATE(2468), 1, sym_text_interpolation, - [75622] = 4, - ACTIONS(18), 1, + [75644] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2469), 1, sym_text_interpolation, - ACTIONS(3420), 2, + ACTIONS(3422), 2, anon_sym_COMMA, anon_sym_RPAREN, - [75636] = 5, - ACTIONS(18), 1, + [75658] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(2825), 1, aux_sym__arrow_function_header_token1, - ACTIONS(4679), 1, + ACTIONS(4696), 1, aux_sym_namespace_use_declaration_token2, STATE(2470), 1, sym_text_interpolation, - [75652] = 5, - ACTIONS(18), 1, + [75674] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4513), 1, + ACTIONS(4530), 1, anon_sym_LPAREN, STATE(69), 1, sym_parenthesized_expression, STATE(2471), 1, sym_text_interpolation, - [75668] = 5, - ACTIONS(18), 1, + [75690] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1744), 1, sym_declaration_list, STATE(2472), 1, sym_text_interpolation, - [75684] = 4, - ACTIONS(18), 1, + [75706] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2473), 1, sym_text_interpolation, - ACTIONS(4681), 2, + ACTIONS(4698), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75698] = 5, - ACTIONS(18), 1, + [75720] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2517), 1, anon_sym_RPAREN, - ACTIONS(4519), 1, + ACTIONS(4536), 1, anon_sym_EQ, STATE(2474), 1, sym_text_interpolation, - [75714] = 5, - ACTIONS(18), 1, + [75736] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1743), 1, sym_declaration_list, STATE(2475), 1, sym_text_interpolation, - [75730] = 4, - ACTIONS(18), 1, + [75752] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2476), 1, sym_text_interpolation, - ACTIONS(4683), 2, + ACTIONS(4700), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75744] = 5, - ACTIONS(18), 1, + [75766] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4521), 1, anon_sym_LBRACE, STATE(430), 1, sym_compound_statement, STATE(2477), 1, sym_text_interpolation, - [75760] = 5, - ACTIONS(18), 1, + [75782] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4031), 1, + ACTIONS(4046), 1, anon_sym_LBRACE, STATE(558), 1, sym_declaration_list, STATE(2478), 1, sym_text_interpolation, - [75776] = 4, - ACTIONS(18), 1, + [75798] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2479), 1, sym_text_interpolation, - ACTIONS(4685), 2, + ACTIONS(4702), 2, anon_sym_string, anon_sym_int, - [75790] = 5, - ACTIONS(18), 1, + [75812] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3699), 1, + ACTIONS(3703), 1, anon_sym_LBRACE, STATE(541), 1, sym_enum_declaration_list, STATE(2480), 1, sym_text_interpolation, - [75806] = 5, - ACTIONS(18), 1, + [75828] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_SEMI, - ACTIONS(4689), 1, + ACTIONS(4706), 1, sym__automatic_semicolon, STATE(2481), 1, sym_text_interpolation, - [75822] = 5, - ACTIONS(18), 1, + [75844] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3437), 1, anon_sym_LBRACE, STATE(1087), 1, sym_declaration_list, STATE(2482), 1, sym_text_interpolation, - [75838] = 5, - ACTIONS(18), 1, + [75860] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(927), 1, sym_compound_statement, STATE(2483), 1, sym_text_interpolation, - [75854] = 4, - ACTIONS(18), 1, + [75876] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2484), 1, sym_text_interpolation, - ACTIONS(4691), 2, + ACTIONS(4708), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75868] = 5, - ACTIONS(18), 1, + [75890] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(389), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(1732), 1, sym_compound_statement, STATE(2485), 1, sym_text_interpolation, - [75884] = 5, - ACTIONS(18), 1, + [75906] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3369), 1, anon_sym_LPAREN, STATE(1632), 1, sym_formal_parameters, STATE(2486), 1, sym_text_interpolation, - [75900] = 5, - ACTIONS(18), 1, + [75922] = 5, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3497), 1, anon_sym_LBRACE, STATE(440), 1, sym_declaration_list, STATE(2487), 1, sym_text_interpolation, - [75916] = 4, - ACTIONS(18), 1, + [75938] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2488), 1, sym_text_interpolation, - ACTIONS(4693), 2, + ACTIONS(4710), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75930] = 4, - ACTIONS(18), 1, + [75952] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_EQ_GT, STATE(2489), 1, sym_text_interpolation, - [75943] = 4, - ACTIONS(18), 1, + [75965] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4210), 1, + ACTIONS(4227), 1, aux_sym_class_declaration_token1, STATE(2490), 1, sym_text_interpolation, - [75956] = 4, - ACTIONS(18), 1, + [75978] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_EQ_GT, STATE(2491), 1, sym_text_interpolation, - [75969] = 4, - ACTIONS(18), 1, + [75991] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4250), 1, + ACTIONS(4267), 1, anon_sym_RPAREN, STATE(2492), 1, sym_text_interpolation, - [75982] = 4, - ACTIONS(18), 1, + [76004] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4716), 1, anon_sym_EQ_GT, STATE(2493), 1, sym_text_interpolation, - [75995] = 4, - ACTIONS(18), 1, + [76017] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_EQ, STATE(2494), 1, sym_text_interpolation, - [76008] = 4, - ACTIONS(18), 1, + [76030] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(4720), 1, anon_sym_RPAREN, STATE(2495), 1, sym_text_interpolation, - [76021] = 4, - ACTIONS(18), 1, + [76043] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4705), 1, + ACTIONS(4722), 1, anon_sym_LPAREN, STATE(2496), 1, sym_text_interpolation, - [76034] = 4, - ACTIONS(18), 1, + [76056] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(891), 1, + ACTIONS(893), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2497), 1, sym_text_interpolation, - [76047] = 4, - ACTIONS(18), 1, + [76069] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4724), 1, aux_sym_while_statement_token2, STATE(2498), 1, sym_text_interpolation, - [76060] = 4, - ACTIONS(18), 1, + [76082] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2517), 1, anon_sym_RPAREN, STATE(2499), 1, sym_text_interpolation, - [76073] = 4, - ACTIONS(18), 1, + [76095] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4709), 1, + ACTIONS(4726), 1, anon_sym_RPAREN, STATE(2500), 1, sym_text_interpolation, - [76086] = 4, - ACTIONS(18), 1, + [76108] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4711), 1, + ACTIONS(4728), 1, anon_sym_COLON_COLON, STATE(2501), 1, sym_text_interpolation, - [76099] = 4, - ACTIONS(18), 1, + [76121] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(877), 1, + ACTIONS(879), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2502), 1, sym_text_interpolation, - [76112] = 4, - ACTIONS(18), 1, + [76134] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4713), 1, + ACTIONS(4730), 1, anon_sym_EQ, STATE(2503), 1, sym_text_interpolation, - [76125] = 4, - ACTIONS(18), 1, + [76147] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4715), 1, + ACTIONS(4732), 1, anon_sym_RPAREN, STATE(2504), 1, sym_text_interpolation, - [76138] = 4, - ACTIONS(18), 1, + [76160] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4717), 1, + ACTIONS(4734), 1, anon_sym_RPAREN, STATE(2505), 1, sym_text_interpolation, - [76151] = 4, - ACTIONS(18), 1, + [76173] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4736), 1, anon_sym_EQ_GT, STATE(2506), 1, sym_text_interpolation, - [76164] = 4, - ACTIONS(18), 1, + [76186] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4721), 1, + ACTIONS(4738), 1, anon_sym_SEMI, STATE(2507), 1, sym_text_interpolation, - [76177] = 4, - ACTIONS(18), 1, + [76199] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4723), 1, + ACTIONS(4740), 1, sym_heredoc_end, STATE(2508), 1, sym_text_interpolation, - [76190] = 4, - ACTIONS(18), 1, + [76212] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4725), 1, + ACTIONS(4742), 1, anon_sym_LPAREN, STATE(2509), 1, sym_text_interpolation, - [76203] = 4, - ACTIONS(18), 1, + [76225] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4744), 1, sym_heredoc_end, STATE(2510), 1, sym_text_interpolation, - [76216] = 4, - ACTIONS(18), 1, + [76238] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4746), 1, anon_sym_RPAREN, STATE(2511), 1, sym_text_interpolation, - [76229] = 4, - ACTIONS(18), 1, + [76251] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4194), 1, + ACTIONS(4209), 1, anon_sym_RBRACK, STATE(2512), 1, sym_text_interpolation, - [76242] = 4, - ACTIONS(18), 1, + [76264] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4731), 1, + ACTIONS(4748), 1, anon_sym_RPAREN, STATE(2513), 1, sym_text_interpolation, - [76255] = 4, - ACTIONS(18), 1, + [76277] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4733), 1, + ACTIONS(4750), 1, sym_name, STATE(2514), 1, sym_text_interpolation, - [76268] = 4, - ACTIONS(18), 1, + [76290] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4735), 1, + ACTIONS(4752), 1, anon_sym_SQUOTE2, STATE(2515), 1, sym_text_interpolation, - [76281] = 4, - ACTIONS(18), 1, + [76303] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4754), 1, anon_sym_DQUOTE2, STATE(2516), 1, sym_text_interpolation, - [76294] = 4, - ACTIONS(18), 1, + [76316] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4277), 1, + ACTIONS(4294), 1, anon_sym_RPAREN, STATE(2517), 1, sym_text_interpolation, - [76307] = 4, - ACTIONS(18), 1, + [76329] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4756), 1, sym_name, STATE(2518), 1, sym_text_interpolation, - [76320] = 4, - ACTIONS(18), 1, + [76342] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4228), 1, + ACTIONS(4245), 1, anon_sym_RPAREN, STATE(2519), 1, sym_text_interpolation, - [76333] = 4, - ACTIONS(18), 1, + [76355] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4144), 1, + ACTIONS(4159), 1, anon_sym_RBRACE, STATE(2520), 1, sym_text_interpolation, - [76346] = 4, - ACTIONS(18), 1, + [76368] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4741), 1, + ACTIONS(4758), 1, sym_name, STATE(2521), 1, sym_text_interpolation, - [76359] = 4, - ACTIONS(18), 1, + [76381] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4743), 1, + ACTIONS(4760), 1, aux_sym_class_declaration_token1, STATE(2522), 1, sym_text_interpolation, - [76372] = 4, - ACTIONS(18), 1, + [76394] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4745), 1, + ACTIONS(4762), 1, sym_name, STATE(2523), 1, sym_text_interpolation, - [76385] = 4, - ACTIONS(18), 1, + [76407] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4747), 1, + ACTIONS(4764), 1, anon_sym_BSLASH, STATE(2524), 1, sym_text_interpolation, - [76398] = 4, - ACTIONS(18), 1, + [76420] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4749), 1, + ACTIONS(4766), 1, anon_sym_BSLASH, STATE(2525), 1, sym_text_interpolation, - [76411] = 4, - ACTIONS(18), 1, + [76433] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4751), 1, + ACTIONS(4768), 1, anon_sym_RBRACK, STATE(2526), 1, sym_text_interpolation, - [76424] = 4, - ACTIONS(18), 1, + [76446] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4753), 1, + ACTIONS(4770), 1, sym_name, STATE(2527), 1, sym_text_interpolation, - [76437] = 4, - ACTIONS(18), 1, + [76459] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4304), 1, + ACTIONS(4321), 1, sym_name, STATE(2528), 1, sym_text_interpolation, - [76450] = 4, - ACTIONS(18), 1, + [76472] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4772), 1, anon_sym_BSLASH, STATE(2529), 1, sym_text_interpolation, - [76463] = 4, - ACTIONS(18), 1, + [76485] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4757), 1, + ACTIONS(4774), 1, anon_sym_BSLASH, STATE(2530), 1, sym_text_interpolation, - [76476] = 4, - ACTIONS(18), 1, + [76498] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3621), 1, sym_name, STATE(2531), 1, sym_text_interpolation, - [76489] = 4, - ACTIONS(18), 1, + [76511] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4759), 1, + ACTIONS(4776), 1, sym_name, STATE(2532), 1, sym_text_interpolation, - [76502] = 4, - ACTIONS(18), 1, + [76524] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4778), 1, anon_sym_COLON_COLON, STATE(2533), 1, sym_text_interpolation, - [76515] = 4, - ACTIONS(18), 1, + [76537] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4763), 1, + ACTIONS(4780), 1, aux_sym_foreach_statement_token2, STATE(2534), 1, sym_text_interpolation, - [76528] = 4, - ACTIONS(18), 1, + [76550] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4765), 1, + ACTIONS(4782), 1, anon_sym_RPAREN, STATE(2535), 1, sym_text_interpolation, - [76541] = 4, - ACTIONS(18), 1, + [76563] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, STATE(2536), 1, sym_text_interpolation, - [76554] = 4, - ACTIONS(18), 1, + [76576] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4769), 1, + ACTIONS(4786), 1, aux_sym__arrow_function_header_token1, STATE(2537), 1, sym_text_interpolation, - [76567] = 4, - ACTIONS(18), 1, + [76589] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4771), 1, + ACTIONS(4788), 1, sym_name, STATE(2538), 1, sym_text_interpolation, - [76580] = 4, - ACTIONS(18), 1, + [76602] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(885), 1, + ACTIONS(887), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2539), 1, sym_text_interpolation, - [76593] = 4, - ACTIONS(18), 1, + [76615] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4536), 1, anon_sym_EQ, STATE(2540), 1, sym_text_interpolation, - [76606] = 4, - ACTIONS(18), 1, + [76628] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4773), 1, + ACTIONS(4790), 1, sym_name, STATE(2541), 1, sym_text_interpolation, - [76619] = 4, - ACTIONS(18), 1, + [76641] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4775), 1, + ACTIONS(4792), 1, sym_name, STATE(2542), 1, sym_text_interpolation, - [76632] = 4, - ACTIONS(18), 1, + [76654] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4593), 1, + ACTIONS(4610), 1, anon_sym_RPAREN, STATE(2543), 1, sym_text_interpolation, - [76645] = 4, - ACTIONS(18), 1, + [76667] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(4794), 1, anon_sym_RPAREN, STATE(2544), 1, sym_text_interpolation, - [76658] = 4, - ACTIONS(18), 1, + [76680] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4779), 1, + ACTIONS(4796), 1, aux_sym_class_declaration_token1, STATE(2545), 1, sym_text_interpolation, - [76671] = 4, - ACTIONS(18), 1, + [76693] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4781), 1, + ACTIONS(4798), 1, sym_name, STATE(2546), 1, sym_text_interpolation, - [76684] = 4, - ACTIONS(18), 1, + [76706] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4216), 1, + ACTIONS(4233), 1, sym_name, STATE(2547), 1, sym_text_interpolation, - [76697] = 4, - ACTIONS(18), 1, + [76719] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4783), 1, + ACTIONS(4800), 1, anon_sym_RPAREN, STATE(2548), 1, sym_text_interpolation, - [76710] = 4, - ACTIONS(18), 1, + [76732] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4785), 1, + ACTIONS(4802), 1, sym_name, STATE(2549), 1, sym_text_interpolation, - [76723] = 4, - ACTIONS(18), 1, + [76745] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4804), 1, anon_sym_EQ_GT, STATE(2550), 1, sym_text_interpolation, - [76736] = 4, - ACTIONS(18), 1, + [76758] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4789), 1, + ACTIONS(4806), 1, sym_heredoc_start, STATE(2551), 1, sym_text_interpolation, - [76749] = 4, - ACTIONS(18), 1, + [76771] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4791), 1, + ACTIONS(4808), 1, sym_heredoc_start, STATE(2552), 1, sym_text_interpolation, - [76762] = 4, - ACTIONS(18), 1, + [76784] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4793), 1, + ACTIONS(4810), 1, sym_heredoc_end, STATE(2553), 1, sym_text_interpolation, - [76775] = 4, - ACTIONS(18), 1, + [76797] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4795), 1, + ACTIONS(4812), 1, anon_sym_RPAREN, STATE(2554), 1, sym_text_interpolation, - [76788] = 4, - ACTIONS(18), 1, + [76810] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4797), 1, + ACTIONS(4814), 1, aux_sym_if_statement_token2, STATE(2555), 1, sym_text_interpolation, - [76801] = 4, - ACTIONS(18), 1, + [76823] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4799), 1, + ACTIONS(4816), 1, aux_sym_if_statement_token2, STATE(2556), 1, sym_text_interpolation, - [76814] = 4, - ACTIONS(18), 1, + [76836] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2589), 1, + ACTIONS(2591), 1, anon_sym_RPAREN, STATE(2557), 1, sym_text_interpolation, - [76827] = 4, - ACTIONS(18), 1, + [76849] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(909), 1, + ACTIONS(911), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2558), 1, sym_text_interpolation, - [76840] = 4, - ACTIONS(18), 1, + [76862] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4801), 1, + ACTIONS(4818), 1, aux_sym_if_statement_token2, STATE(2559), 1, sym_text_interpolation, - [76853] = 4, - ACTIONS(18), 1, + [76875] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(893), 1, + ACTIONS(895), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2560), 1, sym_text_interpolation, - [76866] = 4, - ACTIONS(18), 1, + [76888] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4820), 1, sym_name, STATE(2561), 1, sym_text_interpolation, - [76879] = 4, - ACTIONS(18), 1, + [76901] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4805), 1, + ACTIONS(4822), 1, anon_sym_EQ_GT, STATE(2562), 1, sym_text_interpolation, - [76892] = 4, - ACTIONS(18), 1, + [76914] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4807), 1, + ACTIONS(4824), 1, anon_sym_RPAREN, STATE(2563), 1, sym_text_interpolation, - [76905] = 4, - ACTIONS(18), 1, + [76927] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4809), 1, + ACTIONS(4826), 1, aux_sym_class_declaration_token1, STATE(2564), 1, sym_text_interpolation, - [76918] = 4, - ACTIONS(18), 1, + [76940] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4811), 1, + ACTIONS(4828), 1, anon_sym_EQ_GT, STATE(2565), 1, sym_text_interpolation, - [76931] = 4, - ACTIONS(18), 1, + [76953] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4813), 1, + ACTIONS(4830), 1, anon_sym_EQ, STATE(2566), 1, sym_text_interpolation, - [76944] = 4, - ACTIONS(18), 1, + [76966] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4815), 1, + ACTIONS(4832), 1, anon_sym_COLON_COLON, STATE(2567), 1, sym_text_interpolation, - [76957] = 4, - ACTIONS(18), 1, + [76979] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4817), 1, + ACTIONS(4834), 1, anon_sym_RPAREN, STATE(2568), 1, sym_text_interpolation, - [76970] = 4, - ACTIONS(18), 1, + [76992] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2593), 1, + ACTIONS(2595), 1, anon_sym_RPAREN, STATE(2569), 1, sym_text_interpolation, - [76983] = 4, - ACTIONS(18), 1, + [77005] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4819), 1, + ACTIONS(4836), 1, anon_sym_SEMI, STATE(2570), 1, sym_text_interpolation, - [76996] = 4, - ACTIONS(18), 1, + [77018] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4821), 1, + ACTIONS(4838), 1, aux_sym_if_statement_token2, STATE(2571), 1, sym_text_interpolation, - [77009] = 4, - ACTIONS(18), 1, + [77031] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4279), 1, + ACTIONS(4296), 1, anon_sym_LBRACE, STATE(2572), 1, sym_text_interpolation, - [77022] = 4, - ACTIONS(18), 1, + [77044] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4823), 1, + ACTIONS(4840), 1, aux_sym_while_statement_token1, STATE(2573), 1, sym_text_interpolation, - [77035] = 4, - ACTIONS(18), 1, + [77057] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(4842), 1, sym_name, STATE(2574), 1, sym_text_interpolation, - [77048] = 4, - ACTIONS(18), 1, + [77070] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(4844), 1, anon_sym_RPAREN, STATE(2575), 1, sym_text_interpolation, - [77061] = 4, - ACTIONS(18), 1, + [77083] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(919), 1, + ACTIONS(921), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2576), 1, sym_text_interpolation, - [77074] = 4, - ACTIONS(18), 1, + [77096] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4361), 1, anon_sym_RPAREN, STATE(2577), 1, sym_text_interpolation, - [77087] = 4, - ACTIONS(18), 1, + [77109] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4846), 1, sym_name, STATE(2578), 1, sym_text_interpolation, - [77100] = 4, - ACTIONS(18), 1, + [77122] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4831), 1, + ACTIONS(4848), 1, sym_heredoc_end, STATE(2579), 1, sym_text_interpolation, - [77113] = 4, - ACTIONS(18), 1, + [77135] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4833), 1, + ACTIONS(4850), 1, anon_sym_RPAREN, STATE(2580), 1, sym_text_interpolation, - [77126] = 4, - ACTIONS(18), 1, + [77148] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(4852), 1, sym_name, STATE(2581), 1, sym_text_interpolation, - [77139] = 4, - ACTIONS(18), 1, + [77161] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4837), 1, + ACTIONS(4854), 1, anon_sym_RPAREN, STATE(2582), 1, sym_text_interpolation, - [77152] = 4, - ACTIONS(18), 1, + [77174] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(4856), 1, anon_sym_RPAREN, STATE(2583), 1, sym_text_interpolation, - [77165] = 4, - ACTIONS(18), 1, + [77187] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(4858), 1, anon_sym_RBRACK, STATE(2584), 1, sym_text_interpolation, - [77178] = 4, - ACTIONS(18), 1, + [77200] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4843), 1, + ACTIONS(4860), 1, sym_name, STATE(2585), 1, sym_text_interpolation, - [77191] = 4, - ACTIONS(18), 1, + [77213] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4845), 1, + ACTIONS(4862), 1, sym_name, STATE(2586), 1, sym_text_interpolation, - [77204] = 4, - ACTIONS(18), 1, + [77226] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4864), 1, sym_heredoc_end, STATE(2587), 1, sym_text_interpolation, - [77217] = 4, - ACTIONS(18), 1, + [77239] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4849), 1, + ACTIONS(4866), 1, anon_sym_RBRACK, STATE(2588), 1, sym_text_interpolation, - [77230] = 4, - ACTIONS(18), 1, + [77252] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(4868), 1, sym_name, STATE(2589), 1, sym_text_interpolation, - [77243] = 4, - ACTIONS(18), 1, + [77265] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4853), 1, + ACTIONS(4870), 1, anon_sym_DQUOTE2, STATE(2590), 1, sym_text_interpolation, - [77256] = 4, - ACTIONS(18), 1, + [77278] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4855), 1, + ACTIONS(4872), 1, sym_name, STATE(2591), 1, sym_text_interpolation, - [77269] = 4, - ACTIONS(18), 1, + [77291] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4857), 1, + ACTIONS(4874), 1, anon_sym_SQUOTE2, STATE(2592), 1, sym_text_interpolation, - [77282] = 4, - ACTIONS(18), 1, + [77304] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4338), 1, + ACTIONS(4355), 1, anon_sym_RPAREN, STATE(2593), 1, sym_text_interpolation, - [77295] = 4, - ACTIONS(18), 1, + [77317] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(4876), 1, anon_sym_RPAREN, STATE(2594), 1, sym_text_interpolation, - [77308] = 4, - ACTIONS(18), 1, + [77330] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3583), 1, anon_sym_BSLASH, STATE(2595), 1, sym_text_interpolation, - [77321] = 4, - ACTIONS(18), 1, + [77343] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3293), 1, anon_sym_EQ, STATE(2596), 1, sym_text_interpolation, - [77334] = 4, - ACTIONS(18), 1, + [77356] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4861), 1, + ACTIONS(4878), 1, aux_sym_while_statement_token2, STATE(2597), 1, sym_text_interpolation, - [77347] = 4, - ACTIONS(18), 1, + [77369] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4863), 1, + ACTIONS(4880), 1, anon_sym_RPAREN, STATE(2598), 1, sym_text_interpolation, - [77360] = 4, - ACTIONS(18), 1, + [77382] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(4882), 1, anon_sym_EQ_GT, STATE(2599), 1, sym_text_interpolation, - [77373] = 4, - ACTIONS(18), 1, + [77395] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4884), 1, anon_sym_RPAREN, STATE(2600), 1, sym_text_interpolation, - [77386] = 4, - ACTIONS(18), 1, + [77408] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(4886), 1, anon_sym_RPAREN, STATE(2601), 1, sym_text_interpolation, - [77399] = 4, - ACTIONS(18), 1, + [77421] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(4888), 1, anon_sym_BSLASH, STATE(2602), 1, sym_text_interpolation, - [77412] = 4, - ACTIONS(18), 1, + [77434] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(4890), 1, sym_name, STATE(2603), 1, sym_text_interpolation, - [77425] = 4, - ACTIONS(18), 1, + [77447] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(4892), 1, sym_name, STATE(2604), 1, sym_text_interpolation, - [77438] = 4, - ACTIONS(18), 1, + [77460] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(4894), 1, anon_sym_EQ_GT, STATE(2605), 1, sym_text_interpolation, - [77451] = 4, - ACTIONS(18), 1, + [77473] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(4896), 1, sym_name, STATE(2606), 1, sym_text_interpolation, - [77464] = 4, - ACTIONS(18), 1, + [77486] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(4898), 1, anon_sym_RPAREN, STATE(2607), 1, sym_text_interpolation, - [77477] = 4, - ACTIONS(18), 1, + [77499] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4140), 1, + ACTIONS(4155), 1, aux_sym_class_declaration_token1, STATE(2608), 1, sym_text_interpolation, - [77490] = 4, - ACTIONS(18), 1, + [77512] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4883), 1, + ACTIONS(4900), 1, aux_sym_namespace_use_declaration_token3, STATE(2609), 1, sym_text_interpolation, - [77503] = 4, - ACTIONS(18), 1, + [77525] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(4902), 1, anon_sym_BSLASH, STATE(2610), 1, sym_text_interpolation, - [77516] = 4, - ACTIONS(18), 1, + [77538] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(4904), 1, aux_sym_class_declaration_token1, STATE(2611), 1, sym_text_interpolation, - [77529] = 4, - ACTIONS(18), 1, + [77551] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(873), 1, + ACTIONS(875), 1, anon_sym_SEMI, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2612), 1, sym_text_interpolation, - [77542] = 4, - ACTIONS(18), 1, + [77564] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(4906), 1, anon_sym_COLON_COLON, STATE(2613), 1, sym_text_interpolation, - [77555] = 4, - ACTIONS(18), 1, + [77577] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4891), 1, + ACTIONS(4908), 1, aux_sym_while_statement_token1, STATE(2614), 1, sym_text_interpolation, - [77568] = 4, - ACTIONS(18), 1, + [77590] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4893), 1, + ACTIONS(4910), 1, sym_heredoc_start, STATE(2615), 1, sym_text_interpolation, - [77581] = 4, - ACTIONS(18), 1, + [77603] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4895), 1, + ACTIONS(4912), 1, sym_heredoc_start, STATE(2616), 1, sym_text_interpolation, - [77594] = 4, - ACTIONS(18), 1, + [77616] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(4914), 1, aux_sym_class_declaration_token1, STATE(2617), 1, sym_text_interpolation, - [77607] = 4, - ACTIONS(18), 1, + [77629] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4246), 1, + ACTIONS(4263), 1, anon_sym_LBRACE, STATE(2618), 1, sym_text_interpolation, - [77620] = 4, - ACTIONS(18), 1, + [77642] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4899), 1, + ACTIONS(4916), 1, sym_name, STATE(2619), 1, sym_text_interpolation, - [77633] = 4, - ACTIONS(18), 1, + [77655] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4136), 1, + ACTIONS(4151), 1, aux_sym_class_declaration_token1, STATE(2620), 1, sym_text_interpolation, - [77646] = 4, - ACTIONS(18), 1, + [77668] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4901), 1, + ACTIONS(4918), 1, anon_sym_BSLASH, STATE(2621), 1, sym_text_interpolation, - [77659] = 4, - ACTIONS(18), 1, + [77681] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4903), 1, + ACTIONS(4920), 1, anon_sym_BSLASH, STATE(2622), 1, sym_text_interpolation, - [77672] = 4, - ACTIONS(18), 1, + [77694] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4591), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, STATE(2623), 1, sym_text_interpolation, - [77685] = 4, - ACTIONS(18), 1, + [77707] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4905), 1, + ACTIONS(4922), 1, sym_name, STATE(2624), 1, sym_text_interpolation, - [77698] = 4, - ACTIONS(18), 1, + [77720] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4907), 1, + ACTIONS(4924), 1, anon_sym_RPAREN, STATE(2625), 1, sym_text_interpolation, - [77711] = 4, - ACTIONS(18), 1, + [77733] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4909), 1, + ACTIONS(4926), 1, sym_name, STATE(2626), 1, sym_text_interpolation, - [77724] = 4, - ACTIONS(18), 1, + [77746] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4911), 1, + ACTIONS(4928), 1, sym_name, STATE(2627), 1, sym_text_interpolation, - [77737] = 4, - ACTIONS(18), 1, + [77759] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4913), 1, + ACTIONS(4930), 1, sym_name, STATE(2628), 1, sym_text_interpolation, - [77750] = 4, - ACTIONS(18), 1, + [77772] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4915), 1, + ACTIONS(4932), 1, aux_sym_class_declaration_token1, STATE(2629), 1, sym_text_interpolation, - [77763] = 4, - ACTIONS(18), 1, + [77785] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4917), 1, + ACTIONS(4934), 1, anon_sym_BSLASH, STATE(2630), 1, sym_text_interpolation, - [77776] = 4, - ACTIONS(18), 1, + [77798] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4919), 1, + ACTIONS(4936), 1, aux_sym_if_statement_token2, STATE(2631), 1, sym_text_interpolation, - [77789] = 4, - ACTIONS(18), 1, + [77811] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4921), 1, + ACTIONS(4938), 1, anon_sym_COLON_COLON, STATE(2632), 1, sym_text_interpolation, - [77802] = 4, - ACTIONS(18), 1, + [77824] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4402), 1, anon_sym_RBRACE, STATE(2633), 1, sym_text_interpolation, - [77815] = 4, - ACTIONS(18), 1, + [77837] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(879), 1, + ACTIONS(881), 1, anon_sym_SEMI, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2634), 1, sym_text_interpolation, - [77828] = 4, - ACTIONS(18), 1, + [77850] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4120), 1, + ACTIONS(4135), 1, anon_sym_RPAREN, STATE(2635), 1, sym_text_interpolation, - [77841] = 4, - ACTIONS(18), 1, + [77863] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3810), 1, + ACTIONS(3817), 1, sym_name, STATE(2636), 1, sym_text_interpolation, - [77854] = 4, - ACTIONS(18), 1, + [77876] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4923), 1, + ACTIONS(4940), 1, anon_sym_EQ_GT, STATE(2637), 1, sym_text_interpolation, - [77867] = 4, - ACTIONS(18), 1, + [77889] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4925), 1, + ACTIONS(4942), 1, anon_sym_EQ_GT, STATE(2638), 1, sym_text_interpolation, - [77880] = 4, - ACTIONS(18), 1, + [77902] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(917), 1, + ACTIONS(919), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2639), 1, sym_text_interpolation, - [77893] = 4, - ACTIONS(18), 1, + [77915] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4927), 1, + ACTIONS(4944), 1, anon_sym_LPAREN, STATE(2640), 1, sym_text_interpolation, - [77906] = 4, - ACTIONS(18), 1, + [77928] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4929), 1, + ACTIONS(4946), 1, anon_sym_SEMI, STATE(2641), 1, sym_text_interpolation, - [77919] = 4, - ACTIONS(18), 1, + [77941] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2537), 1, + ACTIONS(2539), 1, anon_sym_RPAREN, STATE(2642), 1, sym_text_interpolation, - [77932] = 4, - ACTIONS(18), 1, + [77954] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4931), 1, + ACTIONS(4948), 1, sym_name, STATE(2643), 1, sym_text_interpolation, - [77945] = 4, - ACTIONS(18), 1, + [77967] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4933), 1, + ACTIONS(4950), 1, anon_sym_COLON_COLON, STATE(2644), 1, sym_text_interpolation, - [77958] = 4, - ACTIONS(18), 1, + [77980] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(883), 1, + ACTIONS(885), 1, anon_sym_RPAREN, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2645), 1, sym_text_interpolation, - [77971] = 4, - ACTIONS(18), 1, + [77993] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4935), 1, + ACTIONS(4952), 1, sym_name, STATE(2646), 1, sym_text_interpolation, - [77984] = 4, - ACTIONS(18), 1, + [78006] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4937), 1, + ACTIONS(4954), 1, anon_sym_RPAREN, STATE(2647), 1, sym_text_interpolation, - [77997] = 4, - ACTIONS(18), 1, + [78019] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, STATE(2648), 1, sym_text_interpolation, - [78010] = 4, - ACTIONS(18), 1, + [78032] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4939), 1, + ACTIONS(4956), 1, anon_sym_COLON_COLON, STATE(2649), 1, sym_text_interpolation, - [78023] = 4, - ACTIONS(18), 1, + [78045] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4941), 1, + ACTIONS(4958), 1, anon_sym_COLON_COLON, STATE(2650), 1, sym_text_interpolation, - [78036] = 4, - ACTIONS(18), 1, + [78058] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4943), 1, + ACTIONS(4960), 1, anon_sym_EQ, STATE(2651), 1, sym_text_interpolation, - [78049] = 4, - ACTIONS(18), 1, + [78071] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4945), 1, + ACTIONS(4962), 1, anon_sym_EQ_GT, STATE(2652), 1, sym_text_interpolation, - [78062] = 4, - ACTIONS(18), 1, + [78084] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4403), 1, + ACTIONS(4420), 1, anon_sym_RPAREN, STATE(2653), 1, sym_text_interpolation, - [78075] = 4, - ACTIONS(18), 1, + [78097] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4947), 1, + ACTIONS(4964), 1, aux_sym_namespace_use_declaration_token3, STATE(2654), 1, sym_text_interpolation, - [78088] = 4, - ACTIONS(18), 1, + [78110] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4949), 1, + ACTIONS(4966), 1, aux_sym__arrow_function_header_token1, STATE(2655), 1, sym_text_interpolation, - [78101] = 4, - ACTIONS(18), 1, + [78123] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4105), 1, + ACTIONS(4120), 1, aux_sym_class_declaration_token1, STATE(2656), 1, sym_text_interpolation, - [78114] = 4, - ACTIONS(18), 1, + [78136] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4951), 1, + ACTIONS(4968), 1, anon_sym_COLON_COLON, STATE(2657), 1, sym_text_interpolation, - [78127] = 4, - ACTIONS(18), 1, + [78149] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4953), 1, + ACTIONS(4970), 1, anon_sym_BSLASH, STATE(2658), 1, sym_text_interpolation, - [78140] = 4, - ACTIONS(18), 1, + [78162] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4955), 1, + ACTIONS(4972), 1, aux_sym_namespace_use_declaration_token3, STATE(2659), 1, sym_text_interpolation, - [78153] = 4, - ACTIONS(18), 1, + [78175] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4180), 1, + ACTIONS(4195), 1, anon_sym_RBRACK, STATE(2660), 1, sym_text_interpolation, - [78166] = 4, - ACTIONS(18), 1, + [78188] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4957), 1, + ACTIONS(4974), 1, sym_name, STATE(2661), 1, sym_text_interpolation, - [78179] = 4, - ACTIONS(18), 1, + [78201] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(2671), 1, + ACTIONS(2673), 1, anon_sym_RPAREN, STATE(2662), 1, sym_text_interpolation, - [78192] = 4, - ACTIONS(18), 1, + [78214] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(899), 1, + ACTIONS(901), 1, anon_sym_SEMI, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2663), 1, sym_text_interpolation, - [78205] = 4, - ACTIONS(18), 1, + [78227] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4419), 1, + ACTIONS(4436), 1, anon_sym_RPAREN, STATE(2664), 1, sym_text_interpolation, - [78218] = 4, - ACTIONS(18), 1, + [78240] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4103), 1, + ACTIONS(4118), 1, anon_sym_RPAREN, STATE(2665), 1, sym_text_interpolation, - [78231] = 4, - ACTIONS(18), 1, + [78253] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(4976), 1, anon_sym_LPAREN, STATE(2666), 1, sym_text_interpolation, - [78244] = 4, - ACTIONS(18), 1, + [78266] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4961), 1, + ACTIONS(4978), 1, anon_sym_SEMI, STATE(2667), 1, sym_text_interpolation, - [78257] = 4, - ACTIONS(18), 1, + [78279] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4454), 1, + ACTIONS(4471), 1, anon_sym_RPAREN, STATE(2668), 1, sym_text_interpolation, - [78270] = 4, - ACTIONS(18), 1, + [78292] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4980), 1, anon_sym_COLON_COLON, STATE(2669), 1, sym_text_interpolation, - [78283] = 4, - ACTIONS(18), 1, + [78305] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4965), 1, + ACTIONS(4982), 1, aux_sym_foreach_statement_token2, STATE(2670), 1, sym_text_interpolation, - [78296] = 4, - ACTIONS(18), 1, + [78318] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4967), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, STATE(2671), 1, sym_text_interpolation, - [78309] = 4, - ACTIONS(18), 1, + [78331] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4969), 1, + ACTIONS(4986), 1, anon_sym_LPAREN, STATE(2672), 1, sym_text_interpolation, - [78322] = 4, - ACTIONS(18), 1, + [78344] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4971), 1, + ACTIONS(4988), 1, anon_sym_RBRACK, STATE(2673), 1, sym_text_interpolation, - [78335] = 4, - ACTIONS(18), 1, + [78357] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4973), 1, + ACTIONS(4990), 1, sym_name, STATE(2674), 1, sym_text_interpolation, - [78348] = 4, - ACTIONS(18), 1, + [78370] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(4992), 1, sym_integer, STATE(2675), 1, sym_text_interpolation, - [78361] = 4, - ACTIONS(18), 1, + [78383] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4977), 1, + ACTIONS(4994), 1, anon_sym_LPAREN, STATE(2676), 1, sym_text_interpolation, - [78374] = 4, - ACTIONS(18), 1, + [78396] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4979), 1, + ACTIONS(4996), 1, anon_sym_LPAREN, STATE(2677), 1, sym_text_interpolation, - [78387] = 4, - ACTIONS(18), 1, + [78409] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4981), 1, + ACTIONS(4998), 1, anon_sym_LPAREN, STATE(2678), 1, sym_text_interpolation, - [78400] = 4, - ACTIONS(18), 1, + [78422] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4983), 1, + ACTIONS(5000), 1, anon_sym_LPAREN, STATE(2679), 1, sym_text_interpolation, - [78413] = 4, - ACTIONS(18), 1, + [78435] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4985), 1, + ACTIONS(5002), 1, anon_sym_LPAREN, STATE(2680), 1, sym_text_interpolation, - [78426] = 4, - ACTIONS(18), 1, + [78448] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4987), 1, + ACTIONS(5004), 1, anon_sym_RBRACK, STATE(2681), 1, sym_text_interpolation, - [78439] = 4, - ACTIONS(18), 1, + [78461] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4470), 1, + ACTIONS(4487), 1, anon_sym_RPAREN, STATE(2682), 1, sym_text_interpolation, - [78452] = 4, - ACTIONS(18), 1, + [78474] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4989), 1, + ACTIONS(5006), 1, sym_heredoc_end, STATE(2683), 1, sym_text_interpolation, - [78465] = 4, - ACTIONS(18), 1, + [78487] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4991), 1, + ACTIONS(5008), 1, sym_name, STATE(2684), 1, sym_text_interpolation, - [78478] = 4, - ACTIONS(18), 1, + [78500] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4993), 1, + ACTIONS(5010), 1, anon_sym_COLON_COLON, STATE(2685), 1, sym_text_interpolation, - [78491] = 4, - ACTIONS(18), 1, + [78513] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4995), 1, + ACTIONS(5012), 1, anon_sym_RPAREN, STATE(2686), 1, sym_text_interpolation, - [78504] = 4, - ACTIONS(18), 1, + [78526] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4997), 1, + ACTIONS(5014), 1, anon_sym_LPAREN, STATE(2687), 1, sym_text_interpolation, - [78517] = 4, - ACTIONS(18), 1, + [78539] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(5016), 1, sym_name, STATE(2688), 1, sym_text_interpolation, - [78530] = 4, - ACTIONS(18), 1, + [78552] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5001), 1, + ACTIONS(5018), 1, anon_sym_SEMI, STATE(2689), 1, sym_text_interpolation, - [78543] = 4, - ACTIONS(18), 1, + [78565] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5003), 1, + ACTIONS(5020), 1, sym_name, STATE(2690), 1, sym_text_interpolation, - [78556] = 4, - ACTIONS(18), 1, + [78578] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(903), 1, + ACTIONS(905), 1, anon_sym_SEMI, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, STATE(2691), 1, sym_text_interpolation, - [78569] = 4, - ACTIONS(18), 1, + [78591] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5005), 1, + ACTIONS(5022), 1, sym_name, STATE(2692), 1, sym_text_interpolation, - [78582] = 4, - ACTIONS(18), 1, + [78604] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(4482), 1, + ACTIONS(4499), 1, anon_sym_RPAREN, STATE(2693), 1, sym_text_interpolation, - [78595] = 4, - ACTIONS(18), 1, + [78617] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5007), 1, + ACTIONS(5024), 1, anon_sym_SEMI, STATE(2694), 1, sym_text_interpolation, - [78608] = 4, - ACTIONS(18), 1, + [78630] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5009), 1, + ACTIONS(5026), 1, anon_sym_LPAREN, STATE(2695), 1, sym_text_interpolation, - [78621] = 4, - ACTIONS(18), 1, + [78643] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5011), 1, + ACTIONS(5028), 1, anon_sym_EQ_GT, STATE(2696), 1, sym_text_interpolation, - [78634] = 4, - ACTIONS(18), 1, + [78656] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5013), 1, + ACTIONS(5030), 1, anon_sym_SEMI, STATE(2697), 1, sym_text_interpolation, - [78647] = 4, - ACTIONS(18), 1, + [78669] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5015), 1, + ACTIONS(5032), 1, anon_sym_RPAREN, STATE(2698), 1, sym_text_interpolation, - [78660] = 4, - ACTIONS(18), 1, + [78682] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5017), 1, + ACTIONS(5034), 1, anon_sym_LPAREN, STATE(2699), 1, sym_text_interpolation, - [78673] = 4, - ACTIONS(18), 1, + [78695] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5019), 1, + ACTIONS(5036), 1, anon_sym_LPAREN, STATE(2700), 1, sym_text_interpolation, - [78686] = 4, - ACTIONS(18), 1, + [78708] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5021), 1, + ACTIONS(5038), 1, anon_sym_COLON_COLON, STATE(2701), 1, sym_text_interpolation, - [78699] = 4, - ACTIONS(18), 1, + [78721] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5023), 1, + ACTIONS(5040), 1, anon_sym_LPAREN, STATE(2702), 1, sym_text_interpolation, - [78712] = 4, - ACTIONS(18), 1, + [78734] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5025), 1, + ACTIONS(5042), 1, anon_sym_RPAREN, STATE(2703), 1, sym_text_interpolation, - [78725] = 4, - ACTIONS(18), 1, + [78747] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5044), 1, anon_sym_SEMI, STATE(2704), 1, sym_text_interpolation, - [78738] = 4, - ACTIONS(18), 1, + [78760] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5029), 1, + ACTIONS(5046), 1, anon_sym_EQ_GT, STATE(2705), 1, sym_text_interpolation, - [78751] = 4, - ACTIONS(18), 1, + [78773] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5031), 1, + ACTIONS(5048), 1, anon_sym_LPAREN, STATE(2706), 1, sym_text_interpolation, - [78764] = 4, - ACTIONS(18), 1, + [78786] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5033), 1, + ACTIONS(5050), 1, ts_builtin_sym_end, STATE(2707), 1, sym_text_interpolation, - [78777] = 4, - ACTIONS(18), 1, + [78799] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5035), 1, + ACTIONS(5052), 1, anon_sym_LPAREN, STATE(2708), 1, sym_text_interpolation, - [78790] = 4, - ACTIONS(18), 1, + [78812] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5054), 1, anon_sym_LPAREN, STATE(2709), 1, sym_text_interpolation, - [78803] = 4, - ACTIONS(18), 1, + [78825] = 4, + ACTIONS(20), 1, anon_sym_QMARK_GT, - ACTIONS(1722), 1, + ACTIONS(1570), 1, sym_comment, - ACTIONS(5039), 1, + ACTIONS(5056), 1, sym_name, STATE(2710), 1, sym_text_interpolation, - [78816] = 1, - ACTIONS(5041), 1, + [78838] = 1, + ACTIONS(5058), 1, ts_builtin_sym_end, - [78820] = 1, - ACTIONS(5043), 1, + [78842] = 1, + ACTIONS(5060), 1, ts_builtin_sym_end, }; @@ -140749,1066 +140717,1066 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1650)] = 60682, [SMALL_STATE(1651)] = 60710, [SMALL_STATE(1652)] = 60738, - [SMALL_STATE(1653)] = 60764, - [SMALL_STATE(1654)] = 60792, - [SMALL_STATE(1655)] = 60820, - [SMALL_STATE(1656)] = 60840, - [SMALL_STATE(1657)] = 60868, - [SMALL_STATE(1658)] = 60896, - [SMALL_STATE(1659)] = 60924, - [SMALL_STATE(1660)] = 60952, - [SMALL_STATE(1661)] = 60980, - [SMALL_STATE(1662)] = 61008, - [SMALL_STATE(1663)] = 61032, - [SMALL_STATE(1664)] = 61052, - [SMALL_STATE(1665)] = 61072, - [SMALL_STATE(1666)] = 61100, - [SMALL_STATE(1667)] = 61126, - [SMALL_STATE(1668)] = 61152, - [SMALL_STATE(1669)] = 61180, - [SMALL_STATE(1670)] = 61208, - [SMALL_STATE(1671)] = 61232, - [SMALL_STATE(1672)] = 61252, - [SMALL_STATE(1673)] = 61278, - [SMALL_STATE(1674)] = 61304, - [SMALL_STATE(1675)] = 61328, - [SMALL_STATE(1676)] = 61356, - [SMALL_STATE(1677)] = 61376, - [SMALL_STATE(1678)] = 61404, - [SMALL_STATE(1679)] = 61428, - [SMALL_STATE(1680)] = 61456, - [SMALL_STATE(1681)] = 61484, - [SMALL_STATE(1682)] = 61512, - [SMALL_STATE(1683)] = 61540, - [SMALL_STATE(1684)] = 61560, - [SMALL_STATE(1685)] = 61581, - [SMALL_STATE(1686)] = 61598, - [SMALL_STATE(1687)] = 61621, - [SMALL_STATE(1688)] = 61642, - [SMALL_STATE(1689)] = 61667, - [SMALL_STATE(1690)] = 61690, - [SMALL_STATE(1691)] = 61713, - [SMALL_STATE(1692)] = 61738, - [SMALL_STATE(1693)] = 61759, - [SMALL_STATE(1694)] = 61784, - [SMALL_STATE(1695)] = 61805, - [SMALL_STATE(1696)] = 61828, - [SMALL_STATE(1697)] = 61849, - [SMALL_STATE(1698)] = 61872, - [SMALL_STATE(1699)] = 61897, - [SMALL_STATE(1700)] = 61918, - [SMALL_STATE(1701)] = 61939, - [SMALL_STATE(1702)] = 61964, - [SMALL_STATE(1703)] = 61985, - [SMALL_STATE(1704)] = 62006, - [SMALL_STATE(1705)] = 62029, - [SMALL_STATE(1706)] = 62046, - [SMALL_STATE(1707)] = 62071, - [SMALL_STATE(1708)] = 62096, - [SMALL_STATE(1709)] = 62119, - [SMALL_STATE(1710)] = 62142, - [SMALL_STATE(1711)] = 62161, - [SMALL_STATE(1712)] = 62182, - [SMALL_STATE(1713)] = 62207, - [SMALL_STATE(1714)] = 62228, - [SMALL_STATE(1715)] = 62249, - [SMALL_STATE(1716)] = 62270, - [SMALL_STATE(1717)] = 62295, - [SMALL_STATE(1718)] = 62320, - [SMALL_STATE(1719)] = 62341, - [SMALL_STATE(1720)] = 62364, - [SMALL_STATE(1721)] = 62383, - [SMALL_STATE(1722)] = 62406, - [SMALL_STATE(1723)] = 62431, - [SMALL_STATE(1724)] = 62452, - [SMALL_STATE(1725)] = 62477, - [SMALL_STATE(1726)] = 62502, - [SMALL_STATE(1727)] = 62523, - [SMALL_STATE(1728)] = 62548, - [SMALL_STATE(1729)] = 62567, - [SMALL_STATE(1730)] = 62586, - [SMALL_STATE(1731)] = 62605, - [SMALL_STATE(1732)] = 62628, - [SMALL_STATE(1733)] = 62647, - [SMALL_STATE(1734)] = 62672, - [SMALL_STATE(1735)] = 62693, - [SMALL_STATE(1736)] = 62714, - [SMALL_STATE(1737)] = 62739, - [SMALL_STATE(1738)] = 62762, - [SMALL_STATE(1739)] = 62785, - [SMALL_STATE(1740)] = 62806, - [SMALL_STATE(1741)] = 62829, - [SMALL_STATE(1742)] = 62850, - [SMALL_STATE(1743)] = 62875, - [SMALL_STATE(1744)] = 62896, - [SMALL_STATE(1745)] = 62917, - [SMALL_STATE(1746)] = 62936, - [SMALL_STATE(1747)] = 62957, - [SMALL_STATE(1748)] = 62978, - [SMALL_STATE(1749)] = 63001, - [SMALL_STATE(1750)] = 63020, - [SMALL_STATE(1751)] = 63041, - [SMALL_STATE(1752)] = 63064, - [SMALL_STATE(1753)] = 63089, - [SMALL_STATE(1754)] = 63110, - [SMALL_STATE(1755)] = 63131, - [SMALL_STATE(1756)] = 63152, - [SMALL_STATE(1757)] = 63169, - [SMALL_STATE(1758)] = 63190, - [SMALL_STATE(1759)] = 63211, - [SMALL_STATE(1760)] = 63232, - [SMALL_STATE(1761)] = 63251, - [SMALL_STATE(1762)] = 63270, - [SMALL_STATE(1763)] = 63291, - [SMALL_STATE(1764)] = 63312, - [SMALL_STATE(1765)] = 63333, - [SMALL_STATE(1766)] = 63354, - [SMALL_STATE(1767)] = 63379, - [SMALL_STATE(1768)] = 63402, - [SMALL_STATE(1769)] = 63419, - [SMALL_STATE(1770)] = 63436, - [SMALL_STATE(1771)] = 63455, - [SMALL_STATE(1772)] = 63476, - [SMALL_STATE(1773)] = 63495, - [SMALL_STATE(1774)] = 63516, - [SMALL_STATE(1775)] = 63539, - [SMALL_STATE(1776)] = 63562, - [SMALL_STATE(1777)] = 63587, - [SMALL_STATE(1778)] = 63608, - [SMALL_STATE(1779)] = 63633, - [SMALL_STATE(1780)] = 63658, - [SMALL_STATE(1781)] = 63679, - [SMALL_STATE(1782)] = 63702, - [SMALL_STATE(1783)] = 63725, - [SMALL_STATE(1784)] = 63748, - [SMALL_STATE(1785)] = 63771, - [SMALL_STATE(1786)] = 63792, - [SMALL_STATE(1787)] = 63815, - [SMALL_STATE(1788)] = 63835, - [SMALL_STATE(1789)] = 63855, - [SMALL_STATE(1790)] = 63873, - [SMALL_STATE(1791)] = 63893, - [SMALL_STATE(1792)] = 63915, - [SMALL_STATE(1793)] = 63937, - [SMALL_STATE(1794)] = 63955, - [SMALL_STATE(1795)] = 63975, - [SMALL_STATE(1796)] = 63993, - [SMALL_STATE(1797)] = 64015, - [SMALL_STATE(1798)] = 64037, - [SMALL_STATE(1799)] = 64057, - [SMALL_STATE(1800)] = 64079, - [SMALL_STATE(1801)] = 64101, - [SMALL_STATE(1802)] = 64119, - [SMALL_STATE(1803)] = 64137, - [SMALL_STATE(1804)] = 64153, - [SMALL_STATE(1805)] = 64175, - [SMALL_STATE(1806)] = 64191, - [SMALL_STATE(1807)] = 64207, - [SMALL_STATE(1808)] = 64227, - [SMALL_STATE(1809)] = 64249, - [SMALL_STATE(1810)] = 64265, - [SMALL_STATE(1811)] = 64285, - [SMALL_STATE(1812)] = 64307, - [SMALL_STATE(1813)] = 64325, - [SMALL_STATE(1814)] = 64347, - [SMALL_STATE(1815)] = 64365, - [SMALL_STATE(1816)] = 64387, - [SMALL_STATE(1817)] = 64407, - [SMALL_STATE(1818)] = 64423, - [SMALL_STATE(1819)] = 64441, - [SMALL_STATE(1820)] = 64463, - [SMALL_STATE(1821)] = 64479, - [SMALL_STATE(1822)] = 64495, - [SMALL_STATE(1823)] = 64515, - [SMALL_STATE(1824)] = 64533, - [SMALL_STATE(1825)] = 64553, - [SMALL_STATE(1826)] = 64569, - [SMALL_STATE(1827)] = 64591, - [SMALL_STATE(1828)] = 64611, - [SMALL_STATE(1829)] = 64629, - [SMALL_STATE(1830)] = 64651, - [SMALL_STATE(1831)] = 64671, - [SMALL_STATE(1832)] = 64691, - [SMALL_STATE(1833)] = 64713, - [SMALL_STATE(1834)] = 64729, - [SMALL_STATE(1835)] = 64747, - [SMALL_STATE(1836)] = 64763, - [SMALL_STATE(1837)] = 64785, - [SMALL_STATE(1838)] = 64805, - [SMALL_STATE(1839)] = 64821, - [SMALL_STATE(1840)] = 64843, - [SMALL_STATE(1841)] = 64865, - [SMALL_STATE(1842)] = 64881, - [SMALL_STATE(1843)] = 64897, - [SMALL_STATE(1844)] = 64913, - [SMALL_STATE(1845)] = 64935, - [SMALL_STATE(1846)] = 64957, - [SMALL_STATE(1847)] = 64977, - [SMALL_STATE(1848)] = 64999, - [SMALL_STATE(1849)] = 65021, - [SMALL_STATE(1850)] = 65041, - [SMALL_STATE(1851)] = 65063, - [SMALL_STATE(1852)] = 65083, - [SMALL_STATE(1853)] = 65103, - [SMALL_STATE(1854)] = 65123, - [SMALL_STATE(1855)] = 65143, - [SMALL_STATE(1856)] = 65165, - [SMALL_STATE(1857)] = 65185, - [SMALL_STATE(1858)] = 65205, - [SMALL_STATE(1859)] = 65225, - [SMALL_STATE(1860)] = 65245, - [SMALL_STATE(1861)] = 65265, - [SMALL_STATE(1862)] = 65285, - [SMALL_STATE(1863)] = 65305, - [SMALL_STATE(1864)] = 65325, - [SMALL_STATE(1865)] = 65345, - [SMALL_STATE(1866)] = 65361, - [SMALL_STATE(1867)] = 65383, - [SMALL_STATE(1868)] = 65399, - [SMALL_STATE(1869)] = 65421, - [SMALL_STATE(1870)] = 65443, - [SMALL_STATE(1871)] = 65463, - [SMALL_STATE(1872)] = 65483, - [SMALL_STATE(1873)] = 65503, - [SMALL_STATE(1874)] = 65523, - [SMALL_STATE(1875)] = 65543, - [SMALL_STATE(1876)] = 65563, - [SMALL_STATE(1877)] = 65583, - [SMALL_STATE(1878)] = 65603, - [SMALL_STATE(1879)] = 65625, - [SMALL_STATE(1880)] = 65647, - [SMALL_STATE(1881)] = 65669, - [SMALL_STATE(1882)] = 65689, - [SMALL_STATE(1883)] = 65711, - [SMALL_STATE(1884)] = 65733, - [SMALL_STATE(1885)] = 65755, - [SMALL_STATE(1886)] = 65777, - [SMALL_STATE(1887)] = 65799, - [SMALL_STATE(1888)] = 65821, - [SMALL_STATE(1889)] = 65843, - [SMALL_STATE(1890)] = 65863, - [SMALL_STATE(1891)] = 65885, - [SMALL_STATE(1892)] = 65907, - [SMALL_STATE(1893)] = 65929, - [SMALL_STATE(1894)] = 65949, - [SMALL_STATE(1895)] = 65971, - [SMALL_STATE(1896)] = 65991, - [SMALL_STATE(1897)] = 66013, - [SMALL_STATE(1898)] = 66035, - [SMALL_STATE(1899)] = 66053, - [SMALL_STATE(1900)] = 66075, - [SMALL_STATE(1901)] = 66097, - [SMALL_STATE(1902)] = 66119, - [SMALL_STATE(1903)] = 66141, - [SMALL_STATE(1904)] = 66163, - [SMALL_STATE(1905)] = 66183, - [SMALL_STATE(1906)] = 66205, - [SMALL_STATE(1907)] = 66225, - [SMALL_STATE(1908)] = 66245, - [SMALL_STATE(1909)] = 66265, - [SMALL_STATE(1910)] = 66285, - [SMALL_STATE(1911)] = 66305, - [SMALL_STATE(1912)] = 66327, - [SMALL_STATE(1913)] = 66345, - [SMALL_STATE(1914)] = 66365, - [SMALL_STATE(1915)] = 66387, - [SMALL_STATE(1916)] = 66409, - [SMALL_STATE(1917)] = 66429, - [SMALL_STATE(1918)] = 66449, - [SMALL_STATE(1919)] = 66467, - [SMALL_STATE(1920)] = 66487, - [SMALL_STATE(1921)] = 66507, - [SMALL_STATE(1922)] = 66527, - [SMALL_STATE(1923)] = 66547, - [SMALL_STATE(1924)] = 66569, - [SMALL_STATE(1925)] = 66589, - [SMALL_STATE(1926)] = 66611, - [SMALL_STATE(1927)] = 66631, - [SMALL_STATE(1928)] = 66649, - [SMALL_STATE(1929)] = 66669, - [SMALL_STATE(1930)] = 66685, - [SMALL_STATE(1931)] = 66707, - [SMALL_STATE(1932)] = 66729, - [SMALL_STATE(1933)] = 66749, - [SMALL_STATE(1934)] = 66769, - [SMALL_STATE(1935)] = 66787, - [SMALL_STATE(1936)] = 66807, - [SMALL_STATE(1937)] = 66829, - [SMALL_STATE(1938)] = 66845, - [SMALL_STATE(1939)] = 66867, - [SMALL_STATE(1940)] = 66883, - [SMALL_STATE(1941)] = 66905, - [SMALL_STATE(1942)] = 66927, - [SMALL_STATE(1943)] = 66947, - [SMALL_STATE(1944)] = 66963, - [SMALL_STATE(1945)] = 66983, - [SMALL_STATE(1946)] = 67001, - [SMALL_STATE(1947)] = 67023, - [SMALL_STATE(1948)] = 67045, - [SMALL_STATE(1949)] = 67065, - [SMALL_STATE(1950)] = 67082, - [SMALL_STATE(1951)] = 67099, - [SMALL_STATE(1952)] = 67116, - [SMALL_STATE(1953)] = 67133, - [SMALL_STATE(1954)] = 67150, - [SMALL_STATE(1955)] = 67169, - [SMALL_STATE(1956)] = 67186, - [SMALL_STATE(1957)] = 67205, - [SMALL_STATE(1958)] = 67222, - [SMALL_STATE(1959)] = 67239, - [SMALL_STATE(1960)] = 67256, - [SMALL_STATE(1961)] = 67275, - [SMALL_STATE(1962)] = 67294, - [SMALL_STATE(1963)] = 67311, - [SMALL_STATE(1964)] = 67328, - [SMALL_STATE(1965)] = 67347, - [SMALL_STATE(1966)] = 67364, - [SMALL_STATE(1967)] = 67383, - [SMALL_STATE(1968)] = 67402, - [SMALL_STATE(1969)] = 67419, - [SMALL_STATE(1970)] = 67438, - [SMALL_STATE(1971)] = 67455, - [SMALL_STATE(1972)] = 67472, - [SMALL_STATE(1973)] = 67489, - [SMALL_STATE(1974)] = 67506, - [SMALL_STATE(1975)] = 67525, - [SMALL_STATE(1976)] = 67542, - [SMALL_STATE(1977)] = 67559, - [SMALL_STATE(1978)] = 67576, - [SMALL_STATE(1979)] = 67593, - [SMALL_STATE(1980)] = 67610, - [SMALL_STATE(1981)] = 67627, - [SMALL_STATE(1982)] = 67644, - [SMALL_STATE(1983)] = 67663, - [SMALL_STATE(1984)] = 67680, - [SMALL_STATE(1985)] = 67697, - [SMALL_STATE(1986)] = 67716, - [SMALL_STATE(1987)] = 67733, - [SMALL_STATE(1988)] = 67752, - [SMALL_STATE(1989)] = 67769, - [SMALL_STATE(1990)] = 67788, - [SMALL_STATE(1991)] = 67807, - [SMALL_STATE(1992)] = 67824, - [SMALL_STATE(1993)] = 67841, - [SMALL_STATE(1994)] = 67858, - [SMALL_STATE(1995)] = 67875, - [SMALL_STATE(1996)] = 67892, - [SMALL_STATE(1997)] = 67911, - [SMALL_STATE(1998)] = 67928, - [SMALL_STATE(1999)] = 67945, - [SMALL_STATE(2000)] = 67962, - [SMALL_STATE(2001)] = 67977, - [SMALL_STATE(2002)] = 67994, - [SMALL_STATE(2003)] = 68011, - [SMALL_STATE(2004)] = 68028, - [SMALL_STATE(2005)] = 68047, - [SMALL_STATE(2006)] = 68066, - [SMALL_STATE(2007)] = 68083, - [SMALL_STATE(2008)] = 68100, - [SMALL_STATE(2009)] = 68119, - [SMALL_STATE(2010)] = 68138, - [SMALL_STATE(2011)] = 68155, - [SMALL_STATE(2012)] = 68174, - [SMALL_STATE(2013)] = 68189, - [SMALL_STATE(2014)] = 68206, - [SMALL_STATE(2015)] = 68223, - [SMALL_STATE(2016)] = 68240, - [SMALL_STATE(2017)] = 68259, - [SMALL_STATE(2018)] = 68276, - [SMALL_STATE(2019)] = 68293, - [SMALL_STATE(2020)] = 68310, - [SMALL_STATE(2021)] = 68329, - [SMALL_STATE(2022)] = 68348, - [SMALL_STATE(2023)] = 68367, - [SMALL_STATE(2024)] = 68384, - [SMALL_STATE(2025)] = 68401, - [SMALL_STATE(2026)] = 68420, - [SMALL_STATE(2027)] = 68439, - [SMALL_STATE(2028)] = 68458, - [SMALL_STATE(2029)] = 68475, - [SMALL_STATE(2030)] = 68492, - [SMALL_STATE(2031)] = 68509, - [SMALL_STATE(2032)] = 68528, - [SMALL_STATE(2033)] = 68543, - [SMALL_STATE(2034)] = 68560, - [SMALL_STATE(2035)] = 68579, - [SMALL_STATE(2036)] = 68596, - [SMALL_STATE(2037)] = 68613, - [SMALL_STATE(2038)] = 68630, - [SMALL_STATE(2039)] = 68649, - [SMALL_STATE(2040)] = 68668, - [SMALL_STATE(2041)] = 68685, - [SMALL_STATE(2042)] = 68704, - [SMALL_STATE(2043)] = 68723, - [SMALL_STATE(2044)] = 68740, - [SMALL_STATE(2045)] = 68757, - [SMALL_STATE(2046)] = 68774, - [SMALL_STATE(2047)] = 68791, - [SMALL_STATE(2048)] = 68806, - [SMALL_STATE(2049)] = 68823, - [SMALL_STATE(2050)] = 68842, - [SMALL_STATE(2051)] = 68859, - [SMALL_STATE(2052)] = 68878, - [SMALL_STATE(2053)] = 68897, - [SMALL_STATE(2054)] = 68916, - [SMALL_STATE(2055)] = 68933, - [SMALL_STATE(2056)] = 68950, - [SMALL_STATE(2057)] = 68967, - [SMALL_STATE(2058)] = 68984, - [SMALL_STATE(2059)] = 69003, - [SMALL_STATE(2060)] = 69020, - [SMALL_STATE(2061)] = 69037, - [SMALL_STATE(2062)] = 69056, - [SMALL_STATE(2063)] = 69073, - [SMALL_STATE(2064)] = 69090, - [SMALL_STATE(2065)] = 69107, - [SMALL_STATE(2066)] = 69124, - [SMALL_STATE(2067)] = 69141, - [SMALL_STATE(2068)] = 69160, - [SMALL_STATE(2069)] = 69177, - [SMALL_STATE(2070)] = 69194, - [SMALL_STATE(2071)] = 69209, - [SMALL_STATE(2072)] = 69228, - [SMALL_STATE(2073)] = 69245, - [SMALL_STATE(2074)] = 69260, - [SMALL_STATE(2075)] = 69277, - [SMALL_STATE(2076)] = 69294, - [SMALL_STATE(2077)] = 69311, - [SMALL_STATE(2078)] = 69328, - [SMALL_STATE(2079)] = 69343, - [SMALL_STATE(2080)] = 69362, - [SMALL_STATE(2081)] = 69379, - [SMALL_STATE(2082)] = 69398, - [SMALL_STATE(2083)] = 69417, - [SMALL_STATE(2084)] = 69434, - [SMALL_STATE(2085)] = 69453, - [SMALL_STATE(2086)] = 69472, - [SMALL_STATE(2087)] = 69489, - [SMALL_STATE(2088)] = 69508, - [SMALL_STATE(2089)] = 69525, - [SMALL_STATE(2090)] = 69542, - [SMALL_STATE(2091)] = 69559, - [SMALL_STATE(2092)] = 69576, - [SMALL_STATE(2093)] = 69593, - [SMALL_STATE(2094)] = 69608, - [SMALL_STATE(2095)] = 69623, - [SMALL_STATE(2096)] = 69642, - [SMALL_STATE(2097)] = 69661, - [SMALL_STATE(2098)] = 69676, - [SMALL_STATE(2099)] = 69695, - [SMALL_STATE(2100)] = 69712, - [SMALL_STATE(2101)] = 69729, - [SMALL_STATE(2102)] = 69748, - [SMALL_STATE(2103)] = 69765, - [SMALL_STATE(2104)] = 69782, - [SMALL_STATE(2105)] = 69801, - [SMALL_STATE(2106)] = 69818, - [SMALL_STATE(2107)] = 69835, - [SMALL_STATE(2108)] = 69852, - [SMALL_STATE(2109)] = 69869, - [SMALL_STATE(2110)] = 69886, - [SMALL_STATE(2111)] = 69901, - [SMALL_STATE(2112)] = 69918, - [SMALL_STATE(2113)] = 69937, - [SMALL_STATE(2114)] = 69952, - [SMALL_STATE(2115)] = 69969, - [SMALL_STATE(2116)] = 69986, - [SMALL_STATE(2117)] = 70001, - [SMALL_STATE(2118)] = 70016, - [SMALL_STATE(2119)] = 70035, - [SMALL_STATE(2120)] = 70054, - [SMALL_STATE(2121)] = 70073, - [SMALL_STATE(2122)] = 70092, - [SMALL_STATE(2123)] = 70107, - [SMALL_STATE(2124)] = 70122, - [SMALL_STATE(2125)] = 70139, - [SMALL_STATE(2126)] = 70156, - [SMALL_STATE(2127)] = 70173, - [SMALL_STATE(2128)] = 70190, - [SMALL_STATE(2129)] = 70207, - [SMALL_STATE(2130)] = 70226, - [SMALL_STATE(2131)] = 70245, - [SMALL_STATE(2132)] = 70264, - [SMALL_STATE(2133)] = 70283, - [SMALL_STATE(2134)] = 70300, - [SMALL_STATE(2135)] = 70319, - [SMALL_STATE(2136)] = 70338, - [SMALL_STATE(2137)] = 70355, - [SMALL_STATE(2138)] = 70372, - [SMALL_STATE(2139)] = 70391, - [SMALL_STATE(2140)] = 70408, - [SMALL_STATE(2141)] = 70425, - [SMALL_STATE(2142)] = 70444, - [SMALL_STATE(2143)] = 70461, - [SMALL_STATE(2144)] = 70480, - [SMALL_STATE(2145)] = 70497, - [SMALL_STATE(2146)] = 70516, - [SMALL_STATE(2147)] = 70533, - [SMALL_STATE(2148)] = 70552, - [SMALL_STATE(2149)] = 70569, - [SMALL_STATE(2150)] = 70588, - [SMALL_STATE(2151)] = 70605, - [SMALL_STATE(2152)] = 70622, - [SMALL_STATE(2153)] = 70641, - [SMALL_STATE(2154)] = 70658, - [SMALL_STATE(2155)] = 70677, - [SMALL_STATE(2156)] = 70694, - [SMALL_STATE(2157)] = 70713, - [SMALL_STATE(2158)] = 70732, - [SMALL_STATE(2159)] = 70749, - [SMALL_STATE(2160)] = 70764, - [SMALL_STATE(2161)] = 70781, - [SMALL_STATE(2162)] = 70796, - [SMALL_STATE(2163)] = 70813, - [SMALL_STATE(2164)] = 70830, - [SMALL_STATE(2165)] = 70845, - [SMALL_STATE(2166)] = 70860, - [SMALL_STATE(2167)] = 70879, - [SMALL_STATE(2168)] = 70896, - [SMALL_STATE(2169)] = 70915, - [SMALL_STATE(2170)] = 70934, - [SMALL_STATE(2171)] = 70951, - [SMALL_STATE(2172)] = 70970, - [SMALL_STATE(2173)] = 70989, - [SMALL_STATE(2174)] = 71008, - [SMALL_STATE(2175)] = 71025, - [SMALL_STATE(2176)] = 71044, - [SMALL_STATE(2177)] = 71061, - [SMALL_STATE(2178)] = 71078, - [SMALL_STATE(2179)] = 71095, - [SMALL_STATE(2180)] = 71114, - [SMALL_STATE(2181)] = 71129, - [SMALL_STATE(2182)] = 71148, - [SMALL_STATE(2183)] = 71167, - [SMALL_STATE(2184)] = 71184, - [SMALL_STATE(2185)] = 71199, - [SMALL_STATE(2186)] = 71216, - [SMALL_STATE(2187)] = 71235, - [SMALL_STATE(2188)] = 71252, - [SMALL_STATE(2189)] = 71269, - [SMALL_STATE(2190)] = 71284, - [SMALL_STATE(2191)] = 71303, - [SMALL_STATE(2192)] = 71318, - [SMALL_STATE(2193)] = 71337, - [SMALL_STATE(2194)] = 71354, - [SMALL_STATE(2195)] = 71373, - [SMALL_STATE(2196)] = 71390, - [SMALL_STATE(2197)] = 71407, - [SMALL_STATE(2198)] = 71424, - [SMALL_STATE(2199)] = 71443, - [SMALL_STATE(2200)] = 71460, - [SMALL_STATE(2201)] = 71479, - [SMALL_STATE(2202)] = 71498, - [SMALL_STATE(2203)] = 71515, - [SMALL_STATE(2204)] = 71534, - [SMALL_STATE(2205)] = 71549, - [SMALL_STATE(2206)] = 71568, - [SMALL_STATE(2207)] = 71585, - [SMALL_STATE(2208)] = 71604, - [SMALL_STATE(2209)] = 71623, - [SMALL_STATE(2210)] = 71640, - [SMALL_STATE(2211)] = 71659, - [SMALL_STATE(2212)] = 71678, - [SMALL_STATE(2213)] = 71693, - [SMALL_STATE(2214)] = 71708, - [SMALL_STATE(2215)] = 71727, - [SMALL_STATE(2216)] = 71746, - [SMALL_STATE(2217)] = 71765, - [SMALL_STATE(2218)] = 71784, - [SMALL_STATE(2219)] = 71803, - [SMALL_STATE(2220)] = 71822, - [SMALL_STATE(2221)] = 71838, - [SMALL_STATE(2222)] = 71852, - [SMALL_STATE(2223)] = 71866, - [SMALL_STATE(2224)] = 71880, - [SMALL_STATE(2225)] = 71896, - [SMALL_STATE(2226)] = 71910, - [SMALL_STATE(2227)] = 71926, - [SMALL_STATE(2228)] = 71940, - [SMALL_STATE(2229)] = 71956, - [SMALL_STATE(2230)] = 71970, - [SMALL_STATE(2231)] = 71986, - [SMALL_STATE(2232)] = 72002, - [SMALL_STATE(2233)] = 72016, - [SMALL_STATE(2234)] = 72032, - [SMALL_STATE(2235)] = 72046, - [SMALL_STATE(2236)] = 72060, - [SMALL_STATE(2237)] = 72076, - [SMALL_STATE(2238)] = 72092, - [SMALL_STATE(2239)] = 72106, - [SMALL_STATE(2240)] = 72122, - [SMALL_STATE(2241)] = 72136, - [SMALL_STATE(2242)] = 72152, - [SMALL_STATE(2243)] = 72166, - [SMALL_STATE(2244)] = 72182, - [SMALL_STATE(2245)] = 72198, - [SMALL_STATE(2246)] = 72214, - [SMALL_STATE(2247)] = 72230, - [SMALL_STATE(2248)] = 72246, - [SMALL_STATE(2249)] = 72262, - [SMALL_STATE(2250)] = 72278, - [SMALL_STATE(2251)] = 72292, - [SMALL_STATE(2252)] = 72306, - [SMALL_STATE(2253)] = 72322, - [SMALL_STATE(2254)] = 72338, - [SMALL_STATE(2255)] = 72352, - [SMALL_STATE(2256)] = 72368, - [SMALL_STATE(2257)] = 72384, - [SMALL_STATE(2258)] = 72398, - [SMALL_STATE(2259)] = 72414, - [SMALL_STATE(2260)] = 72428, - [SMALL_STATE(2261)] = 72444, - [SMALL_STATE(2262)] = 72458, - [SMALL_STATE(2263)] = 72472, - [SMALL_STATE(2264)] = 72488, - [SMALL_STATE(2265)] = 72502, - [SMALL_STATE(2266)] = 72518, - [SMALL_STATE(2267)] = 72534, - [SMALL_STATE(2268)] = 72550, - [SMALL_STATE(2269)] = 72564, - [SMALL_STATE(2270)] = 72578, - [SMALL_STATE(2271)] = 72594, - [SMALL_STATE(2272)] = 72610, - [SMALL_STATE(2273)] = 72626, - [SMALL_STATE(2274)] = 72640, - [SMALL_STATE(2275)] = 72656, - [SMALL_STATE(2276)] = 72672, - [SMALL_STATE(2277)] = 72688, - [SMALL_STATE(2278)] = 72704, - [SMALL_STATE(2279)] = 72720, - [SMALL_STATE(2280)] = 72734, - [SMALL_STATE(2281)] = 72750, - [SMALL_STATE(2282)] = 72764, - [SMALL_STATE(2283)] = 72778, - [SMALL_STATE(2284)] = 72792, - [SMALL_STATE(2285)] = 72806, - [SMALL_STATE(2286)] = 72820, - [SMALL_STATE(2287)] = 72834, - [SMALL_STATE(2288)] = 72850, - [SMALL_STATE(2289)] = 72866, - [SMALL_STATE(2290)] = 72880, - [SMALL_STATE(2291)] = 72894, - [SMALL_STATE(2292)] = 72908, - [SMALL_STATE(2293)] = 72924, - [SMALL_STATE(2294)] = 72938, - [SMALL_STATE(2295)] = 72952, - [SMALL_STATE(2296)] = 72968, - [SMALL_STATE(2297)] = 72984, - [SMALL_STATE(2298)] = 72998, - [SMALL_STATE(2299)] = 73014, - [SMALL_STATE(2300)] = 73030, - [SMALL_STATE(2301)] = 73044, - [SMALL_STATE(2302)] = 73060, - [SMALL_STATE(2303)] = 73076, - [SMALL_STATE(2304)] = 73092, - [SMALL_STATE(2305)] = 73106, - [SMALL_STATE(2306)] = 73122, - [SMALL_STATE(2307)] = 73138, - [SMALL_STATE(2308)] = 73154, - [SMALL_STATE(2309)] = 73170, - [SMALL_STATE(2310)] = 73186, - [SMALL_STATE(2311)] = 73202, - [SMALL_STATE(2312)] = 73218, - [SMALL_STATE(2313)] = 73232, - [SMALL_STATE(2314)] = 73246, - [SMALL_STATE(2315)] = 73262, - [SMALL_STATE(2316)] = 73276, - [SMALL_STATE(2317)] = 73290, - [SMALL_STATE(2318)] = 73304, - [SMALL_STATE(2319)] = 73320, - [SMALL_STATE(2320)] = 73336, - [SMALL_STATE(2321)] = 73350, - [SMALL_STATE(2322)] = 73364, - [SMALL_STATE(2323)] = 73378, - [SMALL_STATE(2324)] = 73392, - [SMALL_STATE(2325)] = 73408, - [SMALL_STATE(2326)] = 73424, - [SMALL_STATE(2327)] = 73440, - [SMALL_STATE(2328)] = 73456, - [SMALL_STATE(2329)] = 73470, - [SMALL_STATE(2330)] = 73486, - [SMALL_STATE(2331)] = 73502, - [SMALL_STATE(2332)] = 73518, - [SMALL_STATE(2333)] = 73534, - [SMALL_STATE(2334)] = 73548, - [SMALL_STATE(2335)] = 73562, - [SMALL_STATE(2336)] = 73576, - [SMALL_STATE(2337)] = 73592, - [SMALL_STATE(2338)] = 73606, - [SMALL_STATE(2339)] = 73622, - [SMALL_STATE(2340)] = 73636, - [SMALL_STATE(2341)] = 73652, - [SMALL_STATE(2342)] = 73668, - [SMALL_STATE(2343)] = 73684, - [SMALL_STATE(2344)] = 73700, - [SMALL_STATE(2345)] = 73716, - [SMALL_STATE(2346)] = 73732, - [SMALL_STATE(2347)] = 73748, - [SMALL_STATE(2348)] = 73764, - [SMALL_STATE(2349)] = 73780, - [SMALL_STATE(2350)] = 73796, - [SMALL_STATE(2351)] = 73810, - [SMALL_STATE(2352)] = 73826, - [SMALL_STATE(2353)] = 73842, - [SMALL_STATE(2354)] = 73858, - [SMALL_STATE(2355)] = 73874, - [SMALL_STATE(2356)] = 73890, - [SMALL_STATE(2357)] = 73906, - [SMALL_STATE(2358)] = 73920, - [SMALL_STATE(2359)] = 73936, - [SMALL_STATE(2360)] = 73950, - [SMALL_STATE(2361)] = 73964, - [SMALL_STATE(2362)] = 73980, - [SMALL_STATE(2363)] = 73994, - [SMALL_STATE(2364)] = 74008, - [SMALL_STATE(2365)] = 74024, - [SMALL_STATE(2366)] = 74038, - [SMALL_STATE(2367)] = 74052, - [SMALL_STATE(2368)] = 74068, - [SMALL_STATE(2369)] = 74082, - [SMALL_STATE(2370)] = 74098, - [SMALL_STATE(2371)] = 74114, - [SMALL_STATE(2372)] = 74130, - [SMALL_STATE(2373)] = 74146, - [SMALL_STATE(2374)] = 74162, - [SMALL_STATE(2375)] = 74178, - [SMALL_STATE(2376)] = 74192, - [SMALL_STATE(2377)] = 74206, - [SMALL_STATE(2378)] = 74222, - [SMALL_STATE(2379)] = 74238, - [SMALL_STATE(2380)] = 74254, - [SMALL_STATE(2381)] = 74268, - [SMALL_STATE(2382)] = 74284, - [SMALL_STATE(2383)] = 74300, - [SMALL_STATE(2384)] = 74316, - [SMALL_STATE(2385)] = 74330, - [SMALL_STATE(2386)] = 74346, - [SMALL_STATE(2387)] = 74362, - [SMALL_STATE(2388)] = 74378, - [SMALL_STATE(2389)] = 74394, - [SMALL_STATE(2390)] = 74410, - [SMALL_STATE(2391)] = 74426, - [SMALL_STATE(2392)] = 74440, - [SMALL_STATE(2393)] = 74454, - [SMALL_STATE(2394)] = 74470, - [SMALL_STATE(2395)] = 74486, - [SMALL_STATE(2396)] = 74500, - [SMALL_STATE(2397)] = 74516, - [SMALL_STATE(2398)] = 74530, - [SMALL_STATE(2399)] = 74546, - [SMALL_STATE(2400)] = 74562, - [SMALL_STATE(2401)] = 74578, - [SMALL_STATE(2402)] = 74592, - [SMALL_STATE(2403)] = 74606, - [SMALL_STATE(2404)] = 74622, - [SMALL_STATE(2405)] = 74636, - [SMALL_STATE(2406)] = 74652, - [SMALL_STATE(2407)] = 74668, - [SMALL_STATE(2408)] = 74684, - [SMALL_STATE(2409)] = 74700, - [SMALL_STATE(2410)] = 74714, - [SMALL_STATE(2411)] = 74730, - [SMALL_STATE(2412)] = 74744, - [SMALL_STATE(2413)] = 74758, - [SMALL_STATE(2414)] = 74774, - [SMALL_STATE(2415)] = 74790, - [SMALL_STATE(2416)] = 74806, - [SMALL_STATE(2417)] = 74822, - [SMALL_STATE(2418)] = 74836, - [SMALL_STATE(2419)] = 74850, - [SMALL_STATE(2420)] = 74866, - [SMALL_STATE(2421)] = 74882, - [SMALL_STATE(2422)] = 74898, - [SMALL_STATE(2423)] = 74914, - [SMALL_STATE(2424)] = 74930, - [SMALL_STATE(2425)] = 74944, - [SMALL_STATE(2426)] = 74960, - [SMALL_STATE(2427)] = 74974, - [SMALL_STATE(2428)] = 74990, - [SMALL_STATE(2429)] = 75006, - [SMALL_STATE(2430)] = 75022, - [SMALL_STATE(2431)] = 75038, - [SMALL_STATE(2432)] = 75054, - [SMALL_STATE(2433)] = 75068, - [SMALL_STATE(2434)] = 75084, - [SMALL_STATE(2435)] = 75098, - [SMALL_STATE(2436)] = 75112, - [SMALL_STATE(2437)] = 75126, - [SMALL_STATE(2438)] = 75142, - [SMALL_STATE(2439)] = 75156, - [SMALL_STATE(2440)] = 75170, - [SMALL_STATE(2441)] = 75184, - [SMALL_STATE(2442)] = 75200, - [SMALL_STATE(2443)] = 75216, - [SMALL_STATE(2444)] = 75232, - [SMALL_STATE(2445)] = 75248, - [SMALL_STATE(2446)] = 75264, - [SMALL_STATE(2447)] = 75280, - [SMALL_STATE(2448)] = 75296, - [SMALL_STATE(2449)] = 75312, - [SMALL_STATE(2450)] = 75326, - [SMALL_STATE(2451)] = 75340, - [SMALL_STATE(2452)] = 75356, - [SMALL_STATE(2453)] = 75370, - [SMALL_STATE(2454)] = 75386, - [SMALL_STATE(2455)] = 75402, - [SMALL_STATE(2456)] = 75418, - [SMALL_STATE(2457)] = 75432, - [SMALL_STATE(2458)] = 75448, - [SMALL_STATE(2459)] = 75464, - [SMALL_STATE(2460)] = 75480, - [SMALL_STATE(2461)] = 75496, - [SMALL_STATE(2462)] = 75512, - [SMALL_STATE(2463)] = 75528, - [SMALL_STATE(2464)] = 75544, - [SMALL_STATE(2465)] = 75558, - [SMALL_STATE(2466)] = 75574, - [SMALL_STATE(2467)] = 75590, - [SMALL_STATE(2468)] = 75606, - [SMALL_STATE(2469)] = 75622, - [SMALL_STATE(2470)] = 75636, - [SMALL_STATE(2471)] = 75652, - [SMALL_STATE(2472)] = 75668, - [SMALL_STATE(2473)] = 75684, - [SMALL_STATE(2474)] = 75698, - [SMALL_STATE(2475)] = 75714, - [SMALL_STATE(2476)] = 75730, - [SMALL_STATE(2477)] = 75744, - [SMALL_STATE(2478)] = 75760, - [SMALL_STATE(2479)] = 75776, - [SMALL_STATE(2480)] = 75790, - [SMALL_STATE(2481)] = 75806, - [SMALL_STATE(2482)] = 75822, - [SMALL_STATE(2483)] = 75838, - [SMALL_STATE(2484)] = 75854, - [SMALL_STATE(2485)] = 75868, - [SMALL_STATE(2486)] = 75884, - [SMALL_STATE(2487)] = 75900, - [SMALL_STATE(2488)] = 75916, - [SMALL_STATE(2489)] = 75930, - [SMALL_STATE(2490)] = 75943, - [SMALL_STATE(2491)] = 75956, - [SMALL_STATE(2492)] = 75969, - [SMALL_STATE(2493)] = 75982, - [SMALL_STATE(2494)] = 75995, - [SMALL_STATE(2495)] = 76008, - [SMALL_STATE(2496)] = 76021, - [SMALL_STATE(2497)] = 76034, - [SMALL_STATE(2498)] = 76047, - [SMALL_STATE(2499)] = 76060, - [SMALL_STATE(2500)] = 76073, - [SMALL_STATE(2501)] = 76086, - [SMALL_STATE(2502)] = 76099, - [SMALL_STATE(2503)] = 76112, - [SMALL_STATE(2504)] = 76125, - [SMALL_STATE(2505)] = 76138, - [SMALL_STATE(2506)] = 76151, - [SMALL_STATE(2507)] = 76164, - [SMALL_STATE(2508)] = 76177, - [SMALL_STATE(2509)] = 76190, - [SMALL_STATE(2510)] = 76203, - [SMALL_STATE(2511)] = 76216, - [SMALL_STATE(2512)] = 76229, - [SMALL_STATE(2513)] = 76242, - [SMALL_STATE(2514)] = 76255, - [SMALL_STATE(2515)] = 76268, - [SMALL_STATE(2516)] = 76281, - [SMALL_STATE(2517)] = 76294, - [SMALL_STATE(2518)] = 76307, - [SMALL_STATE(2519)] = 76320, - [SMALL_STATE(2520)] = 76333, - [SMALL_STATE(2521)] = 76346, - [SMALL_STATE(2522)] = 76359, - [SMALL_STATE(2523)] = 76372, - [SMALL_STATE(2524)] = 76385, - [SMALL_STATE(2525)] = 76398, - [SMALL_STATE(2526)] = 76411, - [SMALL_STATE(2527)] = 76424, - [SMALL_STATE(2528)] = 76437, - [SMALL_STATE(2529)] = 76450, - [SMALL_STATE(2530)] = 76463, - [SMALL_STATE(2531)] = 76476, - [SMALL_STATE(2532)] = 76489, - [SMALL_STATE(2533)] = 76502, - [SMALL_STATE(2534)] = 76515, - [SMALL_STATE(2535)] = 76528, - [SMALL_STATE(2536)] = 76541, - [SMALL_STATE(2537)] = 76554, - [SMALL_STATE(2538)] = 76567, - [SMALL_STATE(2539)] = 76580, - [SMALL_STATE(2540)] = 76593, - [SMALL_STATE(2541)] = 76606, - [SMALL_STATE(2542)] = 76619, - [SMALL_STATE(2543)] = 76632, - [SMALL_STATE(2544)] = 76645, - [SMALL_STATE(2545)] = 76658, - [SMALL_STATE(2546)] = 76671, - [SMALL_STATE(2547)] = 76684, - [SMALL_STATE(2548)] = 76697, - [SMALL_STATE(2549)] = 76710, - [SMALL_STATE(2550)] = 76723, - [SMALL_STATE(2551)] = 76736, - [SMALL_STATE(2552)] = 76749, - [SMALL_STATE(2553)] = 76762, - [SMALL_STATE(2554)] = 76775, - [SMALL_STATE(2555)] = 76788, - [SMALL_STATE(2556)] = 76801, - [SMALL_STATE(2557)] = 76814, - [SMALL_STATE(2558)] = 76827, - [SMALL_STATE(2559)] = 76840, - [SMALL_STATE(2560)] = 76853, - [SMALL_STATE(2561)] = 76866, - [SMALL_STATE(2562)] = 76879, - [SMALL_STATE(2563)] = 76892, - [SMALL_STATE(2564)] = 76905, - [SMALL_STATE(2565)] = 76918, - [SMALL_STATE(2566)] = 76931, - [SMALL_STATE(2567)] = 76944, - [SMALL_STATE(2568)] = 76957, - [SMALL_STATE(2569)] = 76970, - [SMALL_STATE(2570)] = 76983, - [SMALL_STATE(2571)] = 76996, - [SMALL_STATE(2572)] = 77009, - [SMALL_STATE(2573)] = 77022, - [SMALL_STATE(2574)] = 77035, - [SMALL_STATE(2575)] = 77048, - [SMALL_STATE(2576)] = 77061, - [SMALL_STATE(2577)] = 77074, - [SMALL_STATE(2578)] = 77087, - [SMALL_STATE(2579)] = 77100, - [SMALL_STATE(2580)] = 77113, - [SMALL_STATE(2581)] = 77126, - [SMALL_STATE(2582)] = 77139, - [SMALL_STATE(2583)] = 77152, - [SMALL_STATE(2584)] = 77165, - [SMALL_STATE(2585)] = 77178, - [SMALL_STATE(2586)] = 77191, - [SMALL_STATE(2587)] = 77204, - [SMALL_STATE(2588)] = 77217, - [SMALL_STATE(2589)] = 77230, - [SMALL_STATE(2590)] = 77243, - [SMALL_STATE(2591)] = 77256, - [SMALL_STATE(2592)] = 77269, - [SMALL_STATE(2593)] = 77282, - [SMALL_STATE(2594)] = 77295, - [SMALL_STATE(2595)] = 77308, - [SMALL_STATE(2596)] = 77321, - [SMALL_STATE(2597)] = 77334, - [SMALL_STATE(2598)] = 77347, - [SMALL_STATE(2599)] = 77360, - [SMALL_STATE(2600)] = 77373, - [SMALL_STATE(2601)] = 77386, - [SMALL_STATE(2602)] = 77399, - [SMALL_STATE(2603)] = 77412, - [SMALL_STATE(2604)] = 77425, - [SMALL_STATE(2605)] = 77438, - [SMALL_STATE(2606)] = 77451, - [SMALL_STATE(2607)] = 77464, - [SMALL_STATE(2608)] = 77477, - [SMALL_STATE(2609)] = 77490, - [SMALL_STATE(2610)] = 77503, - [SMALL_STATE(2611)] = 77516, - [SMALL_STATE(2612)] = 77529, - [SMALL_STATE(2613)] = 77542, - [SMALL_STATE(2614)] = 77555, - [SMALL_STATE(2615)] = 77568, - [SMALL_STATE(2616)] = 77581, - [SMALL_STATE(2617)] = 77594, - [SMALL_STATE(2618)] = 77607, - [SMALL_STATE(2619)] = 77620, - [SMALL_STATE(2620)] = 77633, - [SMALL_STATE(2621)] = 77646, - [SMALL_STATE(2622)] = 77659, - [SMALL_STATE(2623)] = 77672, - [SMALL_STATE(2624)] = 77685, - [SMALL_STATE(2625)] = 77698, - [SMALL_STATE(2626)] = 77711, - [SMALL_STATE(2627)] = 77724, - [SMALL_STATE(2628)] = 77737, - [SMALL_STATE(2629)] = 77750, - [SMALL_STATE(2630)] = 77763, - [SMALL_STATE(2631)] = 77776, - [SMALL_STATE(2632)] = 77789, - [SMALL_STATE(2633)] = 77802, - [SMALL_STATE(2634)] = 77815, - [SMALL_STATE(2635)] = 77828, - [SMALL_STATE(2636)] = 77841, - [SMALL_STATE(2637)] = 77854, - [SMALL_STATE(2638)] = 77867, - [SMALL_STATE(2639)] = 77880, - [SMALL_STATE(2640)] = 77893, - [SMALL_STATE(2641)] = 77906, - [SMALL_STATE(2642)] = 77919, - [SMALL_STATE(2643)] = 77932, - [SMALL_STATE(2644)] = 77945, - [SMALL_STATE(2645)] = 77958, - [SMALL_STATE(2646)] = 77971, - [SMALL_STATE(2647)] = 77984, - [SMALL_STATE(2648)] = 77997, - [SMALL_STATE(2649)] = 78010, - [SMALL_STATE(2650)] = 78023, - [SMALL_STATE(2651)] = 78036, - [SMALL_STATE(2652)] = 78049, - [SMALL_STATE(2653)] = 78062, - [SMALL_STATE(2654)] = 78075, - [SMALL_STATE(2655)] = 78088, - [SMALL_STATE(2656)] = 78101, - [SMALL_STATE(2657)] = 78114, - [SMALL_STATE(2658)] = 78127, - [SMALL_STATE(2659)] = 78140, - [SMALL_STATE(2660)] = 78153, - [SMALL_STATE(2661)] = 78166, - [SMALL_STATE(2662)] = 78179, - [SMALL_STATE(2663)] = 78192, - [SMALL_STATE(2664)] = 78205, - [SMALL_STATE(2665)] = 78218, - [SMALL_STATE(2666)] = 78231, - [SMALL_STATE(2667)] = 78244, - [SMALL_STATE(2668)] = 78257, - [SMALL_STATE(2669)] = 78270, - [SMALL_STATE(2670)] = 78283, - [SMALL_STATE(2671)] = 78296, - [SMALL_STATE(2672)] = 78309, - [SMALL_STATE(2673)] = 78322, - [SMALL_STATE(2674)] = 78335, - [SMALL_STATE(2675)] = 78348, - [SMALL_STATE(2676)] = 78361, - [SMALL_STATE(2677)] = 78374, - [SMALL_STATE(2678)] = 78387, - [SMALL_STATE(2679)] = 78400, - [SMALL_STATE(2680)] = 78413, - [SMALL_STATE(2681)] = 78426, - [SMALL_STATE(2682)] = 78439, - [SMALL_STATE(2683)] = 78452, - [SMALL_STATE(2684)] = 78465, - [SMALL_STATE(2685)] = 78478, - [SMALL_STATE(2686)] = 78491, - [SMALL_STATE(2687)] = 78504, - [SMALL_STATE(2688)] = 78517, - [SMALL_STATE(2689)] = 78530, - [SMALL_STATE(2690)] = 78543, - [SMALL_STATE(2691)] = 78556, - [SMALL_STATE(2692)] = 78569, - [SMALL_STATE(2693)] = 78582, - [SMALL_STATE(2694)] = 78595, - [SMALL_STATE(2695)] = 78608, - [SMALL_STATE(2696)] = 78621, - [SMALL_STATE(2697)] = 78634, - [SMALL_STATE(2698)] = 78647, - [SMALL_STATE(2699)] = 78660, - [SMALL_STATE(2700)] = 78673, - [SMALL_STATE(2701)] = 78686, - [SMALL_STATE(2702)] = 78699, - [SMALL_STATE(2703)] = 78712, - [SMALL_STATE(2704)] = 78725, - [SMALL_STATE(2705)] = 78738, - [SMALL_STATE(2706)] = 78751, - [SMALL_STATE(2707)] = 78764, - [SMALL_STATE(2708)] = 78777, - [SMALL_STATE(2709)] = 78790, - [SMALL_STATE(2710)] = 78803, - [SMALL_STATE(2711)] = 78816, - [SMALL_STATE(2712)] = 78820, + [SMALL_STATE(1653)] = 60766, + [SMALL_STATE(1654)] = 60794, + [SMALL_STATE(1655)] = 60822, + [SMALL_STATE(1656)] = 60842, + [SMALL_STATE(1657)] = 60870, + [SMALL_STATE(1658)] = 60898, + [SMALL_STATE(1659)] = 60926, + [SMALL_STATE(1660)] = 60954, + [SMALL_STATE(1661)] = 60982, + [SMALL_STATE(1662)] = 61010, + [SMALL_STATE(1663)] = 61034, + [SMALL_STATE(1664)] = 61054, + [SMALL_STATE(1665)] = 61074, + [SMALL_STATE(1666)] = 61102, + [SMALL_STATE(1667)] = 61128, + [SMALL_STATE(1668)] = 61154, + [SMALL_STATE(1669)] = 61182, + [SMALL_STATE(1670)] = 61210, + [SMALL_STATE(1671)] = 61234, + [SMALL_STATE(1672)] = 61254, + [SMALL_STATE(1673)] = 61280, + [SMALL_STATE(1674)] = 61306, + [SMALL_STATE(1675)] = 61330, + [SMALL_STATE(1676)] = 61358, + [SMALL_STATE(1677)] = 61378, + [SMALL_STATE(1678)] = 61406, + [SMALL_STATE(1679)] = 61430, + [SMALL_STATE(1680)] = 61458, + [SMALL_STATE(1681)] = 61486, + [SMALL_STATE(1682)] = 61514, + [SMALL_STATE(1683)] = 61542, + [SMALL_STATE(1684)] = 61562, + [SMALL_STATE(1685)] = 61583, + [SMALL_STATE(1686)] = 61600, + [SMALL_STATE(1687)] = 61623, + [SMALL_STATE(1688)] = 61644, + [SMALL_STATE(1689)] = 61669, + [SMALL_STATE(1690)] = 61692, + [SMALL_STATE(1691)] = 61715, + [SMALL_STATE(1692)] = 61740, + [SMALL_STATE(1693)] = 61761, + [SMALL_STATE(1694)] = 61786, + [SMALL_STATE(1695)] = 61807, + [SMALL_STATE(1696)] = 61830, + [SMALL_STATE(1697)] = 61851, + [SMALL_STATE(1698)] = 61874, + [SMALL_STATE(1699)] = 61899, + [SMALL_STATE(1700)] = 61920, + [SMALL_STATE(1701)] = 61941, + [SMALL_STATE(1702)] = 61966, + [SMALL_STATE(1703)] = 61987, + [SMALL_STATE(1704)] = 62008, + [SMALL_STATE(1705)] = 62031, + [SMALL_STATE(1706)] = 62048, + [SMALL_STATE(1707)] = 62073, + [SMALL_STATE(1708)] = 62098, + [SMALL_STATE(1709)] = 62121, + [SMALL_STATE(1710)] = 62144, + [SMALL_STATE(1711)] = 62163, + [SMALL_STATE(1712)] = 62184, + [SMALL_STATE(1713)] = 62209, + [SMALL_STATE(1714)] = 62230, + [SMALL_STATE(1715)] = 62251, + [SMALL_STATE(1716)] = 62272, + [SMALL_STATE(1717)] = 62297, + [SMALL_STATE(1718)] = 62322, + [SMALL_STATE(1719)] = 62343, + [SMALL_STATE(1720)] = 62366, + [SMALL_STATE(1721)] = 62385, + [SMALL_STATE(1722)] = 62408, + [SMALL_STATE(1723)] = 62433, + [SMALL_STATE(1724)] = 62454, + [SMALL_STATE(1725)] = 62479, + [SMALL_STATE(1726)] = 62504, + [SMALL_STATE(1727)] = 62525, + [SMALL_STATE(1728)] = 62550, + [SMALL_STATE(1729)] = 62569, + [SMALL_STATE(1730)] = 62588, + [SMALL_STATE(1731)] = 62607, + [SMALL_STATE(1732)] = 62630, + [SMALL_STATE(1733)] = 62649, + [SMALL_STATE(1734)] = 62674, + [SMALL_STATE(1735)] = 62695, + [SMALL_STATE(1736)] = 62716, + [SMALL_STATE(1737)] = 62741, + [SMALL_STATE(1738)] = 62764, + [SMALL_STATE(1739)] = 62787, + [SMALL_STATE(1740)] = 62808, + [SMALL_STATE(1741)] = 62831, + [SMALL_STATE(1742)] = 62852, + [SMALL_STATE(1743)] = 62877, + [SMALL_STATE(1744)] = 62898, + [SMALL_STATE(1745)] = 62919, + [SMALL_STATE(1746)] = 62938, + [SMALL_STATE(1747)] = 62959, + [SMALL_STATE(1748)] = 62980, + [SMALL_STATE(1749)] = 63003, + [SMALL_STATE(1750)] = 63022, + [SMALL_STATE(1751)] = 63043, + [SMALL_STATE(1752)] = 63066, + [SMALL_STATE(1753)] = 63091, + [SMALL_STATE(1754)] = 63112, + [SMALL_STATE(1755)] = 63133, + [SMALL_STATE(1756)] = 63154, + [SMALL_STATE(1757)] = 63171, + [SMALL_STATE(1758)] = 63192, + [SMALL_STATE(1759)] = 63213, + [SMALL_STATE(1760)] = 63234, + [SMALL_STATE(1761)] = 63253, + [SMALL_STATE(1762)] = 63272, + [SMALL_STATE(1763)] = 63293, + [SMALL_STATE(1764)] = 63314, + [SMALL_STATE(1765)] = 63335, + [SMALL_STATE(1766)] = 63358, + [SMALL_STATE(1767)] = 63383, + [SMALL_STATE(1768)] = 63406, + [SMALL_STATE(1769)] = 63423, + [SMALL_STATE(1770)] = 63440, + [SMALL_STATE(1771)] = 63459, + [SMALL_STATE(1772)] = 63480, + [SMALL_STATE(1773)] = 63499, + [SMALL_STATE(1774)] = 63522, + [SMALL_STATE(1775)] = 63547, + [SMALL_STATE(1776)] = 63570, + [SMALL_STATE(1777)] = 63595, + [SMALL_STATE(1778)] = 63616, + [SMALL_STATE(1779)] = 63641, + [SMALL_STATE(1780)] = 63666, + [SMALL_STATE(1781)] = 63687, + [SMALL_STATE(1782)] = 63710, + [SMALL_STATE(1783)] = 63733, + [SMALL_STATE(1784)] = 63756, + [SMALL_STATE(1785)] = 63781, + [SMALL_STATE(1786)] = 63802, + [SMALL_STATE(1787)] = 63825, + [SMALL_STATE(1788)] = 63845, + [SMALL_STATE(1789)] = 63865, + [SMALL_STATE(1790)] = 63883, + [SMALL_STATE(1791)] = 63903, + [SMALL_STATE(1792)] = 63925, + [SMALL_STATE(1793)] = 63947, + [SMALL_STATE(1794)] = 63965, + [SMALL_STATE(1795)] = 63985, + [SMALL_STATE(1796)] = 64003, + [SMALL_STATE(1797)] = 64025, + [SMALL_STATE(1798)] = 64047, + [SMALL_STATE(1799)] = 64067, + [SMALL_STATE(1800)] = 64089, + [SMALL_STATE(1801)] = 64111, + [SMALL_STATE(1802)] = 64129, + [SMALL_STATE(1803)] = 64147, + [SMALL_STATE(1804)] = 64163, + [SMALL_STATE(1805)] = 64185, + [SMALL_STATE(1806)] = 64201, + [SMALL_STATE(1807)] = 64217, + [SMALL_STATE(1808)] = 64237, + [SMALL_STATE(1809)] = 64259, + [SMALL_STATE(1810)] = 64275, + [SMALL_STATE(1811)] = 64295, + [SMALL_STATE(1812)] = 64317, + [SMALL_STATE(1813)] = 64335, + [SMALL_STATE(1814)] = 64357, + [SMALL_STATE(1815)] = 64375, + [SMALL_STATE(1816)] = 64397, + [SMALL_STATE(1817)] = 64417, + [SMALL_STATE(1818)] = 64433, + [SMALL_STATE(1819)] = 64451, + [SMALL_STATE(1820)] = 64473, + [SMALL_STATE(1821)] = 64489, + [SMALL_STATE(1822)] = 64505, + [SMALL_STATE(1823)] = 64525, + [SMALL_STATE(1824)] = 64543, + [SMALL_STATE(1825)] = 64563, + [SMALL_STATE(1826)] = 64579, + [SMALL_STATE(1827)] = 64601, + [SMALL_STATE(1828)] = 64621, + [SMALL_STATE(1829)] = 64639, + [SMALL_STATE(1830)] = 64661, + [SMALL_STATE(1831)] = 64681, + [SMALL_STATE(1832)] = 64701, + [SMALL_STATE(1833)] = 64723, + [SMALL_STATE(1834)] = 64739, + [SMALL_STATE(1835)] = 64759, + [SMALL_STATE(1836)] = 64775, + [SMALL_STATE(1837)] = 64797, + [SMALL_STATE(1838)] = 64817, + [SMALL_STATE(1839)] = 64833, + [SMALL_STATE(1840)] = 64855, + [SMALL_STATE(1841)] = 64877, + [SMALL_STATE(1842)] = 64893, + [SMALL_STATE(1843)] = 64909, + [SMALL_STATE(1844)] = 64925, + [SMALL_STATE(1845)] = 64947, + [SMALL_STATE(1846)] = 64969, + [SMALL_STATE(1847)] = 64989, + [SMALL_STATE(1848)] = 65011, + [SMALL_STATE(1849)] = 65033, + [SMALL_STATE(1850)] = 65053, + [SMALL_STATE(1851)] = 65075, + [SMALL_STATE(1852)] = 65095, + [SMALL_STATE(1853)] = 65115, + [SMALL_STATE(1854)] = 65135, + [SMALL_STATE(1855)] = 65157, + [SMALL_STATE(1856)] = 65179, + [SMALL_STATE(1857)] = 65199, + [SMALL_STATE(1858)] = 65219, + [SMALL_STATE(1859)] = 65239, + [SMALL_STATE(1860)] = 65259, + [SMALL_STATE(1861)] = 65279, + [SMALL_STATE(1862)] = 65299, + [SMALL_STATE(1863)] = 65319, + [SMALL_STATE(1864)] = 65339, + [SMALL_STATE(1865)] = 65359, + [SMALL_STATE(1866)] = 65375, + [SMALL_STATE(1867)] = 65397, + [SMALL_STATE(1868)] = 65413, + [SMALL_STATE(1869)] = 65435, + [SMALL_STATE(1870)] = 65457, + [SMALL_STATE(1871)] = 65477, + [SMALL_STATE(1872)] = 65497, + [SMALL_STATE(1873)] = 65517, + [SMALL_STATE(1874)] = 65537, + [SMALL_STATE(1875)] = 65557, + [SMALL_STATE(1876)] = 65577, + [SMALL_STATE(1877)] = 65597, + [SMALL_STATE(1878)] = 65617, + [SMALL_STATE(1879)] = 65639, + [SMALL_STATE(1880)] = 65661, + [SMALL_STATE(1881)] = 65683, + [SMALL_STATE(1882)] = 65703, + [SMALL_STATE(1883)] = 65725, + [SMALL_STATE(1884)] = 65747, + [SMALL_STATE(1885)] = 65769, + [SMALL_STATE(1886)] = 65791, + [SMALL_STATE(1887)] = 65813, + [SMALL_STATE(1888)] = 65835, + [SMALL_STATE(1889)] = 65857, + [SMALL_STATE(1890)] = 65879, + [SMALL_STATE(1891)] = 65901, + [SMALL_STATE(1892)] = 65923, + [SMALL_STATE(1893)] = 65945, + [SMALL_STATE(1894)] = 65965, + [SMALL_STATE(1895)] = 65987, + [SMALL_STATE(1896)] = 66007, + [SMALL_STATE(1897)] = 66029, + [SMALL_STATE(1898)] = 66051, + [SMALL_STATE(1899)] = 66069, + [SMALL_STATE(1900)] = 66091, + [SMALL_STATE(1901)] = 66113, + [SMALL_STATE(1902)] = 66135, + [SMALL_STATE(1903)] = 66157, + [SMALL_STATE(1904)] = 66179, + [SMALL_STATE(1905)] = 66199, + [SMALL_STATE(1906)] = 66221, + [SMALL_STATE(1907)] = 66241, + [SMALL_STATE(1908)] = 66263, + [SMALL_STATE(1909)] = 66283, + [SMALL_STATE(1910)] = 66303, + [SMALL_STATE(1911)] = 66323, + [SMALL_STATE(1912)] = 66345, + [SMALL_STATE(1913)] = 66363, + [SMALL_STATE(1914)] = 66383, + [SMALL_STATE(1915)] = 66405, + [SMALL_STATE(1916)] = 66427, + [SMALL_STATE(1917)] = 66447, + [SMALL_STATE(1918)] = 66467, + [SMALL_STATE(1919)] = 66485, + [SMALL_STATE(1920)] = 66505, + [SMALL_STATE(1921)] = 66525, + [SMALL_STATE(1922)] = 66545, + [SMALL_STATE(1923)] = 66565, + [SMALL_STATE(1924)] = 66587, + [SMALL_STATE(1925)] = 66607, + [SMALL_STATE(1926)] = 66629, + [SMALL_STATE(1927)] = 66649, + [SMALL_STATE(1928)] = 66667, + [SMALL_STATE(1929)] = 66687, + [SMALL_STATE(1930)] = 66703, + [SMALL_STATE(1931)] = 66725, + [SMALL_STATE(1932)] = 66747, + [SMALL_STATE(1933)] = 66767, + [SMALL_STATE(1934)] = 66787, + [SMALL_STATE(1935)] = 66805, + [SMALL_STATE(1936)] = 66827, + [SMALL_STATE(1937)] = 66849, + [SMALL_STATE(1938)] = 66865, + [SMALL_STATE(1939)] = 66887, + [SMALL_STATE(1940)] = 66903, + [SMALL_STATE(1941)] = 66925, + [SMALL_STATE(1942)] = 66947, + [SMALL_STATE(1943)] = 66967, + [SMALL_STATE(1944)] = 66983, + [SMALL_STATE(1945)] = 67003, + [SMALL_STATE(1946)] = 67021, + [SMALL_STATE(1947)] = 67043, + [SMALL_STATE(1948)] = 67065, + [SMALL_STATE(1949)] = 67085, + [SMALL_STATE(1950)] = 67102, + [SMALL_STATE(1951)] = 67119, + [SMALL_STATE(1952)] = 67136, + [SMALL_STATE(1953)] = 67153, + [SMALL_STATE(1954)] = 67170, + [SMALL_STATE(1955)] = 67189, + [SMALL_STATE(1956)] = 67206, + [SMALL_STATE(1957)] = 67225, + [SMALL_STATE(1958)] = 67242, + [SMALL_STATE(1959)] = 67259, + [SMALL_STATE(1960)] = 67276, + [SMALL_STATE(1961)] = 67295, + [SMALL_STATE(1962)] = 67314, + [SMALL_STATE(1963)] = 67331, + [SMALL_STATE(1964)] = 67348, + [SMALL_STATE(1965)] = 67367, + [SMALL_STATE(1966)] = 67384, + [SMALL_STATE(1967)] = 67403, + [SMALL_STATE(1968)] = 67422, + [SMALL_STATE(1969)] = 67439, + [SMALL_STATE(1970)] = 67458, + [SMALL_STATE(1971)] = 67475, + [SMALL_STATE(1972)] = 67492, + [SMALL_STATE(1973)] = 67509, + [SMALL_STATE(1974)] = 67526, + [SMALL_STATE(1975)] = 67545, + [SMALL_STATE(1976)] = 67562, + [SMALL_STATE(1977)] = 67579, + [SMALL_STATE(1978)] = 67596, + [SMALL_STATE(1979)] = 67613, + [SMALL_STATE(1980)] = 67630, + [SMALL_STATE(1981)] = 67647, + [SMALL_STATE(1982)] = 67664, + [SMALL_STATE(1983)] = 67683, + [SMALL_STATE(1984)] = 67700, + [SMALL_STATE(1985)] = 67717, + [SMALL_STATE(1986)] = 67736, + [SMALL_STATE(1987)] = 67753, + [SMALL_STATE(1988)] = 67772, + [SMALL_STATE(1989)] = 67789, + [SMALL_STATE(1990)] = 67808, + [SMALL_STATE(1991)] = 67827, + [SMALL_STATE(1992)] = 67844, + [SMALL_STATE(1993)] = 67861, + [SMALL_STATE(1994)] = 67878, + [SMALL_STATE(1995)] = 67895, + [SMALL_STATE(1996)] = 67912, + [SMALL_STATE(1997)] = 67931, + [SMALL_STATE(1998)] = 67948, + [SMALL_STATE(1999)] = 67965, + [SMALL_STATE(2000)] = 67982, + [SMALL_STATE(2001)] = 67997, + [SMALL_STATE(2002)] = 68014, + [SMALL_STATE(2003)] = 68031, + [SMALL_STATE(2004)] = 68048, + [SMALL_STATE(2005)] = 68067, + [SMALL_STATE(2006)] = 68086, + [SMALL_STATE(2007)] = 68103, + [SMALL_STATE(2008)] = 68120, + [SMALL_STATE(2009)] = 68139, + [SMALL_STATE(2010)] = 68158, + [SMALL_STATE(2011)] = 68175, + [SMALL_STATE(2012)] = 68194, + [SMALL_STATE(2013)] = 68209, + [SMALL_STATE(2014)] = 68226, + [SMALL_STATE(2015)] = 68243, + [SMALL_STATE(2016)] = 68260, + [SMALL_STATE(2017)] = 68279, + [SMALL_STATE(2018)] = 68296, + [SMALL_STATE(2019)] = 68313, + [SMALL_STATE(2020)] = 68330, + [SMALL_STATE(2021)] = 68349, + [SMALL_STATE(2022)] = 68368, + [SMALL_STATE(2023)] = 68387, + [SMALL_STATE(2024)] = 68404, + [SMALL_STATE(2025)] = 68421, + [SMALL_STATE(2026)] = 68440, + [SMALL_STATE(2027)] = 68459, + [SMALL_STATE(2028)] = 68478, + [SMALL_STATE(2029)] = 68495, + [SMALL_STATE(2030)] = 68512, + [SMALL_STATE(2031)] = 68529, + [SMALL_STATE(2032)] = 68548, + [SMALL_STATE(2033)] = 68565, + [SMALL_STATE(2034)] = 68582, + [SMALL_STATE(2035)] = 68601, + [SMALL_STATE(2036)] = 68618, + [SMALL_STATE(2037)] = 68635, + [SMALL_STATE(2038)] = 68652, + [SMALL_STATE(2039)] = 68671, + [SMALL_STATE(2040)] = 68690, + [SMALL_STATE(2041)] = 68707, + [SMALL_STATE(2042)] = 68726, + [SMALL_STATE(2043)] = 68745, + [SMALL_STATE(2044)] = 68762, + [SMALL_STATE(2045)] = 68779, + [SMALL_STATE(2046)] = 68796, + [SMALL_STATE(2047)] = 68813, + [SMALL_STATE(2048)] = 68828, + [SMALL_STATE(2049)] = 68845, + [SMALL_STATE(2050)] = 68864, + [SMALL_STATE(2051)] = 68881, + [SMALL_STATE(2052)] = 68900, + [SMALL_STATE(2053)] = 68919, + [SMALL_STATE(2054)] = 68938, + [SMALL_STATE(2055)] = 68955, + [SMALL_STATE(2056)] = 68972, + [SMALL_STATE(2057)] = 68989, + [SMALL_STATE(2058)] = 69006, + [SMALL_STATE(2059)] = 69025, + [SMALL_STATE(2060)] = 69042, + [SMALL_STATE(2061)] = 69059, + [SMALL_STATE(2062)] = 69078, + [SMALL_STATE(2063)] = 69095, + [SMALL_STATE(2064)] = 69112, + [SMALL_STATE(2065)] = 69129, + [SMALL_STATE(2066)] = 69146, + [SMALL_STATE(2067)] = 69163, + [SMALL_STATE(2068)] = 69182, + [SMALL_STATE(2069)] = 69199, + [SMALL_STATE(2070)] = 69216, + [SMALL_STATE(2071)] = 69231, + [SMALL_STATE(2072)] = 69250, + [SMALL_STATE(2073)] = 69267, + [SMALL_STATE(2074)] = 69282, + [SMALL_STATE(2075)] = 69299, + [SMALL_STATE(2076)] = 69316, + [SMALL_STATE(2077)] = 69333, + [SMALL_STATE(2078)] = 69350, + [SMALL_STATE(2079)] = 69365, + [SMALL_STATE(2080)] = 69384, + [SMALL_STATE(2081)] = 69401, + [SMALL_STATE(2082)] = 69420, + [SMALL_STATE(2083)] = 69439, + [SMALL_STATE(2084)] = 69456, + [SMALL_STATE(2085)] = 69475, + [SMALL_STATE(2086)] = 69494, + [SMALL_STATE(2087)] = 69511, + [SMALL_STATE(2088)] = 69530, + [SMALL_STATE(2089)] = 69547, + [SMALL_STATE(2090)] = 69564, + [SMALL_STATE(2091)] = 69581, + [SMALL_STATE(2092)] = 69598, + [SMALL_STATE(2093)] = 69615, + [SMALL_STATE(2094)] = 69630, + [SMALL_STATE(2095)] = 69645, + [SMALL_STATE(2096)] = 69664, + [SMALL_STATE(2097)] = 69683, + [SMALL_STATE(2098)] = 69698, + [SMALL_STATE(2099)] = 69717, + [SMALL_STATE(2100)] = 69734, + [SMALL_STATE(2101)] = 69751, + [SMALL_STATE(2102)] = 69770, + [SMALL_STATE(2103)] = 69787, + [SMALL_STATE(2104)] = 69804, + [SMALL_STATE(2105)] = 69823, + [SMALL_STATE(2106)] = 69840, + [SMALL_STATE(2107)] = 69857, + [SMALL_STATE(2108)] = 69874, + [SMALL_STATE(2109)] = 69891, + [SMALL_STATE(2110)] = 69908, + [SMALL_STATE(2111)] = 69923, + [SMALL_STATE(2112)] = 69940, + [SMALL_STATE(2113)] = 69959, + [SMALL_STATE(2114)] = 69974, + [SMALL_STATE(2115)] = 69991, + [SMALL_STATE(2116)] = 70008, + [SMALL_STATE(2117)] = 70023, + [SMALL_STATE(2118)] = 70038, + [SMALL_STATE(2119)] = 70057, + [SMALL_STATE(2120)] = 70076, + [SMALL_STATE(2121)] = 70095, + [SMALL_STATE(2122)] = 70114, + [SMALL_STATE(2123)] = 70129, + [SMALL_STATE(2124)] = 70144, + [SMALL_STATE(2125)] = 70161, + [SMALL_STATE(2126)] = 70178, + [SMALL_STATE(2127)] = 70195, + [SMALL_STATE(2128)] = 70212, + [SMALL_STATE(2129)] = 70229, + [SMALL_STATE(2130)] = 70248, + [SMALL_STATE(2131)] = 70267, + [SMALL_STATE(2132)] = 70286, + [SMALL_STATE(2133)] = 70305, + [SMALL_STATE(2134)] = 70322, + [SMALL_STATE(2135)] = 70341, + [SMALL_STATE(2136)] = 70360, + [SMALL_STATE(2137)] = 70377, + [SMALL_STATE(2138)] = 70394, + [SMALL_STATE(2139)] = 70413, + [SMALL_STATE(2140)] = 70430, + [SMALL_STATE(2141)] = 70447, + [SMALL_STATE(2142)] = 70466, + [SMALL_STATE(2143)] = 70483, + [SMALL_STATE(2144)] = 70502, + [SMALL_STATE(2145)] = 70519, + [SMALL_STATE(2146)] = 70538, + [SMALL_STATE(2147)] = 70555, + [SMALL_STATE(2148)] = 70574, + [SMALL_STATE(2149)] = 70591, + [SMALL_STATE(2150)] = 70610, + [SMALL_STATE(2151)] = 70627, + [SMALL_STATE(2152)] = 70644, + [SMALL_STATE(2153)] = 70663, + [SMALL_STATE(2154)] = 70680, + [SMALL_STATE(2155)] = 70699, + [SMALL_STATE(2156)] = 70716, + [SMALL_STATE(2157)] = 70735, + [SMALL_STATE(2158)] = 70754, + [SMALL_STATE(2159)] = 70771, + [SMALL_STATE(2160)] = 70786, + [SMALL_STATE(2161)] = 70803, + [SMALL_STATE(2162)] = 70818, + [SMALL_STATE(2163)] = 70835, + [SMALL_STATE(2164)] = 70852, + [SMALL_STATE(2165)] = 70867, + [SMALL_STATE(2166)] = 70882, + [SMALL_STATE(2167)] = 70901, + [SMALL_STATE(2168)] = 70918, + [SMALL_STATE(2169)] = 70937, + [SMALL_STATE(2170)] = 70956, + [SMALL_STATE(2171)] = 70973, + [SMALL_STATE(2172)] = 70992, + [SMALL_STATE(2173)] = 71011, + [SMALL_STATE(2174)] = 71030, + [SMALL_STATE(2175)] = 71047, + [SMALL_STATE(2176)] = 71066, + [SMALL_STATE(2177)] = 71083, + [SMALL_STATE(2178)] = 71100, + [SMALL_STATE(2179)] = 71117, + [SMALL_STATE(2180)] = 71136, + [SMALL_STATE(2181)] = 71151, + [SMALL_STATE(2182)] = 71170, + [SMALL_STATE(2183)] = 71189, + [SMALL_STATE(2184)] = 71206, + [SMALL_STATE(2185)] = 71221, + [SMALL_STATE(2186)] = 71238, + [SMALL_STATE(2187)] = 71257, + [SMALL_STATE(2188)] = 71274, + [SMALL_STATE(2189)] = 71291, + [SMALL_STATE(2190)] = 71306, + [SMALL_STATE(2191)] = 71325, + [SMALL_STATE(2192)] = 71340, + [SMALL_STATE(2193)] = 71359, + [SMALL_STATE(2194)] = 71376, + [SMALL_STATE(2195)] = 71395, + [SMALL_STATE(2196)] = 71412, + [SMALL_STATE(2197)] = 71429, + [SMALL_STATE(2198)] = 71446, + [SMALL_STATE(2199)] = 71465, + [SMALL_STATE(2200)] = 71482, + [SMALL_STATE(2201)] = 71501, + [SMALL_STATE(2202)] = 71520, + [SMALL_STATE(2203)] = 71537, + [SMALL_STATE(2204)] = 71556, + [SMALL_STATE(2205)] = 71571, + [SMALL_STATE(2206)] = 71590, + [SMALL_STATE(2207)] = 71607, + [SMALL_STATE(2208)] = 71626, + [SMALL_STATE(2209)] = 71645, + [SMALL_STATE(2210)] = 71662, + [SMALL_STATE(2211)] = 71681, + [SMALL_STATE(2212)] = 71700, + [SMALL_STATE(2213)] = 71715, + [SMALL_STATE(2214)] = 71730, + [SMALL_STATE(2215)] = 71749, + [SMALL_STATE(2216)] = 71768, + [SMALL_STATE(2217)] = 71787, + [SMALL_STATE(2218)] = 71806, + [SMALL_STATE(2219)] = 71825, + [SMALL_STATE(2220)] = 71844, + [SMALL_STATE(2221)] = 71860, + [SMALL_STATE(2222)] = 71874, + [SMALL_STATE(2223)] = 71888, + [SMALL_STATE(2224)] = 71902, + [SMALL_STATE(2225)] = 71918, + [SMALL_STATE(2226)] = 71932, + [SMALL_STATE(2227)] = 71948, + [SMALL_STATE(2228)] = 71962, + [SMALL_STATE(2229)] = 71978, + [SMALL_STATE(2230)] = 71992, + [SMALL_STATE(2231)] = 72008, + [SMALL_STATE(2232)] = 72024, + [SMALL_STATE(2233)] = 72038, + [SMALL_STATE(2234)] = 72054, + [SMALL_STATE(2235)] = 72068, + [SMALL_STATE(2236)] = 72082, + [SMALL_STATE(2237)] = 72098, + [SMALL_STATE(2238)] = 72114, + [SMALL_STATE(2239)] = 72128, + [SMALL_STATE(2240)] = 72144, + [SMALL_STATE(2241)] = 72158, + [SMALL_STATE(2242)] = 72174, + [SMALL_STATE(2243)] = 72188, + [SMALL_STATE(2244)] = 72204, + [SMALL_STATE(2245)] = 72220, + [SMALL_STATE(2246)] = 72236, + [SMALL_STATE(2247)] = 72252, + [SMALL_STATE(2248)] = 72268, + [SMALL_STATE(2249)] = 72284, + [SMALL_STATE(2250)] = 72300, + [SMALL_STATE(2251)] = 72314, + [SMALL_STATE(2252)] = 72328, + [SMALL_STATE(2253)] = 72344, + [SMALL_STATE(2254)] = 72360, + [SMALL_STATE(2255)] = 72374, + [SMALL_STATE(2256)] = 72390, + [SMALL_STATE(2257)] = 72406, + [SMALL_STATE(2258)] = 72420, + [SMALL_STATE(2259)] = 72436, + [SMALL_STATE(2260)] = 72450, + [SMALL_STATE(2261)] = 72466, + [SMALL_STATE(2262)] = 72480, + [SMALL_STATE(2263)] = 72494, + [SMALL_STATE(2264)] = 72510, + [SMALL_STATE(2265)] = 72524, + [SMALL_STATE(2266)] = 72540, + [SMALL_STATE(2267)] = 72556, + [SMALL_STATE(2268)] = 72572, + [SMALL_STATE(2269)] = 72586, + [SMALL_STATE(2270)] = 72600, + [SMALL_STATE(2271)] = 72616, + [SMALL_STATE(2272)] = 72632, + [SMALL_STATE(2273)] = 72648, + [SMALL_STATE(2274)] = 72662, + [SMALL_STATE(2275)] = 72678, + [SMALL_STATE(2276)] = 72694, + [SMALL_STATE(2277)] = 72710, + [SMALL_STATE(2278)] = 72726, + [SMALL_STATE(2279)] = 72742, + [SMALL_STATE(2280)] = 72756, + [SMALL_STATE(2281)] = 72772, + [SMALL_STATE(2282)] = 72786, + [SMALL_STATE(2283)] = 72800, + [SMALL_STATE(2284)] = 72814, + [SMALL_STATE(2285)] = 72828, + [SMALL_STATE(2286)] = 72842, + [SMALL_STATE(2287)] = 72856, + [SMALL_STATE(2288)] = 72872, + [SMALL_STATE(2289)] = 72888, + [SMALL_STATE(2290)] = 72902, + [SMALL_STATE(2291)] = 72916, + [SMALL_STATE(2292)] = 72930, + [SMALL_STATE(2293)] = 72946, + [SMALL_STATE(2294)] = 72960, + [SMALL_STATE(2295)] = 72974, + [SMALL_STATE(2296)] = 72990, + [SMALL_STATE(2297)] = 73006, + [SMALL_STATE(2298)] = 73020, + [SMALL_STATE(2299)] = 73036, + [SMALL_STATE(2300)] = 73052, + [SMALL_STATE(2301)] = 73066, + [SMALL_STATE(2302)] = 73082, + [SMALL_STATE(2303)] = 73098, + [SMALL_STATE(2304)] = 73114, + [SMALL_STATE(2305)] = 73128, + [SMALL_STATE(2306)] = 73144, + [SMALL_STATE(2307)] = 73160, + [SMALL_STATE(2308)] = 73176, + [SMALL_STATE(2309)] = 73192, + [SMALL_STATE(2310)] = 73208, + [SMALL_STATE(2311)] = 73224, + [SMALL_STATE(2312)] = 73240, + [SMALL_STATE(2313)] = 73254, + [SMALL_STATE(2314)] = 73268, + [SMALL_STATE(2315)] = 73284, + [SMALL_STATE(2316)] = 73298, + [SMALL_STATE(2317)] = 73312, + [SMALL_STATE(2318)] = 73326, + [SMALL_STATE(2319)] = 73342, + [SMALL_STATE(2320)] = 73358, + [SMALL_STATE(2321)] = 73372, + [SMALL_STATE(2322)] = 73386, + [SMALL_STATE(2323)] = 73400, + [SMALL_STATE(2324)] = 73414, + [SMALL_STATE(2325)] = 73430, + [SMALL_STATE(2326)] = 73446, + [SMALL_STATE(2327)] = 73462, + [SMALL_STATE(2328)] = 73478, + [SMALL_STATE(2329)] = 73492, + [SMALL_STATE(2330)] = 73508, + [SMALL_STATE(2331)] = 73524, + [SMALL_STATE(2332)] = 73540, + [SMALL_STATE(2333)] = 73556, + [SMALL_STATE(2334)] = 73570, + [SMALL_STATE(2335)] = 73584, + [SMALL_STATE(2336)] = 73598, + [SMALL_STATE(2337)] = 73614, + [SMALL_STATE(2338)] = 73628, + [SMALL_STATE(2339)] = 73644, + [SMALL_STATE(2340)] = 73658, + [SMALL_STATE(2341)] = 73674, + [SMALL_STATE(2342)] = 73690, + [SMALL_STATE(2343)] = 73706, + [SMALL_STATE(2344)] = 73722, + [SMALL_STATE(2345)] = 73738, + [SMALL_STATE(2346)] = 73754, + [SMALL_STATE(2347)] = 73770, + [SMALL_STATE(2348)] = 73786, + [SMALL_STATE(2349)] = 73802, + [SMALL_STATE(2350)] = 73818, + [SMALL_STATE(2351)] = 73832, + [SMALL_STATE(2352)] = 73848, + [SMALL_STATE(2353)] = 73864, + [SMALL_STATE(2354)] = 73880, + [SMALL_STATE(2355)] = 73896, + [SMALL_STATE(2356)] = 73912, + [SMALL_STATE(2357)] = 73928, + [SMALL_STATE(2358)] = 73942, + [SMALL_STATE(2359)] = 73958, + [SMALL_STATE(2360)] = 73972, + [SMALL_STATE(2361)] = 73986, + [SMALL_STATE(2362)] = 74002, + [SMALL_STATE(2363)] = 74016, + [SMALL_STATE(2364)] = 74030, + [SMALL_STATE(2365)] = 74046, + [SMALL_STATE(2366)] = 74060, + [SMALL_STATE(2367)] = 74074, + [SMALL_STATE(2368)] = 74090, + [SMALL_STATE(2369)] = 74104, + [SMALL_STATE(2370)] = 74120, + [SMALL_STATE(2371)] = 74136, + [SMALL_STATE(2372)] = 74152, + [SMALL_STATE(2373)] = 74168, + [SMALL_STATE(2374)] = 74184, + [SMALL_STATE(2375)] = 74200, + [SMALL_STATE(2376)] = 74214, + [SMALL_STATE(2377)] = 74228, + [SMALL_STATE(2378)] = 74244, + [SMALL_STATE(2379)] = 74260, + [SMALL_STATE(2380)] = 74276, + [SMALL_STATE(2381)] = 74290, + [SMALL_STATE(2382)] = 74306, + [SMALL_STATE(2383)] = 74322, + [SMALL_STATE(2384)] = 74338, + [SMALL_STATE(2385)] = 74352, + [SMALL_STATE(2386)] = 74368, + [SMALL_STATE(2387)] = 74384, + [SMALL_STATE(2388)] = 74400, + [SMALL_STATE(2389)] = 74416, + [SMALL_STATE(2390)] = 74432, + [SMALL_STATE(2391)] = 74448, + [SMALL_STATE(2392)] = 74462, + [SMALL_STATE(2393)] = 74476, + [SMALL_STATE(2394)] = 74492, + [SMALL_STATE(2395)] = 74508, + [SMALL_STATE(2396)] = 74522, + [SMALL_STATE(2397)] = 74538, + [SMALL_STATE(2398)] = 74552, + [SMALL_STATE(2399)] = 74568, + [SMALL_STATE(2400)] = 74584, + [SMALL_STATE(2401)] = 74600, + [SMALL_STATE(2402)] = 74614, + [SMALL_STATE(2403)] = 74628, + [SMALL_STATE(2404)] = 74644, + [SMALL_STATE(2405)] = 74658, + [SMALL_STATE(2406)] = 74674, + [SMALL_STATE(2407)] = 74690, + [SMALL_STATE(2408)] = 74706, + [SMALL_STATE(2409)] = 74722, + [SMALL_STATE(2410)] = 74736, + [SMALL_STATE(2411)] = 74752, + [SMALL_STATE(2412)] = 74766, + [SMALL_STATE(2413)] = 74780, + [SMALL_STATE(2414)] = 74796, + [SMALL_STATE(2415)] = 74812, + [SMALL_STATE(2416)] = 74828, + [SMALL_STATE(2417)] = 74844, + [SMALL_STATE(2418)] = 74858, + [SMALL_STATE(2419)] = 74872, + [SMALL_STATE(2420)] = 74888, + [SMALL_STATE(2421)] = 74904, + [SMALL_STATE(2422)] = 74920, + [SMALL_STATE(2423)] = 74936, + [SMALL_STATE(2424)] = 74952, + [SMALL_STATE(2425)] = 74966, + [SMALL_STATE(2426)] = 74982, + [SMALL_STATE(2427)] = 74996, + [SMALL_STATE(2428)] = 75012, + [SMALL_STATE(2429)] = 75028, + [SMALL_STATE(2430)] = 75044, + [SMALL_STATE(2431)] = 75060, + [SMALL_STATE(2432)] = 75076, + [SMALL_STATE(2433)] = 75090, + [SMALL_STATE(2434)] = 75106, + [SMALL_STATE(2435)] = 75120, + [SMALL_STATE(2436)] = 75134, + [SMALL_STATE(2437)] = 75148, + [SMALL_STATE(2438)] = 75164, + [SMALL_STATE(2439)] = 75178, + [SMALL_STATE(2440)] = 75192, + [SMALL_STATE(2441)] = 75206, + [SMALL_STATE(2442)] = 75222, + [SMALL_STATE(2443)] = 75238, + [SMALL_STATE(2444)] = 75254, + [SMALL_STATE(2445)] = 75270, + [SMALL_STATE(2446)] = 75286, + [SMALL_STATE(2447)] = 75302, + [SMALL_STATE(2448)] = 75318, + [SMALL_STATE(2449)] = 75334, + [SMALL_STATE(2450)] = 75348, + [SMALL_STATE(2451)] = 75362, + [SMALL_STATE(2452)] = 75378, + [SMALL_STATE(2453)] = 75392, + [SMALL_STATE(2454)] = 75408, + [SMALL_STATE(2455)] = 75424, + [SMALL_STATE(2456)] = 75440, + [SMALL_STATE(2457)] = 75454, + [SMALL_STATE(2458)] = 75470, + [SMALL_STATE(2459)] = 75486, + [SMALL_STATE(2460)] = 75502, + [SMALL_STATE(2461)] = 75518, + [SMALL_STATE(2462)] = 75534, + [SMALL_STATE(2463)] = 75550, + [SMALL_STATE(2464)] = 75566, + [SMALL_STATE(2465)] = 75580, + [SMALL_STATE(2466)] = 75596, + [SMALL_STATE(2467)] = 75612, + [SMALL_STATE(2468)] = 75628, + [SMALL_STATE(2469)] = 75644, + [SMALL_STATE(2470)] = 75658, + [SMALL_STATE(2471)] = 75674, + [SMALL_STATE(2472)] = 75690, + [SMALL_STATE(2473)] = 75706, + [SMALL_STATE(2474)] = 75720, + [SMALL_STATE(2475)] = 75736, + [SMALL_STATE(2476)] = 75752, + [SMALL_STATE(2477)] = 75766, + [SMALL_STATE(2478)] = 75782, + [SMALL_STATE(2479)] = 75798, + [SMALL_STATE(2480)] = 75812, + [SMALL_STATE(2481)] = 75828, + [SMALL_STATE(2482)] = 75844, + [SMALL_STATE(2483)] = 75860, + [SMALL_STATE(2484)] = 75876, + [SMALL_STATE(2485)] = 75890, + [SMALL_STATE(2486)] = 75906, + [SMALL_STATE(2487)] = 75922, + [SMALL_STATE(2488)] = 75938, + [SMALL_STATE(2489)] = 75952, + [SMALL_STATE(2490)] = 75965, + [SMALL_STATE(2491)] = 75978, + [SMALL_STATE(2492)] = 75991, + [SMALL_STATE(2493)] = 76004, + [SMALL_STATE(2494)] = 76017, + [SMALL_STATE(2495)] = 76030, + [SMALL_STATE(2496)] = 76043, + [SMALL_STATE(2497)] = 76056, + [SMALL_STATE(2498)] = 76069, + [SMALL_STATE(2499)] = 76082, + [SMALL_STATE(2500)] = 76095, + [SMALL_STATE(2501)] = 76108, + [SMALL_STATE(2502)] = 76121, + [SMALL_STATE(2503)] = 76134, + [SMALL_STATE(2504)] = 76147, + [SMALL_STATE(2505)] = 76160, + [SMALL_STATE(2506)] = 76173, + [SMALL_STATE(2507)] = 76186, + [SMALL_STATE(2508)] = 76199, + [SMALL_STATE(2509)] = 76212, + [SMALL_STATE(2510)] = 76225, + [SMALL_STATE(2511)] = 76238, + [SMALL_STATE(2512)] = 76251, + [SMALL_STATE(2513)] = 76264, + [SMALL_STATE(2514)] = 76277, + [SMALL_STATE(2515)] = 76290, + [SMALL_STATE(2516)] = 76303, + [SMALL_STATE(2517)] = 76316, + [SMALL_STATE(2518)] = 76329, + [SMALL_STATE(2519)] = 76342, + [SMALL_STATE(2520)] = 76355, + [SMALL_STATE(2521)] = 76368, + [SMALL_STATE(2522)] = 76381, + [SMALL_STATE(2523)] = 76394, + [SMALL_STATE(2524)] = 76407, + [SMALL_STATE(2525)] = 76420, + [SMALL_STATE(2526)] = 76433, + [SMALL_STATE(2527)] = 76446, + [SMALL_STATE(2528)] = 76459, + [SMALL_STATE(2529)] = 76472, + [SMALL_STATE(2530)] = 76485, + [SMALL_STATE(2531)] = 76498, + [SMALL_STATE(2532)] = 76511, + [SMALL_STATE(2533)] = 76524, + [SMALL_STATE(2534)] = 76537, + [SMALL_STATE(2535)] = 76550, + [SMALL_STATE(2536)] = 76563, + [SMALL_STATE(2537)] = 76576, + [SMALL_STATE(2538)] = 76589, + [SMALL_STATE(2539)] = 76602, + [SMALL_STATE(2540)] = 76615, + [SMALL_STATE(2541)] = 76628, + [SMALL_STATE(2542)] = 76641, + [SMALL_STATE(2543)] = 76654, + [SMALL_STATE(2544)] = 76667, + [SMALL_STATE(2545)] = 76680, + [SMALL_STATE(2546)] = 76693, + [SMALL_STATE(2547)] = 76706, + [SMALL_STATE(2548)] = 76719, + [SMALL_STATE(2549)] = 76732, + [SMALL_STATE(2550)] = 76745, + [SMALL_STATE(2551)] = 76758, + [SMALL_STATE(2552)] = 76771, + [SMALL_STATE(2553)] = 76784, + [SMALL_STATE(2554)] = 76797, + [SMALL_STATE(2555)] = 76810, + [SMALL_STATE(2556)] = 76823, + [SMALL_STATE(2557)] = 76836, + [SMALL_STATE(2558)] = 76849, + [SMALL_STATE(2559)] = 76862, + [SMALL_STATE(2560)] = 76875, + [SMALL_STATE(2561)] = 76888, + [SMALL_STATE(2562)] = 76901, + [SMALL_STATE(2563)] = 76914, + [SMALL_STATE(2564)] = 76927, + [SMALL_STATE(2565)] = 76940, + [SMALL_STATE(2566)] = 76953, + [SMALL_STATE(2567)] = 76966, + [SMALL_STATE(2568)] = 76979, + [SMALL_STATE(2569)] = 76992, + [SMALL_STATE(2570)] = 77005, + [SMALL_STATE(2571)] = 77018, + [SMALL_STATE(2572)] = 77031, + [SMALL_STATE(2573)] = 77044, + [SMALL_STATE(2574)] = 77057, + [SMALL_STATE(2575)] = 77070, + [SMALL_STATE(2576)] = 77083, + [SMALL_STATE(2577)] = 77096, + [SMALL_STATE(2578)] = 77109, + [SMALL_STATE(2579)] = 77122, + [SMALL_STATE(2580)] = 77135, + [SMALL_STATE(2581)] = 77148, + [SMALL_STATE(2582)] = 77161, + [SMALL_STATE(2583)] = 77174, + [SMALL_STATE(2584)] = 77187, + [SMALL_STATE(2585)] = 77200, + [SMALL_STATE(2586)] = 77213, + [SMALL_STATE(2587)] = 77226, + [SMALL_STATE(2588)] = 77239, + [SMALL_STATE(2589)] = 77252, + [SMALL_STATE(2590)] = 77265, + [SMALL_STATE(2591)] = 77278, + [SMALL_STATE(2592)] = 77291, + [SMALL_STATE(2593)] = 77304, + [SMALL_STATE(2594)] = 77317, + [SMALL_STATE(2595)] = 77330, + [SMALL_STATE(2596)] = 77343, + [SMALL_STATE(2597)] = 77356, + [SMALL_STATE(2598)] = 77369, + [SMALL_STATE(2599)] = 77382, + [SMALL_STATE(2600)] = 77395, + [SMALL_STATE(2601)] = 77408, + [SMALL_STATE(2602)] = 77421, + [SMALL_STATE(2603)] = 77434, + [SMALL_STATE(2604)] = 77447, + [SMALL_STATE(2605)] = 77460, + [SMALL_STATE(2606)] = 77473, + [SMALL_STATE(2607)] = 77486, + [SMALL_STATE(2608)] = 77499, + [SMALL_STATE(2609)] = 77512, + [SMALL_STATE(2610)] = 77525, + [SMALL_STATE(2611)] = 77538, + [SMALL_STATE(2612)] = 77551, + [SMALL_STATE(2613)] = 77564, + [SMALL_STATE(2614)] = 77577, + [SMALL_STATE(2615)] = 77590, + [SMALL_STATE(2616)] = 77603, + [SMALL_STATE(2617)] = 77616, + [SMALL_STATE(2618)] = 77629, + [SMALL_STATE(2619)] = 77642, + [SMALL_STATE(2620)] = 77655, + [SMALL_STATE(2621)] = 77668, + [SMALL_STATE(2622)] = 77681, + [SMALL_STATE(2623)] = 77694, + [SMALL_STATE(2624)] = 77707, + [SMALL_STATE(2625)] = 77720, + [SMALL_STATE(2626)] = 77733, + [SMALL_STATE(2627)] = 77746, + [SMALL_STATE(2628)] = 77759, + [SMALL_STATE(2629)] = 77772, + [SMALL_STATE(2630)] = 77785, + [SMALL_STATE(2631)] = 77798, + [SMALL_STATE(2632)] = 77811, + [SMALL_STATE(2633)] = 77824, + [SMALL_STATE(2634)] = 77837, + [SMALL_STATE(2635)] = 77850, + [SMALL_STATE(2636)] = 77863, + [SMALL_STATE(2637)] = 77876, + [SMALL_STATE(2638)] = 77889, + [SMALL_STATE(2639)] = 77902, + [SMALL_STATE(2640)] = 77915, + [SMALL_STATE(2641)] = 77928, + [SMALL_STATE(2642)] = 77941, + [SMALL_STATE(2643)] = 77954, + [SMALL_STATE(2644)] = 77967, + [SMALL_STATE(2645)] = 77980, + [SMALL_STATE(2646)] = 77993, + [SMALL_STATE(2647)] = 78006, + [SMALL_STATE(2648)] = 78019, + [SMALL_STATE(2649)] = 78032, + [SMALL_STATE(2650)] = 78045, + [SMALL_STATE(2651)] = 78058, + [SMALL_STATE(2652)] = 78071, + [SMALL_STATE(2653)] = 78084, + [SMALL_STATE(2654)] = 78097, + [SMALL_STATE(2655)] = 78110, + [SMALL_STATE(2656)] = 78123, + [SMALL_STATE(2657)] = 78136, + [SMALL_STATE(2658)] = 78149, + [SMALL_STATE(2659)] = 78162, + [SMALL_STATE(2660)] = 78175, + [SMALL_STATE(2661)] = 78188, + [SMALL_STATE(2662)] = 78201, + [SMALL_STATE(2663)] = 78214, + [SMALL_STATE(2664)] = 78227, + [SMALL_STATE(2665)] = 78240, + [SMALL_STATE(2666)] = 78253, + [SMALL_STATE(2667)] = 78266, + [SMALL_STATE(2668)] = 78279, + [SMALL_STATE(2669)] = 78292, + [SMALL_STATE(2670)] = 78305, + [SMALL_STATE(2671)] = 78318, + [SMALL_STATE(2672)] = 78331, + [SMALL_STATE(2673)] = 78344, + [SMALL_STATE(2674)] = 78357, + [SMALL_STATE(2675)] = 78370, + [SMALL_STATE(2676)] = 78383, + [SMALL_STATE(2677)] = 78396, + [SMALL_STATE(2678)] = 78409, + [SMALL_STATE(2679)] = 78422, + [SMALL_STATE(2680)] = 78435, + [SMALL_STATE(2681)] = 78448, + [SMALL_STATE(2682)] = 78461, + [SMALL_STATE(2683)] = 78474, + [SMALL_STATE(2684)] = 78487, + [SMALL_STATE(2685)] = 78500, + [SMALL_STATE(2686)] = 78513, + [SMALL_STATE(2687)] = 78526, + [SMALL_STATE(2688)] = 78539, + [SMALL_STATE(2689)] = 78552, + [SMALL_STATE(2690)] = 78565, + [SMALL_STATE(2691)] = 78578, + [SMALL_STATE(2692)] = 78591, + [SMALL_STATE(2693)] = 78604, + [SMALL_STATE(2694)] = 78617, + [SMALL_STATE(2695)] = 78630, + [SMALL_STATE(2696)] = 78643, + [SMALL_STATE(2697)] = 78656, + [SMALL_STATE(2698)] = 78669, + [SMALL_STATE(2699)] = 78682, + [SMALL_STATE(2700)] = 78695, + [SMALL_STATE(2701)] = 78708, + [SMALL_STATE(2702)] = 78721, + [SMALL_STATE(2703)] = 78734, + [SMALL_STATE(2704)] = 78747, + [SMALL_STATE(2705)] = 78760, + [SMALL_STATE(2706)] = 78773, + [SMALL_STATE(2707)] = 78786, + [SMALL_STATE(2708)] = 78799, + [SMALL_STATE(2709)] = 78812, + [SMALL_STATE(2710)] = 78825, + [SMALL_STATE(2711)] = 78838, + [SMALL_STATE(2712)] = 78842, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -141819,2417 +141787,2424 @@ static const TSParseActionEntry ts_parse_actions[] = { [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [13] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [15] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(790), - [18] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [20] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(462), - [23] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1440), - [26] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1953), - [29] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1779), - [32] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1423), - [35] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1545), - [38] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1056), - [41] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2241), - [44] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(26), - [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2692), - [50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2690), - [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2688), - [56] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2684), - [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1285), - [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1317), - [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1350), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1349), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1936), - [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(95), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2678), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(197), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2677), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2676), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1110), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2248), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2674), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(189), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(190), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(194), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(236), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2249), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(83), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2672), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2671), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2252), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2253), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2258), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(240), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(240), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(242), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(571), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(243), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(664), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(816), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2666), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(105), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(755), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1138), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1141), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1445), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1935), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1384), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1960), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1404), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1767), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(88), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(251), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(252), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(254), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(271), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 135), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 135), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 135), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 135), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2699), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2325), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2708), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2640), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2305), - [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(736), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(860), - [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 3), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 3), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 3), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2496), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2477), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 19), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 19), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 19), SHIFT(2314), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 19), SHIFT(78), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 48), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 48), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 48), SHIFT(2314), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 48), SHIFT(78), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 92), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 92), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 92), SHIFT_REPEAT(2314), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 3), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 3), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 167), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 167), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 185), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 185), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 98), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 98), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 171), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 171), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 151), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 151), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 43), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 43), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 177), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 177), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 178), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 178), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 64), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 64), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 152), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 152), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 110), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 110), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 140), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 140), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 108), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 108), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 13), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 13), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 89), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 89), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 187), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 187), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 141), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 141), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 153), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 153), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 13), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 13), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 19), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 19), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 64), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 64), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 56), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 56), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 13), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 13), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 140), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 140), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, .production_id = 100), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, .production_id = 100), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 47), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 47), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 48), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 48), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4, .production_id = 41), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4, .production_id = 41), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 187), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 187), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 168), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 168), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 89), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 89), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 132), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 132), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 178), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 178), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 97), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 97), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, .production_id = 41), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, .production_id = 41), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 177), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 177), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 141), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 141), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 98), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 98), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 6, .production_id = 100), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 6, .production_id = 100), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 171), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 171), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 88), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 88), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 43), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 43), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 150), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 150), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 108), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 108), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 47), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 47), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 46), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 46), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 10), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 10), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 110), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 110), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 153), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 153), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 91), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 91), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 19), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 19), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 90), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 90), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 19), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 19), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 28), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 28), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1, .production_id = 1), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1, .production_id = 1), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 152), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 152), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 151), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 151), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 13), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 13), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 19), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 19), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 3), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 3), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 176), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 176), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 43), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 43), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 91), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 91), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 19), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 19), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 12), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 12), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 64), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 64), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 13), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 13), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 43), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 43), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 13), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 13), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 108), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 108), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 3), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 3), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 168), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 168), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 25), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 25), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 26), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 26), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 26), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 26), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 45), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 45), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 103), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 103), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 103), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 103), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 9), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 9), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 143), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 143), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 61), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 61), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 143), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 143), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 62), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 62), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 62), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 62), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 142), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 142), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), - [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2549), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 23), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 23), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 5, .production_id = 102), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 5, .production_id = 102), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), - [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1449), - [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(755), - [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1987), - [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2241), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(99), - [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2623), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(131), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1854), - [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1378), - [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2175), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1697), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, .production_id = 52), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, .production_id = 52), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, .production_id = 170), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, .production_id = 170), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, .production_id = 169), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, .production_id = 169), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 18), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 18), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, .production_id = 18), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, .production_id = 18), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, .production_id = 20), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, .production_id = 20), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 18), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 18), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, .production_id = 139), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, .production_id = 139), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, .production_id = 138), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, .production_id = 138), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 95), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 95), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, .production_id = 94), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, .production_id = 94), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 93), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 93), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name, 2, .production_id = 53), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_name, 2, .production_id = 53), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 107), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 107), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, .production_id = 49), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, .production_id = 49), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 149), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 149), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 11), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 11), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 15), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 15), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 148), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 148), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 147), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 147), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 146), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 146), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 19), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 19), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 145), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 145), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 144), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 144), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 172), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 172), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 127), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 127), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 175), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 175), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 155), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 155), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 115), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 115), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 114), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 114), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 113), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 113), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 174), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 174), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_suppression_expression, 2), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_suppression_expression, 2), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2, .production_id = 5), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2, .production_id = 5), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 173), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 173), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 68), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 68), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 106), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 106), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 105), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 105), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 104), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 104), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, .production_id = 49), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, .production_id = 49), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 186), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 186), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, .production_id = 49), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, .production_id = 49), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 84), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 84), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 83), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 83), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 82), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 82), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 63), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 63), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 70), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 70), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 29), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 29), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 39), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 39), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 40), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 40), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 69), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 69), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 49), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 49), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 59), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 59), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 23), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 24), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 22), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 101), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 101), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, .production_id = 60), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1319), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1285), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1317), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1322), - [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1321), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1313), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 30), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 116), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 7, .production_id = 188), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 96), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 159), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 158), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 157), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 156), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 126), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 54), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 55), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1319), - [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1482), - [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1606), - [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1134), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1285), - [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1317), - [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1322), - [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1321), - [2565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1313), - [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1445), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 179), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 180), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 181), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 182), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 80), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 120), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 133), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 163), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 134), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 161), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 118), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1488), - [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1482), - [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1606), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(2538), - [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1533), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1520), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1551), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1489), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1508), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1445), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1448), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 1), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 1), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(362), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1456), - [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1475), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1366), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1782), - [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1475), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_heredoc_body, 2), SHIFT(1366), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), - [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(362), - [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1456), - [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1475), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1782), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1475), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), - [2928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1445), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1488), - [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1533), - [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1520), - [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1551), - [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1489), - [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1508), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 129), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 131), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 10), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 130), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 28), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 86), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 166), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 165), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(279), - [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1588), - [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1589), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1589), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), - [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1719), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 164), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 128), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, .production_id = 12), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 41), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, .production_id = 76), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(286), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1676), - [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1676), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), - [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1731), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 1), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_member_declaration, 1), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 85), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 87), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 42), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1, .production_id = 1), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 164), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 183), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 41), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, .production_id = 184), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 183), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, .production_id = 189), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3142] = {.entry = {.count = 4, .reusable = false}}, REDUCE(sym__type, 1), REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), REDUCE(sym_disjunctive_normal_form_type, 1, .dynamic_precedence = -1), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3149] = {.entry = {.count = 4, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), REDUCE(sym_disjunctive_normal_form_type, 1, .dynamic_precedence = -1), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types, 1), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, .production_id = 8), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, .production_id = 8), - [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 26), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 26), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_intersection_type_repeat1, 2), - [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1340), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [3231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 7), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 7), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 3, .dynamic_precedence = -1), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 3, .dynamic_precedence = -1), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 2, .dynamic_precedence = -1), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 2, .dynamic_precedence = -1), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 4, .dynamic_precedence = -1), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 4, .dynamic_precedence = -1), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1345), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), - [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1332), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2687), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2265), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1), - [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 7), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 7), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(244), - [3478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2284), - [3481] = {.entry = {.count = 5, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), REDUCE(sym_disjunctive_normal_form_type, 1, .dynamic_precedence = -1), SHIFT(1341), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 48), SHIFT(2329), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 48), SHIFT(85), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 19), SHIFT(2329), - [3552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 19), SHIFT(85), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 92), SHIFT_REPEAT(2329), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 92), - [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 92), SHIFT_REPEAT(2308), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 92), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1326), - [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1342), - [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1344), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), - [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2581), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 14), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2581), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1335), - [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1343), - [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2581), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), - [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1818), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2549), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 36), - [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1477), - [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1795), - [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1341), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(2044), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2), SHIFT(1341), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1453), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1678), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), - [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(2041), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), SHIFT_REPEAT(2073), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1567), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), - [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(1954), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2032), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1472), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 2), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), SHIFT_REPEAT(1452), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(151), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 125), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 123), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 122), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 117), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, .production_id = 4), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, .production_id = 6), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 19), - [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 19), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 111), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(157), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), - [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(331), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 2), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 1), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 16), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 81), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 1), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(148), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 137), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 38), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 35), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 21), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 27), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 160), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(143), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 51), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 31), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 32), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 33), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 34), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(848), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 137), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 46), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 46), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 79), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 78), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 77), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 50), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 75), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 51), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(693), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1737), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 73), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 72), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(156), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, .production_id = 51), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(149), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 67), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 65), - [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1810), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 57), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 162), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(2343), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), REDUCE(sym_array_element_initializer, 3), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 71), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 74), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 76), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 124), - [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(2343), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 121), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 119), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), REDUCE(sym_array_element_initializer, 1), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2549), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 12), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 4), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 136), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, .production_id = 154), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 17), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 109), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 112), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 3), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 99), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 44), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_array_access_argument, 1), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 66), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 58), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5033] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [15] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [17] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(790), + [20] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [22] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(462), + [25] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1440), + [28] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1953), + [31] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1779), + [34] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1423), + [37] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1545), + [40] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1056), + [43] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2241), + [46] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(26), + [49] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2692), + [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2690), + [55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2688), + [58] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2684), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1285), + [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1317), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1350), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1349), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1936), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(95), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2678), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(197), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2677), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2676), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1110), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2248), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2674), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(189), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(190), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(194), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(236), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2249), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(83), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2672), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2671), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2252), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2253), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2258), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(240), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(240), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(242), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(571), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(243), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(664), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(816), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2666), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(105), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(755), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1138), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1141), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1445), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1935), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1384), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1960), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1404), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1767), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(88), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(251), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(252), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(254), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(271), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 135), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 135), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), + [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), + [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 135), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 135), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), + [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2699), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2325), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2708), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2640), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2305), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(736), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(860), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 3), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 3), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 3), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2496), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2477), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 19), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 19), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 19), SHIFT(2314), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 19), SHIFT(78), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 48), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 48), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 48), SHIFT(2314), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 48), SHIFT(78), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 92), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 92), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 92), SHIFT_REPEAT(2314), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 3), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 3), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 167), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 167), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 185), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 185), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 98), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 98), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 171), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 171), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 151), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 151), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 43), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 43), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 177), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 177), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 178), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 178), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 64), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 64), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 152), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 152), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 110), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 110), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 140), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 140), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 108), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 108), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 13), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 13), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 89), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 89), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 187), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 187), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 141), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 141), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 153), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 153), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 13), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 13), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 19), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 19), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 64), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 64), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 56), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 56), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 13), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 13), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 140), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 140), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, .production_id = 100), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, .production_id = 100), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 47), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 47), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 48), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 48), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4, .production_id = 41), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4, .production_id = 41), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 187), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 187), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 168), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 168), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 89), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 89), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 132), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 132), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 178), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 178), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 97), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 97), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, .production_id = 41), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, .production_id = 41), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 177), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 177), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 141), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 141), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 98), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 98), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 6, .production_id = 100), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 6, .production_id = 100), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 171), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 171), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 88), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 88), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 43), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 43), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 150), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 150), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 108), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 108), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 47), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 47), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 46), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 46), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 10), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 10), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 110), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 110), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 153), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 153), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 91), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 91), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 19), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 19), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 90), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 90), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 19), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 19), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 28), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 28), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1, .production_id = 1), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1, .production_id = 1), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 152), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 152), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 151), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 151), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 13), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 13), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 19), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 19), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 3), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 3), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 176), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 176), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 43), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 43), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 91), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 91), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 19), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 19), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 12), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 12), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 64), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 64), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 13), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 13), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 43), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 43), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 13), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 13), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 108), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 108), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 3), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 3), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 168), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 168), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 25), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 25), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 26), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 26), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 26), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 26), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 45), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 45), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 103), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 103), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 103), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 103), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 9), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 9), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 143), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 143), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 61), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 61), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 143), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 143), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 62), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 62), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 62), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 62), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 142), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 142), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), + [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2549), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 23), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 23), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 5, .production_id = 102), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 5, .production_id = 102), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1449), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(755), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1987), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2241), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(99), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2623), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(131), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1854), + [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1378), + [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2175), + [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1697), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, .production_id = 52), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, .production_id = 52), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, .production_id = 170), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, .production_id = 170), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, .production_id = 169), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, .production_id = 169), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 18), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 18), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, .production_id = 18), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, .production_id = 18), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, .production_id = 20), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, .production_id = 20), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 18), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 18), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, .production_id = 139), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, .production_id = 139), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, .production_id = 138), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, .production_id = 138), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 95), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 95), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, .production_id = 94), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, .production_id = 94), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 93), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 93), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name, 2, .production_id = 53), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_name, 2, .production_id = 53), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 107), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 107), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, .production_id = 49), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, .production_id = 49), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 149), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 149), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 11), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 11), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 15), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 15), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 148), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 148), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 147), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 147), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 146), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 146), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 19), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 19), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 145), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 145), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 144), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 144), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 172), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 172), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 127), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 127), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 175), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 175), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 155), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 155), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 115), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 115), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 114), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 114), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 113), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 113), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 174), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 174), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_suppression_expression, 2), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_suppression_expression, 2), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2, .production_id = 5), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2, .production_id = 5), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 173), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 173), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 68), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 68), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 106), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 106), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 105), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 105), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 104), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 104), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, .production_id = 49), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, .production_id = 49), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 186), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 186), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, .production_id = 49), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, .production_id = 49), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 84), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 84), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 83), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 83), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 82), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 82), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 63), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 63), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 70), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 70), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 29), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 29), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 39), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 39), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 40), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 40), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 69), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 69), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 49), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 49), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 59), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 59), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 23), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 24), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 22), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 101), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 101), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, .production_id = 60), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1319), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1285), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1317), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1322), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1321), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1313), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 30), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 116), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 7, .production_id = 188), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 96), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 159), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 158), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 157), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 156), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 126), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 54), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 55), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1319), + [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1482), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1606), + [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1134), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1285), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1317), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1322), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1321), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1313), + [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1445), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 179), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 180), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 181), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 182), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 80), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 120), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 133), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 163), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 134), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 161), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 118), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1488), + [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1482), + [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1606), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), + [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(2538), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1533), + [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1520), + [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1551), + [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1489), + [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1508), + [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1445), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 1), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1448), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 1), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 1), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(362), + [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1456), + [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1475), + [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1366), + [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1782), + [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1475), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_heredoc_body, 2), SHIFT(1366), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), + [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(362), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1456), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1475), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), + [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1782), + [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1475), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1445), + [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1488), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1533), + [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1520), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1551), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1489), + [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1508), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 129), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 131), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 10), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 130), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 28), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 86), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 166), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 165), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(279), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1588), + [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1589), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1589), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1719), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 164), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 128), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, .production_id = 12), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 41), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, .production_id = 76), + [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(286), + [3069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1676), + [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1676), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), + [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1731), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 1), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_member_declaration, 1), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 85), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 87), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 42), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1, .production_id = 1), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 164), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 183), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 41), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, .production_id = 184), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 183), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, .production_id = 189), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3144] = {.entry = {.count = 4, .reusable = false}}, REDUCE(sym__type, 1), REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), REDUCE(sym_disjunctive_normal_form_type, 1, .dynamic_precedence = -1), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3151] = {.entry = {.count = 4, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), REDUCE(sym_disjunctive_normal_form_type, 1, .dynamic_precedence = -1), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types, 1), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, .production_id = 8), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, .production_id = 8), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 26), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 26), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_intersection_type_repeat1, 2), + [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1340), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), + [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 7), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 7), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 3, .dynamic_precedence = -1), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 3, .dynamic_precedence = -1), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 2, .dynamic_precedence = -1), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 2, .dynamic_precedence = -1), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 4, .dynamic_precedence = -1), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 4, .dynamic_precedence = -1), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1345), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), + [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1332), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2687), + [3450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2265), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1), + [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 7), + [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 7), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(244), + [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2284), + [3483] = {.entry = {.count = 5, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), REDUCE(sym_disjunctive_normal_form_type, 1, .dynamic_precedence = -1), SHIFT(1341), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 48), SHIFT(2329), + [3540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 48), SHIFT(85), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 19), SHIFT(2329), + [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 19), SHIFT(85), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), + [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 92), SHIFT_REPEAT(2329), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 92), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 92), SHIFT_REPEAT(2308), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 92), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1326), + [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1342), + [3727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1344), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), + [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2581), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 14), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2581), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1335), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1343), + [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2581), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), + [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), + [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1818), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1818), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2549), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 36), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1477), + [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1795), + [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1795), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1341), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(2044), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2), SHIFT(1341), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), + [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1453), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), + [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1678), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(2041), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), + [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), SHIFT_REPEAT(2073), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1567), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(1954), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2032), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2032), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1472), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 2), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), SHIFT_REPEAT(1452), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(151), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 125), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 123), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 122), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 117), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, .production_id = 4), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, .production_id = 6), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 19), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 19), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 111), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(157), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), + [4252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(331), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 2), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 1), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 16), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 81), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 1), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(148), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 137), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 38), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 35), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 21), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 27), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 160), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(143), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 51), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 31), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 32), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 33), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 34), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [4365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(848), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 137), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 46), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 46), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 79), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 78), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 77), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 50), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 75), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 51), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(693), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1737), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 73), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 72), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(156), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, .production_id = 51), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(149), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 67), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 65), + [4480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1810), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 57), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 162), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(2343), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), REDUCE(sym_array_element_initializer, 3), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 71), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 74), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 76), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 124), + [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(2343), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 121), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), + [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 119), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), REDUCE(sym_array_element_initializer, 1), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2549), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 12), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 4), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 136), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, .production_id = 154), + [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 17), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 109), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2), + [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 112), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 3), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 99), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 44), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_array_access_argument, 1), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 66), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 58), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5050] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), }; enum ts_external_scanner_symbol_identifiers { diff --git a/php_only/src/grammar.json b/php_only/src/grammar.json index e38269af..608b2bb0 100644 --- a/php_only/src/grammar.json +++ b/php_only/src/grammar.json @@ -93,8 +93,15 @@ } }, { - "type": "PATTERN", - "value": "[^\\s<][^<]*" + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\\s<][^<]*" + } + } } ] } @@ -7327,10 +7334,14 @@ "string_value": { "type": "TOKEN", "content": { - "type": "REPEAT1", + "type": "PREC", + "value": 1, "content": { - "type": "PATTERN", - "value": "\\\\?[^'\\\\]" + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "\\\\?[^'\\\\]" + } } } }, @@ -9014,71 +9025,67 @@ "comment": { "type": "TOKEN", "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "//" - }, - { - "type": "PATTERN", - "value": "#[^?\\[?\\r?\\n]" - } - ] - }, - { - "type": "REPEAT", - "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { "type": "PATTERN", - "value": "[^?\\r?\\n]|\\?[^>\\r\\n]" + "value": "#[^?\\[?\\r?\\n]" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\?\\r?\\n" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": "#" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/*" - }, - { + ] + }, + { + "type": "REPEAT", + "content": { "type": "PATTERN", - "value": "[^*]*\\*+([^/*][^*]*\\*+)*" - }, - { - "type": "STRING", - "value": "/" + "value": "[^?\\r?\\n]|\\?[^>\\r\\n]" } - ] - } - ] - } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "\\?\\r?\\n" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { + "type": "PATTERN", + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + { + "type": "STRING", + "value": "/" + } + ] + } + ] } }, "_semicolon": { diff --git a/php_only/src/parser.c b/php_only/src/parser.c index a46f8d7d..0f87fb6f 100644 --- a/php_only/src/parser.c +++ b/php_only/src/parser.c @@ -6612,91 +6612,91 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(76); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(184); - if (lookahead == '#') ADVANCE(272); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(83); - if (lookahead == '\'') ADVANCE(188); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); - if (lookahead == '*') ADVANCE(221); - if (lookahead == '+') ADVANCE(126); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(129); - if (lookahead == '.') ADVANCE(219); - if (lookahead == '/') ADVANCE(224); - if (lookahead == '0') ADVANCE(116); - if (lookahead == ':') ADVANCE(93); - if (lookahead == ';') ADVANCE(80); - if (lookahead == '<') ADVANCE(204); - if (lookahead == '=') ADVANCE(86); - if (lookahead == '>') ADVANCE(208); - if (lookahead == '?') ADVANCE(99); - if (lookahead == '@') ADVANCE(135); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(198); - if (lookahead == '_') ADVANCE(266); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(90); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(91); - if (lookahead == '~') ADVANCE(132); + if (eof) ADVANCE(75); + if (lookahead == '!') ADVANCE(133); + if (lookahead == '"') ADVANCE(183); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '%') ADVANCE(225); + if (lookahead == '&') ADVANCE(82); + if (lookahead == '\'') ADVANCE(187); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == '*') ADVANCE(220); + if (lookahead == '+') ADVANCE(125); + if (lookahead == ',') ADVANCE(84); + if (lookahead == '-') ADVANCE(128); + if (lookahead == '.') ADVANCE(218); + if (lookahead == '/') ADVANCE(223); + if (lookahead == '0') ADVANCE(115); + if (lookahead == ':') ADVANCE(92); + if (lookahead == ';') ADVANCE(79); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(85); + if (lookahead == '>') ADVANCE(207); + if (lookahead == '?') ADVANCE(98); + if (lookahead == '@') ADVANCE(134); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(88); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '^') ADVANCE(197); + if (lookahead == '_') ADVANCE(265); + if (lookahead == '`') ADVANCE(188); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(103); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(131); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(254); + lookahead == 'a') ADVANCE(253); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(227); + lookahead == 'b') ADVANCE(226); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(230); + lookahead == 'e') ADVANCE(229); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(231); + lookahead == 'f') ADVANCE(230); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(249); + lookahead == 'i') ADVANCE(248); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(264); + lookahead == 'n') ADVANCE(263); if (lookahead == 'S' || - lookahead == 's') ADVANCE(257); + lookahead == 's') ADVANCE(256); if (lookahead == 'T' || - lookahead == 't') ADVANCE(253); + lookahead == 't') ADVANCE(252); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(247); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + lookahead == 'u') ADVANCE(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(73) + lookahead == 65279) SKIP(72) if (('C' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(269); + if (lookahead == '\n') ADVANCE(268); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(269); + if (lookahead == '\n') ADVANCE(268); if (lookahead == '\r') ADVANCE(1); if (lookahead != 0 && - lookahead != '>') ADVANCE(270); + lookahead != '>') ADVANCE(269); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(185); - if (lookahead == '\r') ADVANCE(185); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '-') ADVANCE(39); + if (lookahead == '\n') ADVANCE(184); + if (lookahead == '\r') ADVANCE(184); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '-') ADVANCE(38); if (lookahead == '/') ADVANCE(25); - if (lookahead == '<') ADVANCE(44); - if (lookahead == '?') ADVANCE(41); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(63); - if (lookahead == '{') ADVANCE(90); + if (lookahead == '<') ADVANCE(43); + if (lookahead == '?') ADVANCE(40); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(62); + if (lookahead == '{') ADVANCE(89); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6705,18 +6705,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(4) END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(185); - if (lookahead == '\r') ADVANCE(185); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '-') ADVANCE(39); + if (lookahead == '\n') ADVANCE(184); + if (lookahead == '\r') ADVANCE(184); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '-') ADVANCE(38); if (lookahead == '/') ADVANCE(25); - if (lookahead == '<') ADVANCE(44); - if (lookahead == '?') ADVANCE(41); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(45); - if (lookahead == '{') ADVANCE(90); + if (lookahead == '<') ADVANCE(43); + if (lookahead == '?') ADVANCE(40); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(44); + if (lookahead == '{') ADVANCE(89); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6725,9 +6725,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(4) END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '\r') ADVANCE(186); - if (lookahead == '#') ADVANCE(273); + if (lookahead == '\n') ADVANCE(185); + if (lookahead == '\r') ADVANCE(185); + if (lookahead == '#') ADVANCE(272); if (lookahead == '/') ADVANCE(25); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || @@ -6737,53 +6737,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(5) END_STATE(); case 6: - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(272); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '%') ADVANCE(225); - if (lookahead == '&') ADVANCE(82); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); - if (lookahead == '*') ADVANCE(222); - if (lookahead == '+') ADVANCE(125); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(128); - if (lookahead == '.') ADVANCE(219); - if (lookahead == '/') ADVANCE(223); - if (lookahead == '0') ADVANCE(116); - if (lookahead == ':') ADVANCE(92); - if (lookahead == ';') ADVANCE(80); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '=') ADVANCE(38); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(102); - if (lookahead == '@') ADVANCE(135); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(197); - if (lookahead == '_') ADVANCE(266); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(91); - if (lookahead == '~') ADVANCE(132); + if (lookahead == '!') ADVANCE(133); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '%') ADVANCE(224); + if (lookahead == '&') ADVANCE(81); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == '*') ADVANCE(221); + if (lookahead == '+') ADVANCE(124); + if (lookahead == ',') ADVANCE(84); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '.') ADVANCE(218); + if (lookahead == '/') ADVANCE(222); + if (lookahead == '0') ADVANCE(115); + if (lookahead == ':') ADVANCE(91); + if (lookahead == ';') ADVANCE(79); + if (lookahead == '<') ADVANCE(204); + if (lookahead == '=') ADVANCE(37); + if (lookahead == '>') ADVANCE(208); + if (lookahead == '?') ADVANCE(101); + if (lookahead == '@') ADVANCE(134); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '^') ADVANCE(196); + if (lookahead == '_') ADVANCE(265); + if (lookahead == '`') ADVANCE(188); + if (lookahead == '|') ADVANCE(104); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(131); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(254); + lookahead == 'a') ADVANCE(253); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(228); + lookahead == 'b') ADVANCE(227); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(230); + lookahead == 'e') ADVANCE(229); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(232); + lookahead == 'f') ADVANCE(231); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(264); + lookahead == 'n') ADVANCE(263); if (lookahead == 'S' || - lookahead == 's') ADVANCE(262); + lookahead == 's') ADVANCE(261); if (lookahead == 'T' || - lookahead == 't') ADVANCE(253); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + lookahead == 't') ADVANCE(252); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6792,46 +6792,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(6) if (('C' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(133); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(272); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '&') ADVANCE(81); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); - if (lookahead == '+') ADVANCE(125); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(128); - if (lookahead == '.') ADVANCE(112); + if (lookahead == '!') ADVANCE(132); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == '+') ADVANCE(124); + if (lookahead == ',') ADVANCE(84); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '.') ADVANCE(111); if (lookahead == '/') ADVANCE(25); - if (lookahead == '0') ADVANCE(116); - if (lookahead == '<') ADVANCE(33); - if (lookahead == '@') ADVANCE(135); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '_') ADVANCE(266); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '~') ADVANCE(132); + if (lookahead == '0') ADVANCE(115); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '@') ADVANCE(134); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '_') ADVANCE(265); + if (lookahead == '`') ADVANCE(188); + if (lookahead == '~') ADVANCE(131); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(254); + lookahead == 'a') ADVANCE(253); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(228); + lookahead == 'b') ADVANCE(227); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(230); + lookahead == 'e') ADVANCE(229); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(232); + lookahead == 'f') ADVANCE(231); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(264); + lookahead == 'n') ADVANCE(263); if (lookahead == 'S' || - lookahead == 's') ADVANCE(262); + lookahead == 's') ADVANCE(261); if (lookahead == 'T' || - lookahead == 't') ADVANCE(253); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + lookahead == 't') ADVANCE(252); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6841,46 +6841,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(133); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(272); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '(') ADVANCE(95); - if (lookahead == '+') ADVANCE(125); - if (lookahead == '-') ADVANCE(128); - if (lookahead == '.') ADVANCE(113); + if (lookahead == '!') ADVANCE(132); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '(') ADVANCE(94); + if (lookahead == '+') ADVANCE(124); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '.') ADVANCE(112); if (lookahead == '/') ADVANCE(25); - if (lookahead == '0') ADVANCE(116); - if (lookahead == '<') ADVANCE(33); - if (lookahead == '@') ADVANCE(135); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == '_') ADVANCE(266); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '~') ADVANCE(132); + if (lookahead == '0') ADVANCE(115); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '@') ADVANCE(134); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == '_') ADVANCE(265); + if (lookahead == '`') ADVANCE(188); + if (lookahead == '~') ADVANCE(131); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(254); + lookahead == 'a') ADVANCE(253); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(227); + lookahead == 'b') ADVANCE(226); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(230); + lookahead == 'e') ADVANCE(229); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(231); + lookahead == 'f') ADVANCE(230); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(249); + lookahead == 'i') ADVANCE(248); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(264); + lookahead == 'n') ADVANCE(263); if (lookahead == 'S' || - lookahead == 's') ADVANCE(257); + lookahead == 's') ADVANCE(256); if (lookahead == 'T' || - lookahead == 't') ADVANCE(253); + lookahead == 't') ADVANCE(252); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(247); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + lookahead == 'u') ADVANCE(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6890,181 +6890,194 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(37); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '%') ADVANCE(225); - if (lookahead == '&') ADVANCE(82); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); - if (lookahead == '*') ADVANCE(222); - if (lookahead == '+') ADVANCE(124); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(131); - if (lookahead == '.') ADVANCE(218); - if (lookahead == '/') ADVANCE(223); - if (lookahead == ':') ADVANCE(93); - if (lookahead == ';') ADVANCE(80); - if (lookahead == '<') ADVANCE(207); - if (lookahead == '=') ADVANCE(38); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(101); - if (lookahead == '[') ADVANCE(154); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(197); - if (lookahead == '{') ADVANCE(90); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(91); + if (lookahead == '!') ADVANCE(36); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '%') ADVANCE(224); + if (lookahead == '&') ADVANCE(81); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == '*') ADVANCE(221); + if (lookahead == '+') ADVANCE(123); + if (lookahead == ',') ADVANCE(84); + if (lookahead == '-') ADVANCE(130); + if (lookahead == '.') ADVANCE(217); + if (lookahead == '/') ADVANCE(222); + if (lookahead == ':') ADVANCE(92); + if (lookahead == ';') ADVANCE(79); + if (lookahead == '<') ADVANCE(206); + if (lookahead == '=') ADVANCE(37); + if (lookahead == '>') ADVANCE(208); + if (lookahead == '?') ADVANCE(100); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(62); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '^') ADVANCE(196); + if (lookahead == '`') ADVANCE(188); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(104); + if (lookahead == '}') ADVANCE(90); if (lookahead == 'S' || - lookahead == 's') ADVANCE(262); + lookahead == 's') ADVANCE(261); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(9) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || + lookahead == 65279) SKIP(10) + if (('A' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(37); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(83); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); + if (lookahead == '!') ADVANCE(36); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '%') ADVANCE(224); + if (lookahead == '&') ADVANCE(81); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); if (lookahead == '*') ADVANCE(221); - if (lookahead == '+') ADVANCE(126); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(129); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(224); - if (lookahead == ':') ADVANCE(93); - if (lookahead == ';') ADVANCE(80); + if (lookahead == '+') ADVANCE(123); + if (lookahead == ',') ADVANCE(84); + if (lookahead == '-') ADVANCE(130); + if (lookahead == '.') ADVANCE(217); + if (lookahead == '/') ADVANCE(222); + if (lookahead == ':') ADVANCE(92); + if (lookahead == ';') ADVANCE(79); if (lookahead == '<') ADVANCE(206); - if (lookahead == '=') ADVANCE(86); + if (lookahead == '=') ADVANCE(37); if (lookahead == '>') ADVANCE(208); if (lookahead == '?') ADVANCE(100); - if (lookahead == '[') ADVANCE(154); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(198); - if (lookahead == '{') ADVANCE(90); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(44); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '^') ADVANCE(196); + if (lookahead == '`') ADVANCE(188); + if (lookahead == '{') ADVANCE(89); if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(91); + if (lookahead == '}') ADVANCE(90); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(261); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(10) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || + if (('A' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(37); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '%') ADVANCE(225); - if (lookahead == '&') ADVANCE(82); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); - if (lookahead == '*') ADVANCE(222); - if (lookahead == '+') ADVANCE(125); - if (lookahead == ',') ADVANCE(85); + if (lookahead == '!') ADVANCE(36); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '%') ADVANCE(224); + if (lookahead == '&') ADVANCE(81); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == '*') ADVANCE(221); + if (lookahead == '+') ADVANCE(123); + if (lookahead == ',') ADVANCE(84); if (lookahead == '-') ADVANCE(130); - if (lookahead == '.') ADVANCE(218); - if (lookahead == '/') ADVANCE(223); - if (lookahead == ':') ADVANCE(93); - if (lookahead == ';') ADVANCE(80); - if (lookahead == '<') ADVANCE(207); - if (lookahead == '=') ADVANCE(38); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(101); - if (lookahead == '[') ADVANCE(154); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(197); - if (lookahead == '{') ADVANCE(90); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(91); + if (lookahead == '.') ADVANCE(217); + if (lookahead == '/') ADVANCE(222); + if (lookahead == '0') ADVANCE(120); + if (lookahead == ':') ADVANCE(92); + if (lookahead == ';') ADVANCE(79); + if (lookahead == '<') ADVANCE(206); + if (lookahead == '=') ADVANCE(85); + if (lookahead == '>') ADVANCE(208); + if (lookahead == '?') ADVANCE(100); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '^') ADVANCE(196); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(104); + if (lookahead == '}') ADVANCE(90); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(11) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || + if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(37); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '%') ADVANCE(225); - if (lookahead == '&') ADVANCE(82); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); - if (lookahead == '*') ADVANCE(222); - if (lookahead == '+') ADVANCE(124); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(131); - if (lookahead == '.') ADVANCE(218); - if (lookahead == '/') ADVANCE(223); - if (lookahead == ':') ADVANCE(93); - if (lookahead == ';') ADVANCE(80); - if (lookahead == '<') ADVANCE(207); - if (lookahead == '=') ADVANCE(86); - if (lookahead == '>') ADVANCE(209); + if (lookahead == '!') ADVANCE(36); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '%') ADVANCE(224); + if (lookahead == '&') ADVANCE(81); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == '*') ADVANCE(221); + if (lookahead == '+') ADVANCE(123); + if (lookahead == ',') ADVANCE(84); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(217); + if (lookahead == '/') ADVANCE(222); + if (lookahead == ':') ADVANCE(91); + if (lookahead == ';') ADVANCE(79); + if (lookahead == '<') ADVANCE(206); + if (lookahead == '=') ADVANCE(37); + if (lookahead == '>') ADVANCE(208); if (lookahead == '?') ADVANCE(101); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(197); - if (lookahead == '{') ADVANCE(90); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(91); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '^') ADVANCE(196); + if (lookahead == '|') ADVANCE(104); + if (lookahead == '}') ADVANCE(90); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(12) - if (('A' <= lookahead && lookahead <= '_') || + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(37); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '%') ADVANCE(225); - if (lookahead == '&') ADVANCE(82); - if (lookahead == ')') ADVANCE(96); - if (lookahead == '*') ADVANCE(222); + if (lookahead == '!') ADVANCE(36); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '%') ADVANCE(224); + if (lookahead == '&') ADVANCE(81); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == '*') ADVANCE(221); if (lookahead == '+') ADVANCE(124); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(127); - if (lookahead == '.') ADVANCE(218); - if (lookahead == '/') ADVANCE(223); + if (lookahead == ',') ADVANCE(84); + if (lookahead == '-') ADVANCE(129); + if (lookahead == '.') ADVANCE(217); + if (lookahead == '/') ADVANCE(222); if (lookahead == ':') ADVANCE(92); - if (lookahead == ';') ADVANCE(80); - if (lookahead == '<') ADVANCE(207); - if (lookahead == '=') ADVANCE(38); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(102); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(197); - if (lookahead == '|') ADVANCE(105); - if (lookahead == '}') ADVANCE(91); + if (lookahead == ';') ADVANCE(79); + if (lookahead == '<') ADVANCE(206); + if (lookahead == '=') ADVANCE(37); + if (lookahead == '>') ADVANCE(208); + if (lookahead == '?') ADVANCE(100); + if (lookahead == '[') ADVANCE(153); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '^') ADVANCE(196); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(104); + if (lookahead == '}') ADVANCE(90); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7075,28 +7088,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(184); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '&') ADVANCE(81); - if (lookahead == '\'') ADVANCE(188); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(127); - if (lookahead == '.') ADVANCE(30); + if (lookahead == '"') ADVANCE(183); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '\'') ADVANCE(187); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == '.') ADVANCE(29); if (lookahead == '/') ADVANCE(25); - if (lookahead == '0') ADVANCE(121); - if (lookahead == ':') ADVANCE(92); - if (lookahead == ';') ADVANCE(80); - if (lookahead == '=') ADVANCE(40); - if (lookahead == '?') ADVANCE(98); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == '{') ADVANCE(90); - if (lookahead == '}') ADVANCE(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (lookahead == '=') ADVANCE(86); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(102); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(261); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7107,28 +7118,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(170); - if (lookahead == '\'') ADVANCE(172); + if (lookahead == '"') ADVANCE(169); + if (lookahead == '\'') ADVANCE(171); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(272); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '(') ADVANCE(95); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '(') ADVANCE(94); if (lookahead == '/') ADVANCE(25); - if (lookahead == '<') ADVANCE(33); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(88); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(87); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(254); + lookahead == 'a') ADVANCE(253); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(228); + lookahead == 'b') ADVANCE(227); if (lookahead == 'S' || - lookahead == 's') ADVANCE(262); + lookahead == 's') ADVANCE(261); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7139,35 +7150,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '&') ADVANCE(81); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(39); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '(') ADVANCE(94); if (lookahead == '/') ADVANCE(25); - if (lookahead == '0') ADVANCE(121); - if (lookahead == ':') ADVANCE(93); - if (lookahead == '<') ADVANCE(33); - if (lookahead == '?') ADVANCE(29); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '{') ADVANCE(90); - if (lookahead == '}') ADVANCE(91); + if (lookahead == '0') ADVANCE(120); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == '}') ADVANCE(90); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(254); + lookahead == 'a') ADVANCE(253); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(228); + lookahead == 'b') ADVANCE(227); if (lookahead == 'S' || - lookahead == 's') ADVANCE(262); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(123); + lookahead == 's') ADVANCE(261); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7178,35 +7182,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '.') ADVANCE(113); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '.') ADVANCE(112); if (lookahead == '/') ADVANCE(25); - if (lookahead == '0') ADVANCE(116); - if (lookahead == '<') ADVANCE(35); - if (lookahead == '?') ADVANCE(41); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(63); - if (lookahead == '_') ADVANCE(66); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(90); + if (lookahead == '0') ADVANCE(115); + if (lookahead == '<') ADVANCE(34); + if (lookahead == '?') ADVANCE(40); + if (lookahead == '\\') ADVANCE(62); + if (lookahead == '_') ADVANCE(65); + if (lookahead == '{') ADVANCE(89); if (lookahead == 'B' || lookahead == 'b') ADVANCE(15); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); + lookahead == 'e') ADVANCE(47); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(49); + lookahead == 'f') ADVANCE(48); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(59); + lookahead == 'n') ADVANCE(58); if (lookahead == 'T' || - lookahead == 't') ADVANCE(56); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + lookahead == 't') ADVANCE(55); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7215,32 +7216,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(19) END_STATE(); case 19: - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '.') ADVANCE(113); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '.') ADVANCE(112); if (lookahead == '/') ADVANCE(25); - if (lookahead == '0') ADVANCE(116); - if (lookahead == '<') ADVANCE(35); - if (lookahead == '?') ADVANCE(41); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(45); - if (lookahead == '_') ADVANCE(66); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(90); + if (lookahead == '0') ADVANCE(115); + if (lookahead == '<') ADVANCE(34); + if (lookahead == '?') ADVANCE(40); + if (lookahead == '\\') ADVANCE(44); + if (lookahead == '_') ADVANCE(65); + if (lookahead == '{') ADVANCE(89); if (lookahead == 'B' || lookahead == 'b') ADVANCE(15); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); + lookahead == 'e') ADVANCE(47); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(49); + lookahead == 'f') ADVANCE(48); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(59); + lookahead == 'n') ADVANCE(58); if (lookahead == 'T' || - lookahead == 't') ADVANCE(56); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + lookahead == 't') ADVANCE(55); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7249,16 +7247,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(19) END_STATE(); case 20: - if (lookahead == '#') ADVANCE(272); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '&') ADVANCE(81); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '.') ADVANCE(30); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == ',') ADVANCE(84); + if (lookahead == '.') ADVANCE(29); if (lookahead == '/') ADVANCE(25); - if (lookahead == '?') ADVANCE(98); - if (lookahead == '\\') ADVANCE(88); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '\\') ADVANCE(87); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7269,14 +7267,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 21: - if (lookahead == '#') ADVANCE(272); + if (lookahead == '#') ADVANCE(271); if (lookahead == '/') ADVANCE(25); - if (lookahead == '}') ADVANCE(91); + if (lookahead == '}') ADVANCE(90); if (lookahead == 'S' || - lookahead == 's') ADVANCE(262); + lookahead == 's') ADVANCE(261); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7287,26 +7285,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 22: - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '&') ADVANCE(81); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(127); - if (lookahead == '.') ADVANCE(30); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == '.') ADVANCE(29); if (lookahead == '/') ADVANCE(25); - if (lookahead == '0') ADVANCE(121); - if (lookahead == ':') ADVANCE(92); - if (lookahead == ';') ADVANCE(80); - if (lookahead == '=') ADVANCE(40); - if (lookahead == '?') ADVANCE(98); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == '{') ADVANCE(90); - if (lookahead == '}') ADVANCE(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (lookahead == '=') ADVANCE(86); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(102); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(261); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7317,21 +7313,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 23: - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(39); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '(') ADVANCE(94); + if (lookahead == '.') ADVANCE(29); if (lookahead == '/') ADVANCE(25); - if (lookahead == ':') ADVANCE(93); - if (lookahead == '?') ADVANCE(29); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == '{') ADVANCE(90); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '\\') ADVANCE(87); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7342,28 +7334,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); case 24: - if (lookahead == '#') ADVANCE(181); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '/') ADVANCE(177); - if (lookahead == '\\') ADVANCE(47); + if (lookahead == '#') ADVANCE(180); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '/') ADVANCE(176); + if (lookahead == '\\') ADVANCE(46); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(176); - if (lookahead != 0) ADVANCE(182); + lookahead == 65279) ADVANCE(175); + if (lookahead != 0) ADVANCE(181); END_STATE(); case 25: if (lookahead == '*') ADVANCE(27); - if (lookahead == '/') ADVANCE(270); + if (lookahead == '/') ADVANCE(269); END_STATE(); case 26: if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(269); + if (lookahead == '/') ADVANCE(268); if (lookahead != 0) ADVANCE(27); END_STATE(); case 27: @@ -7371,496 +7363,499 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(27); END_STATE(); case 28: - if (lookahead == '*') ADVANCE(178); + if (lookahead == '*') ADVANCE(177); if (lookahead == '\'' || lookahead == '\\') ADVANCE(27); - if (lookahead != 0) ADVANCE(179); + if (lookahead != 0) ADVANCE(178); END_STATE(); case 29: - if (lookahead == '-') ADVANCE(42); + if (lookahead == '.') ADVANCE(31); END_STATE(); case 30: - if (lookahead == '.') ADVANCE(32); + if (lookahead == '.') ADVANCE(112); + if (lookahead == '_') ADVANCE(65); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); END_STATE(); case 31: - if (lookahead == '.') ADVANCE(113); - if (lookahead == '_') ADVANCE(66); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(31); + if (lookahead == '.') ADVANCE(96); END_STATE(); case 32: - if (lookahead == '.') ADVANCE(97); + if (lookahead == '<') ADVANCE(35); END_STATE(); case 33: - if (lookahead == '<') ADVANCE(36); + if (lookahead == '<') ADVANCE(35); + if (lookahead == '?') ADVANCE(78); END_STATE(); case 34: - if (lookahead == '<') ADVANCE(36); - if (lookahead == '?') ADVANCE(79); + if (lookahead == '<') ADVANCE(35); + if (lookahead == '?') ADVANCE(167); END_STATE(); case 35: - if (lookahead == '<') ADVANCE(36); - if (lookahead == '?') ADVANCE(168); + if (lookahead == '<') ADVANCE(182); END_STATE(); case 36: - if (lookahead == '<') ADVANCE(183); + if (lookahead == '=') ADVANCE(199); END_STATE(); case 37: - if (lookahead == '=') ADVANCE(200); + if (lookahead == '=') ADVANCE(198); + if (lookahead == '>') ADVANCE(93); END_STATE(); case 38: - if (lookahead == '=') ADVANCE(199); - if (lookahead == '>') ADVANCE(94); + if (lookahead == '>') ADVANCE(151); END_STATE(); case 39: - if (lookahead == '>') ADVANCE(152); + if (lookahead == '>') ADVANCE(93); END_STATE(); case 40: - if (lookahead == '>') ADVANCE(94); + if (lookahead == '>') ADVANCE(168); END_STATE(); case 41: - if (lookahead == '>') ADVANCE(169); + if (lookahead == '>') ADVANCE(152); END_STATE(); case 42: - if (lookahead == '>') ADVANCE(153); + if (lookahead == '>') ADVANCE(76); END_STATE(); case 43: - if (lookahead == '>') ADVANCE(77); + if (lookahead == '?') ADVANCE(167); END_STATE(); case 44: - if (lookahead == '?') ADVANCE(168); + if (lookahead == 'u') ADVANCE(164); END_STATE(); case 45: - if (lookahead == 'u') ADVANCE(165); - END_STATE(); - case 46: - if (lookahead == '}') ADVANCE(161); + if (lookahead == '}') ADVANCE(160); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); END_STATE(); - case 47: + case 46: if (lookahead == '\'' || - lookahead == '\\') ADVANCE(173); - if (lookahead != 0) ADVANCE(182); + lookahead == '\\') ADVANCE(172); + if (lookahead != 0) ADVANCE(181); END_STATE(); - case 48: + case 47: if (lookahead == '+' || - lookahead == '-') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); + lookahead == '-') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); END_STATE(); - case 49: + case 48: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(52); + lookahead == 'a') ADVANCE(51); END_STATE(); - case 50: + case 49: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(158); + lookahead == 'e') ADVANCE(157); END_STATE(); - case 51: + case 50: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(55); + lookahead == 'h') ADVANCE(54); + END_STATE(); + case 51: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(56); END_STATE(); case 52: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(57); + lookahead == 'l') ADVANCE(155); END_STATE(); case 53: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(156); + lookahead == 'l') ADVANCE(52); END_STATE(); case 54: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(53); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(77); END_STATE(); case 55: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(57); END_STATE(); case 56: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(58); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(49); END_STATE(); case 57: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(50); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(49); END_STATE(); case 58: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(50); + lookahead == 'u') ADVANCE(53); END_STATE(); case 59: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(54); + if (lookahead == '0' || + lookahead == '1') ADVANCE(118); END_STATE(); case 60: - if (lookahead == '0' || - lookahead == '1') ADVANCE(119); + if (lookahead == '8' || + lookahead == '9') ADVANCE(30); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); END_STATE(); case 61: - if (lookahead == '8' || - lookahead == '9') ADVANCE(31); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(121); END_STATE(); case 62: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(122); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(160); + if (lookahead == 'u') ADVANCE(165); + if (lookahead == 'x') ADVANCE(69); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(162); END_STATE(); case 63: - if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(161); - if (lookahead == 'u') ADVANCE(166); - if (lookahead == 'x') ADVANCE(70); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(163); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); END_STATE(); case 64: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); END_STATE(); case 65: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); END_STATE(); case 66: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); END_STATE(); case 67: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); END_STATE(); case 68: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); END_STATE(); case 69: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(120); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); END_STATE(); case 70: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); END_STATE(); case 71: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); - END_STATE(); - case 72: if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(182); + lookahead != '\\') ADVANCE(181); END_STATE(); - case 73: - if (eof) ADVANCE(76); - if (lookahead == '!') ADVANCE(134); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(272); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(83); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); - if (lookahead == '*') ADVANCE(221); - if (lookahead == '+') ADVANCE(126); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(129); - if (lookahead == '.') ADVANCE(219); - if (lookahead == '/') ADVANCE(224); - if (lookahead == '0') ADVANCE(116); - if (lookahead == ':') ADVANCE(93); - if (lookahead == ';') ADVANCE(80); - if (lookahead == '<') ADVANCE(204); - if (lookahead == '=') ADVANCE(86); - if (lookahead == '>') ADVANCE(208); - if (lookahead == '?') ADVANCE(99); - if (lookahead == '@') ADVANCE(135); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '^') ADVANCE(198); - if (lookahead == '_') ADVANCE(266); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(90); - if (lookahead == '|') ADVANCE(104); - if (lookahead == '}') ADVANCE(91); - if (lookahead == '~') ADVANCE(132); + case 72: + if (eof) ADVANCE(75); + if (lookahead == '!') ADVANCE(133); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '%') ADVANCE(225); + if (lookahead == '&') ADVANCE(82); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == '*') ADVANCE(220); + if (lookahead == '+') ADVANCE(125); + if (lookahead == ',') ADVANCE(84); + if (lookahead == '-') ADVANCE(128); + if (lookahead == '.') ADVANCE(218); + if (lookahead == '/') ADVANCE(223); + if (lookahead == '0') ADVANCE(115); + if (lookahead == ':') ADVANCE(92); + if (lookahead == ';') ADVANCE(79); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(85); + if (lookahead == '>') ADVANCE(207); + if (lookahead == '?') ADVANCE(98); + if (lookahead == '@') ADVANCE(134); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(88); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '^') ADVANCE(197); + if (lookahead == '_') ADVANCE(265); + if (lookahead == '`') ADVANCE(188); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '|') ADVANCE(103); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(131); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(254); + lookahead == 'a') ADVANCE(253); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(227); + lookahead == 'b') ADVANCE(226); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(230); + lookahead == 'e') ADVANCE(229); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(231); + lookahead == 'f') ADVANCE(230); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(249); + lookahead == 'i') ADVANCE(248); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(264); + lookahead == 'n') ADVANCE(263); if (lookahead == 'S' || - lookahead == 's') ADVANCE(257); + lookahead == 's') ADVANCE(256); if (lookahead == 'T' || - lookahead == 't') ADVANCE(253); + lookahead == 't') ADVANCE(252); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(247); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + lookahead == 'u') ADVANCE(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(73) + lookahead == 65279) SKIP(72) if (('C' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); - case 74: - if (eof) ADVANCE(76); - if (lookahead == '!') ADVANCE(133); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(272); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '&') ADVANCE(81); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); - if (lookahead == '+') ADVANCE(125); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '-') ADVANCE(128); - if (lookahead == '.') ADVANCE(113); + case 73: + if (eof) ADVANCE(75); + if (lookahead == '!') ADVANCE(132); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == '+') ADVANCE(124); + if (lookahead == ',') ADVANCE(84); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '.') ADVANCE(112); if (lookahead == '/') ADVANCE(25); - if (lookahead == '0') ADVANCE(116); - if (lookahead == ':') ADVANCE(92); - if (lookahead == ';') ADVANCE(80); - if (lookahead == '<') ADVANCE(34); - if (lookahead == '=') ADVANCE(40); - if (lookahead == '?') ADVANCE(43); - if (lookahead == '@') ADVANCE(135); - if (lookahead == '[') ADVANCE(154); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '_') ADVANCE(266); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(90); - if (lookahead == '}') ADVANCE(91); - if (lookahead == '~') ADVANCE(132); + if (lookahead == '0') ADVANCE(115); + if (lookahead == ':') ADVANCE(91); + if (lookahead == ';') ADVANCE(79); + if (lookahead == '<') ADVANCE(33); + if (lookahead == '=') ADVANCE(39); + if (lookahead == '?') ADVANCE(42); + if (lookahead == '@') ADVANCE(134); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '_') ADVANCE(265); + if (lookahead == '`') ADVANCE(188); + if (lookahead == '{') ADVANCE(89); + if (lookahead == '}') ADVANCE(90); + if (lookahead == '~') ADVANCE(131); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(254); + lookahead == 'a') ADVANCE(253); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(228); + lookahead == 'b') ADVANCE(227); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(230); + lookahead == 'e') ADVANCE(229); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(232); + lookahead == 'f') ADVANCE(231); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(264); + lookahead == 'n') ADVANCE(263); if (lookahead == 'S' || - lookahead == 's') ADVANCE(262); + lookahead == 's') ADVANCE(261); if (lookahead == 'T' || - lookahead == 't') ADVANCE(253); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); + lookahead == 't') ADVANCE(252); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(117); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(74) + lookahead == 65279) SKIP(73) if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); - case 75: - if (eof) ADVANCE(76); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(190); - if (lookahead == '&') ADVANCE(81); - if (lookahead == '\'') ADVANCE(167); - if (lookahead == '(') ADVANCE(95); - if (lookahead == ')') ADVANCE(96); - if (lookahead == ',') ADVANCE(85); - if (lookahead == '.') ADVANCE(30); - if (lookahead == '/') ADVANCE(25); - if (lookahead == '0') ADVANCE(121); - if (lookahead == ':') ADVANCE(93); - if (lookahead == ';') ADVANCE(80); - if (lookahead == '=') ADVANCE(87); - if (lookahead == '?') ADVANCE(98); - if (lookahead == '\\') ADVANCE(88); - if (lookahead == ']') ADVANCE(155); - if (lookahead == '{') ADVANCE(90); + case 74: + if (eof) ADVANCE(75); + if (lookahead == '!') ADVANCE(36); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(272); + if (lookahead == '$') ADVANCE(189); + if (lookahead == '%') ADVANCE(225); + if (lookahead == '&') ADVANCE(82); + if (lookahead == '\'') ADVANCE(166); + if (lookahead == '(') ADVANCE(94); + if (lookahead == ')') ADVANCE(95); + if (lookahead == '*') ADVANCE(220); + if (lookahead == '+') ADVANCE(125); + if (lookahead == ',') ADVANCE(84); + if (lookahead == '-') ADVANCE(128); + if (lookahead == '.') ADVANCE(219); + if (lookahead == '/') ADVANCE(223); + if (lookahead == '0') ADVANCE(120); + if (lookahead == ':') ADVANCE(92); + if (lookahead == ';') ADVANCE(79); + if (lookahead == '<') ADVANCE(205); + if (lookahead == '=') ADVANCE(85); + if (lookahead == '>') ADVANCE(207); + if (lookahead == '?') ADVANCE(99); + if (lookahead == '[') ADVANCE(153); + if (lookahead == '\\') ADVANCE(87); + if (lookahead == ']') ADVANCE(154); + if (lookahead == '^') ADVANCE(197); + if (lookahead == '{') ADVANCE(89); if (lookahead == '|') ADVANCE(103); - if (lookahead == '}') ADVANCE(91); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(262); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (lookahead == '}') ADVANCE(90); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(75) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || + lookahead == 65279) SKIP(74) + if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); - case 76: + case 75: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 77: + case 76: ACCEPT_TOKEN(anon_sym_QMARK_GT); END_STATE(); - case 78: + case 77: ACCEPT_TOKEN(sym_php_tag); END_STATE(); - case 79: + case 78: ACCEPT_TOKEN(sym_php_tag); - if (lookahead == '=') ADVANCE(78); + if (lookahead == '=') ADVANCE(77); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(51); + lookahead == 'p') ADVANCE(50); END_STATE(); - case 80: + case 79: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); case 81: ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(195); END_STATE(); case 82: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(196); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '=') ADVANCE(147); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(196); - if (lookahead == '=') ADVANCE(148); + ACCEPT_TOKEN(aux_sym_function_static_declaration_token1); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 84: - ACCEPT_TOKEN(aux_sym_function_static_declaration_token1); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(198); + if (lookahead == '>') ADVANCE(93); END_STATE(); case 86: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(199); - if (lookahead == '>') ADVANCE(94); + if (lookahead == '>') ADVANCE(93); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(94); + ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); case 88: ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '\'' || + lookahead == '\\') ADVANCE(172); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '\'' || - lookahead == '\\') ADVANCE(173); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 92: ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(135); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 98: ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '-') ADVANCE(41); + if (lookahead == '>') ADVANCE(168); + if (lookahead == '?') ADVANCE(191); END_STATE(); case 99: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(42); - if (lookahead == '>') ADVANCE(169); - if (lookahead == '?') ADVANCE(192); + if (lookahead == '-') ADVANCE(41); + if (lookahead == '?') ADVANCE(191); END_STATE(); case 100: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(42); - if (lookahead == '?') ADVANCE(192); + if (lookahead == '-') ADVANCE(41); + if (lookahead == '?') ADVANCE(190); END_STATE(); case 101: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(42); - if (lookahead == '?') ADVANCE(191); + if (lookahead == '?') ADVANCE(190); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '?') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 103: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(149); + if (lookahead == '|') ADVANCE(194); END_STATE(); case 104: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(150); - if (lookahead == '|') ADVANCE(195); + if (lookahead == '|') ADVANCE(194); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(195); + ACCEPT_TOKEN(aux_sym_cast_type_token1); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 106: - ACCEPT_TOKEN(aux_sym_cast_type_token1); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + ACCEPT_TOKEN(aux_sym_cast_type_token3); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 107: - ACCEPT_TOKEN(aux_sym_cast_type_token3); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + ACCEPT_TOKEN(aux_sym_cast_type_token6); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 108: - ACCEPT_TOKEN(aux_sym_cast_type_token6); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + ACCEPT_TOKEN(aux_sym_cast_type_token8); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 109: - ACCEPT_TOKEN(aux_sym_cast_type_token8); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + ACCEPT_TOKEN(aux_sym_cast_type_token11); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 110: - ACCEPT_TOKEN(aux_sym_cast_type_token11); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + ACCEPT_TOKEN(aux_sym_cast_type_token12); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 111: - ACCEPT_TOKEN(aux_sym_cast_type_token12); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + ACCEPT_TOKEN(sym_float); + if (lookahead == '.') ADVANCE(31); + if (lookahead == '_') ADVANCE(64); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); END_STATE(); case 112: ACCEPT_TOKEN(sym_float); - if (lookahead == '.') ADVANCE(32); - if (lookahead == '_') ADVANCE(65); + if (lookahead == '_') ADVANCE(64); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + lookahead == 'e') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); END_STATE(); case 113: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(65); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); + if (lookahead == '_') ADVANCE(266); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); - END_STATE(); - case 114: - ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(267); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 159) || @@ -7868,519 +7863,523 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (8204 <= lookahead && lookahead <= 8287) || (8289 <= lookahead && lookahead <= 55295) || (57344 <= lookahead && lookahead <= 65278) || - (65280 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (65280 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); - case 115: + case 114: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); + if (lookahead == '_') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); END_STATE(); - case 116: + case 115: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(113); - if (lookahead == '_') ADVANCE(61); + if (lookahead == '.') ADVANCE(112); + if (lookahead == '_') ADVANCE(60); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(60); + lookahead == 'b') ADVANCE(59); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); + lookahead == 'e') ADVANCE(47); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(122); + lookahead == 'o') ADVANCE(121); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(69); + lookahead == 'x') ADVANCE(68); if (lookahead == '8' || - lookahead == '9') ADVANCE(31); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); + lookahead == '9') ADVANCE(30); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); END_STATE(); - case 117: + case 116: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(113); - if (lookahead == '_') ADVANCE(61); + if (lookahead == '.') ADVANCE(112); + if (lookahead == '_') ADVANCE(60); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); + lookahead == 'e') ADVANCE(47); if (lookahead == '8' || - lookahead == '9') ADVANCE(31); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); + lookahead == '9') ADVANCE(30); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); END_STATE(); - case 118: + case 117: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(113); - if (lookahead == '_') ADVANCE(64); + if (lookahead == '.') ADVANCE(112); + if (lookahead == '_') ADVANCE(63); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); + lookahead == 'e') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); END_STATE(); - case 119: + case 118: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(60); + if (lookahead == '_') ADVANCE(59); if (lookahead == '0' || - lookahead == '1') ADVANCE(119); + lookahead == '1') ADVANCE(118); END_STATE(); - case 120: + case 119: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(69); + if (lookahead == '_') ADVANCE(68); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(120); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); END_STATE(); - case 121: + case 120: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(62); + if (lookahead == '_') ADVANCE(61); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(60); + lookahead == 'b') ADVANCE(59); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(122); + lookahead == 'o') ADVANCE(121); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(69); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(122); + lookahead == 'x') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(121); + END_STATE(); + case 121: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(121); END_STATE(); case 122: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(122); + if (lookahead == '_') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); END_STATE(); case 123: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(123); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 124: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(137); END_STATE(); case 125: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(138); + if (lookahead == '+') ADVANCE(137); + if (lookahead == '=') ADVANCE(142); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(138); - if (lookahead == '=') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 127: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(136); END_STATE(); case 128: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(137); + if (lookahead == '-') ADVANCE(136); + if (lookahead == '=') ADVANCE(143); + if (lookahead == '>') ADVANCE(151); END_STATE(); case 129: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '=') ADVANCE(144); - if (lookahead == '>') ADVANCE(152); + if (lookahead == '-') ADVANCE(136); + if (lookahead == '>') ADVANCE(151); END_STATE(); case 130: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '>') ADVANCE(152); + if (lookahead == '>') ADVANCE(151); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 133: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(199); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(200); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_DOT_EQ); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_DOT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(aux_sym__argument_name_token1); END_STATE(); case 156: ACCEPT_TOKEN(aux_sym__argument_name_token1); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 157: - ACCEPT_TOKEN(aux_sym__argument_name_token1); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + ACCEPT_TOKEN(aux_sym__argument_name_token2); END_STATE(); case 158: ACCEPT_TOKEN(aux_sym__argument_name_token2); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 159: - ACCEPT_TOKEN(aux_sym__argument_name_token2); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_POUND_LBRACK); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 161: ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(160); END_STATE(); case 162: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(161); END_STATE(); case 163: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(162); - END_STATE(); - case 164: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(161); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(160); END_STATE(); - case 165: + case 164: ACCEPT_TOKEN(anon_sym_BSLASHu); END_STATE(); - case 166: + case 165: ACCEPT_TOKEN(anon_sym_BSLASHu); - if (lookahead == '{') ADVANCE(71); + if (lookahead == '{') ADVANCE(70); END_STATE(); - case 167: + case 166: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 168: + case 167: ACCEPT_TOKEN(anon_sym_LT_QMARK); END_STATE(); - case 169: + case 168: ACCEPT_TOKEN(anon_sym_QMARK_GT2); END_STATE(); - case 170: + case 169: ACCEPT_TOKEN(aux_sym_encapsed_string_token1); END_STATE(); - case 171: + case 170: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 172: + case 171: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 173: + case 172: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 174: + case 173: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(182); - if (lookahead == '\r') ADVANCE(175); - if (lookahead == '>') ADVANCE(182); - if (lookahead == '\\') ADVANCE(271); + if (lookahead == '\n') ADVANCE(181); + if (lookahead == '\r') ADVANCE(174); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '\\') ADVANCE(270); if (lookahead != 0 && - lookahead != '\'') ADVANCE(180); + lookahead != '\'') ADVANCE(179); END_STATE(); - case 175: + case 174: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(182); - if (lookahead == '\\') ADVANCE(72); + if (lookahead == '\n') ADVANCE(181); + if (lookahead == '\\') ADVANCE(71); if (lookahead != 0 && - lookahead != '\'') ADVANCE(182); + lookahead != '\'') ADVANCE(181); END_STATE(); - case 176: + case 175: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '/') ADVANCE(177); - if (lookahead == '\\') ADVANCE(47); + if (lookahead == '#') ADVANCE(180); + if (lookahead == '/') ADVANCE(176); + if (lookahead == '\\') ADVANCE(46); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(176); + lookahead == 65279) ADVANCE(175); if (lookahead != 0 && - lookahead != '\'') ADVANCE(182); + lookahead != '\'') ADVANCE(181); + END_STATE(); + case 176: + ACCEPT_TOKEN(sym_string_value); + if (lookahead == '*') ADVANCE(178); + if (lookahead == '/') ADVANCE(179); + if (lookahead == '\\') ADVANCE(71); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(181); END_STATE(); case 177: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(179); - if (lookahead == '/') ADVANCE(180); - if (lookahead == '\\') ADVANCE(72); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '/') ADVANCE(181); + if (lookahead == '\\') ADVANCE(28); if (lookahead != 0 && - lookahead != '\'') ADVANCE(182); + lookahead != '\'') ADVANCE(178); END_STATE(); case 178: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '/') ADVANCE(182); + if (lookahead == '*') ADVANCE(177); if (lookahead == '\\') ADVANCE(28); if (lookahead != 0 && - lookahead != '\'') ADVANCE(179); + lookahead != '\'') ADVANCE(178); END_STATE(); case 179: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '\\') ADVANCE(28); + if (lookahead == '?') ADVANCE(173); + if (lookahead == '\\') ADVANCE(270); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(181); if (lookahead != 0 && lookahead != '\'') ADVANCE(179); END_STATE(); case 180: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '?') ADVANCE(174); - if (lookahead == '\\') ADVANCE(271); + if (lookahead == '\\') ADVANCE(270); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(182); + lookahead == '\r' || + lookahead == '?' || + lookahead == '[') ADVANCE(181); if (lookahead != 0 && - lookahead != '\'') ADVANCE(180); + lookahead != '\'') ADVANCE(179); END_STATE(); case 181: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(271); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '?' || - lookahead == '[') ADVANCE(182); + if (lookahead == '\\') ADVANCE(71); if (lookahead != 0 && - lookahead != '\'') ADVANCE(180); + lookahead != '\'') ADVANCE(181); END_STATE(); case 182: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(72); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(182); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(sym__new_line); + if (lookahead == '\n') ADVANCE(184); + if (lookahead == '\r') ADVANCE(184); + if (lookahead == '?') ADVANCE(40); END_STATE(); case 185: ACCEPT_TOKEN(sym__new_line); if (lookahead == '\n') ADVANCE(185); if (lookahead == '\r') ADVANCE(185); - if (lookahead == '?') ADVANCE(41); END_STATE(); case 186: - ACCEPT_TOKEN(sym__new_line); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '\r') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_); + ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_SQUOTE2); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 191: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(150); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 193: ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(138); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 197: ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(148); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(201); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); if (lookahead == '=') ADVANCE(202); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 204: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(213); + if (lookahead == '=') ADVANCE(209); + if (lookahead == '>') ADVANCE(200); END_STATE(); case 205: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(210); - if (lookahead == '>') ADVANCE(201); + if (lookahead == '=') ADVANCE(209); + if (lookahead == '>') ADVANCE(200); END_STATE(); case 206: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(215); - if (lookahead == '=') ADVANCE(210); - if (lookahead == '>') ADVANCE(201); + if (lookahead == '<') ADVANCE(212); + if (lookahead == '=') ADVANCE(209); + if (lookahead == '>') ADVANCE(200); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(210); - if (lookahead == '>') ADVANCE(201); + if (lookahead == '>') ADVANCE(216); END_STATE(); case 208: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(217); + if (lookahead == '=') ADVANCE(210); + if (lookahead == '>') ADVANCE(215); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(216); + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(211); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(212); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 213: ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(182); END_STATE(); case 214: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(183); + if (lookahead == '=') ADVANCE(145); END_STATE(); case 215: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 216: ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(147); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 218: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(31); + if (lookahead == '_') ADVANCE(64); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); END_STATE(); case 219: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(32); - if (lookahead == '_') ADVANCE(65); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (lookahead == '=') ADVANCE(144); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(193); + if (lookahead == '=') ADVANCE(139); END_STATE(); case 221: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '=') ADVANCE(140); + if (lookahead == '*') ADVANCE(192); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(193); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(269); END_STATE(); case 223: ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(269); + if (lookahead == '=') ADVANCE(140); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(141); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 225: ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(141); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(142); - END_STATE(); - case 227: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(170); - if (lookahead == '\'') ADVANCE(172); + if (lookahead == '"') ADVANCE(169); + if (lookahead == '\'') ADVANCE(171); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(251); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 'o') ADVANCE(250); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); - case 228: + case 227: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(170); - if (lookahead == '\'') ADVANCE(172); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (lookahead == '"') ADVANCE(169); + if (lookahead == '\'') ADVANCE(171); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); - case 229: + case 228: ACCEPT_TOKEN(sym_name); - if (lookahead == '.') ADVANCE(113); - if (lookahead == '_') ADVANCE(266); + if (lookahead == '.') ADVANCE(112); + if (lookahead == '_') ADVANCE(265); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(230); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + lookahead == 'e') ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 159) || @@ -8388,277 +8387,277 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (8204 <= lookahead && lookahead <= 8287) || (8289 <= lookahead && lookahead <= 55295) || (57344 <= lookahead && lookahead <= 65278) || - (65280 <= lookahead && lookahead <= 65535)) ADVANCE(268); + (65280 <= lookahead && lookahead <= 65535)) ADVANCE(267); END_STATE(); - case 230: + case 229: ACCEPT_TOKEN(sym_name); if (lookahead == '+' || - lookahead == '-') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); - if (sym_name_character_set_2(lookahead)) ADVANCE(268); + lookahead == '-') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (sym_name_character_set_2(lookahead)) ADVANCE(267); END_STATE(); - case 231: + case 230: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(246); + lookahead == 'a') ADVANCE(245); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(250); - if (sym_name_character_set_3(lookahead)) ADVANCE(268); + lookahead == 'l') ADVANCE(249); + if (sym_name_character_set_3(lookahead)) ADVANCE(267); + END_STATE(); + case 231: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(245); + if (sym_name_character_set_3(lookahead)) ADVANCE(267); END_STATE(); case 232: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(246); - if (sym_name_character_set_3(lookahead)) ADVANCE(268); + lookahead == 'a') ADVANCE(264); + if (sym_name_character_set_3(lookahead)) ADVANCE(267); END_STATE(); case 233: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(265); - if (sym_name_character_set_3(lookahead)) ADVANCE(268); + lookahead == 'a') ADVANCE(260); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(241); + if (sym_name_character_set_3(lookahead)) ADVANCE(267); END_STATE(); case 234: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(261); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(242); - if (sym_name_character_set_3(lookahead)) ADVANCE(268); + lookahead == 'a') ADVANCE(260); + if (sym_name_character_set_3(lookahead)) ADVANCE(267); END_STATE(); case 235: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(261); - if (sym_name_character_set_3(lookahead)) ADVANCE(268); + lookahead == 'a') ADVANCE(258); + if (sym_name_character_set_3(lookahead)) ADVANCE(267); END_STATE(); case 236: ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(259); - if (sym_name_character_set_3(lookahead)) ADVANCE(268); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(83); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 237: ACCEPT_TOKEN(sym_name); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(84); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(158); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 238: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(159); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 'e') ADVANCE(259); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 239: ACCEPT_TOKEN(sym_name); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(260); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(109); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 240: ACCEPT_TOKEN(sym_name); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(110); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(236); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 241: ACCEPT_TOKEN(sym_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(237); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 'i') ADVANCE(247); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 242: ACCEPT_TOKEN(sym_name); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(248); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(106); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 243: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(107); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 'l') ADVANCE(156); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 244: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(157); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 'l') ADVANCE(243); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 245: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(244); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 'l') ADVANCE(254); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 246: ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(255); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(255); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 247: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(256); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 'n') ADVANCE(239); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 248: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(240); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 'n') ADVANCE(257); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 249: ACCEPT_TOKEN(sym_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(258); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(235); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 250: ACCEPT_TOKEN(sym_name); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(236); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 'o') ADVANCE(242); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 251: ACCEPT_TOKEN(sym_name); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(243); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(232); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 252: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(233); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 'r') ADVANCE(262); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 253: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(263); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 'r') ADVANCE(251); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 254: ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(252); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(237); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 255: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || lookahead == 's') ADVANCE(238); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 256: ACCEPT_TOKEN(sym_name); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(239); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(233); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 257: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(234); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 't') ADVANCE(107); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 258: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || lookahead == 't') ADVANCE(108); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 259: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(109); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 't') ADVANCE(110); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 260: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(111); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 't') ADVANCE(240); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 261: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(241); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 't') ADVANCE(234); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 262: ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(235); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(237); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 263: ACCEPT_TOKEN(sym_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(238); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + lookahead == 'u') ADVANCE(244); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 264: ACCEPT_TOKEN(sym_name); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(245); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(105); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 265: ACCEPT_TOKEN(sym_name); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(106); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (sym_name_character_set_2(lookahead)) ADVANCE(267); END_STATE(); case 266: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); - if (sym_name_character_set_2(lookahead)) ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + if (sym_name_character_set_2(lookahead)) ADVANCE(267); END_STATE(); case 267: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); - if (sym_name_character_set_2(lookahead)) ADVANCE(268); + if (sym_name_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 268: - ACCEPT_TOKEN(sym_name); - if (sym_name_character_set_1(lookahead)) ADVANCE(268); - END_STATE(); - case 269: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 270: + case 269: ACCEPT_TOKEN(sym_comment); if (lookahead == '?') ADVANCE(2); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(270); + lookahead != '\r') ADVANCE(269); END_STATE(); - case 271: + case 270: ACCEPT_TOKEN(sym_comment); - if (lookahead == '?') ADVANCE(174); + if (lookahead == '?') ADVANCE(173); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(182); + lookahead == '\r') ADVANCE(181); if (lookahead == '\'' || - lookahead == '\\') ADVANCE(270); - if (lookahead != 0) ADVANCE(180); + lookahead == '\\') ADVANCE(269); + if (lookahead != 0) ADVANCE(179); END_STATE(); - case 272: + case 271: ACCEPT_TOKEN(sym_comment); - if (lookahead == '[') ADVANCE(160); + if (lookahead == '[') ADVANCE(159); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '?') ADVANCE(270); + lookahead != '?') ADVANCE(269); END_STATE(); - case 273: + case 272: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '?' && - lookahead != '[') ADVANCE(270); + lookahead != '[') ADVANCE(269); END_STATE(); default: return false; @@ -10321,90 +10320,90 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 74}, - [2] = {.lex_state = 74}, - [3] = {.lex_state = 74}, - [4] = {.lex_state = 74}, - [5] = {.lex_state = 74}, - [6] = {.lex_state = 74}, - [7] = {.lex_state = 74}, - [8] = {.lex_state = 74}, - [9] = {.lex_state = 74}, - [10] = {.lex_state = 74}, - [11] = {.lex_state = 74}, - [12] = {.lex_state = 74, .external_lex_state = 2}, - [13] = {.lex_state = 74}, - [14] = {.lex_state = 74}, - [15] = {.lex_state = 74}, - [16] = {.lex_state = 74, .external_lex_state = 2}, - [17] = {.lex_state = 74, .external_lex_state = 2}, - [18] = {.lex_state = 74, .external_lex_state = 2}, - [19] = {.lex_state = 74}, - [20] = {.lex_state = 74, .external_lex_state = 2}, - [21] = {.lex_state = 74}, - [22] = {.lex_state = 74, .external_lex_state = 2}, - [23] = {.lex_state = 74, .external_lex_state = 2}, - [24] = {.lex_state = 74, .external_lex_state = 2}, - [25] = {.lex_state = 74}, - [26] = {.lex_state = 74, .external_lex_state = 2}, - [27] = {.lex_state = 74, .external_lex_state = 2}, - [28] = {.lex_state = 74, .external_lex_state = 2}, - [29] = {.lex_state = 74}, - [30] = {.lex_state = 74}, - [31] = {.lex_state = 74, .external_lex_state = 2}, - [32] = {.lex_state = 74, .external_lex_state = 2}, - [33] = {.lex_state = 74}, - [34] = {.lex_state = 74}, - [35] = {.lex_state = 74}, - [36] = {.lex_state = 74, .external_lex_state = 2}, - [37] = {.lex_state = 74}, - [38] = {.lex_state = 74}, - [39] = {.lex_state = 74, .external_lex_state = 2}, - [40] = {.lex_state = 74}, - [41] = {.lex_state = 74}, - [42] = {.lex_state = 74}, - [43] = {.lex_state = 74}, - [44] = {.lex_state = 74}, - [45] = {.lex_state = 74, .external_lex_state = 2}, - [46] = {.lex_state = 74}, - [47] = {.lex_state = 74, .external_lex_state = 2}, - [48] = {.lex_state = 74}, - [49] = {.lex_state = 74}, - [50] = {.lex_state = 74}, - [51] = {.lex_state = 74}, - [52] = {.lex_state = 74}, - [53] = {.lex_state = 74}, - [54] = {.lex_state = 74, .external_lex_state = 2}, - [55] = {.lex_state = 74}, - [56] = {.lex_state = 74, .external_lex_state = 2}, - [57] = {.lex_state = 74}, - [58] = {.lex_state = 74, .external_lex_state = 2}, - [59] = {.lex_state = 74, .external_lex_state = 2}, - [60] = {.lex_state = 74}, - [61] = {.lex_state = 74}, - [62] = {.lex_state = 74}, - [63] = {.lex_state = 74}, - [64] = {.lex_state = 74}, - [65] = {.lex_state = 74}, - [66] = {.lex_state = 74}, - [67] = {.lex_state = 74, .external_lex_state = 2}, - [68] = {.lex_state = 74}, - [69] = {.lex_state = 74, .external_lex_state = 2}, - [70] = {.lex_state = 74}, - [71] = {.lex_state = 74}, - [72] = {.lex_state = 74, .external_lex_state = 2}, - [73] = {.lex_state = 74}, - [74] = {.lex_state = 74}, - [75] = {.lex_state = 74}, - [76] = {.lex_state = 74}, - [77] = {.lex_state = 74}, - [78] = {.lex_state = 74}, - [79] = {.lex_state = 74}, - [80] = {.lex_state = 74}, - [81] = {.lex_state = 74}, - [82] = {.lex_state = 74}, - [83] = {.lex_state = 74}, - [84] = {.lex_state = 74}, + [1] = {.lex_state = 73}, + [2] = {.lex_state = 73}, + [3] = {.lex_state = 73}, + [4] = {.lex_state = 73}, + [5] = {.lex_state = 73}, + [6] = {.lex_state = 73}, + [7] = {.lex_state = 73}, + [8] = {.lex_state = 73}, + [9] = {.lex_state = 73}, + [10] = {.lex_state = 73}, + [11] = {.lex_state = 73}, + [12] = {.lex_state = 73, .external_lex_state = 2}, + [13] = {.lex_state = 73}, + [14] = {.lex_state = 73}, + [15] = {.lex_state = 73}, + [16] = {.lex_state = 73, .external_lex_state = 2}, + [17] = {.lex_state = 73, .external_lex_state = 2}, + [18] = {.lex_state = 73, .external_lex_state = 2}, + [19] = {.lex_state = 73}, + [20] = {.lex_state = 73, .external_lex_state = 2}, + [21] = {.lex_state = 73}, + [22] = {.lex_state = 73, .external_lex_state = 2}, + [23] = {.lex_state = 73, .external_lex_state = 2}, + [24] = {.lex_state = 73, .external_lex_state = 2}, + [25] = {.lex_state = 73}, + [26] = {.lex_state = 73, .external_lex_state = 2}, + [27] = {.lex_state = 73, .external_lex_state = 2}, + [28] = {.lex_state = 73, .external_lex_state = 2}, + [29] = {.lex_state = 73}, + [30] = {.lex_state = 73}, + [31] = {.lex_state = 73, .external_lex_state = 2}, + [32] = {.lex_state = 73, .external_lex_state = 2}, + [33] = {.lex_state = 73}, + [34] = {.lex_state = 73}, + [35] = {.lex_state = 73}, + [36] = {.lex_state = 73, .external_lex_state = 2}, + [37] = {.lex_state = 73}, + [38] = {.lex_state = 73}, + [39] = {.lex_state = 73, .external_lex_state = 2}, + [40] = {.lex_state = 73}, + [41] = {.lex_state = 73}, + [42] = {.lex_state = 73}, + [43] = {.lex_state = 73}, + [44] = {.lex_state = 73}, + [45] = {.lex_state = 73, .external_lex_state = 2}, + [46] = {.lex_state = 73}, + [47] = {.lex_state = 73, .external_lex_state = 2}, + [48] = {.lex_state = 73}, + [49] = {.lex_state = 73}, + [50] = {.lex_state = 73}, + [51] = {.lex_state = 73}, + [52] = {.lex_state = 73}, + [53] = {.lex_state = 73}, + [54] = {.lex_state = 73, .external_lex_state = 2}, + [55] = {.lex_state = 73}, + [56] = {.lex_state = 73, .external_lex_state = 2}, + [57] = {.lex_state = 73}, + [58] = {.lex_state = 73, .external_lex_state = 2}, + [59] = {.lex_state = 73, .external_lex_state = 2}, + [60] = {.lex_state = 73}, + [61] = {.lex_state = 73}, + [62] = {.lex_state = 73}, + [63] = {.lex_state = 73}, + [64] = {.lex_state = 73}, + [65] = {.lex_state = 73}, + [66] = {.lex_state = 73}, + [67] = {.lex_state = 73, .external_lex_state = 2}, + [68] = {.lex_state = 73}, + [69] = {.lex_state = 73, .external_lex_state = 2}, + [70] = {.lex_state = 73}, + [71] = {.lex_state = 73}, + [72] = {.lex_state = 73, .external_lex_state = 2}, + [73] = {.lex_state = 73}, + [74] = {.lex_state = 73}, + [75] = {.lex_state = 73}, + [76] = {.lex_state = 73}, + [77] = {.lex_state = 73}, + [78] = {.lex_state = 73}, + [79] = {.lex_state = 73}, + [80] = {.lex_state = 73}, + [81] = {.lex_state = 73}, + [82] = {.lex_state = 73}, + [83] = {.lex_state = 73}, + [84] = {.lex_state = 73}, [85] = {.lex_state = 6}, [86] = {.lex_state = 6}, [87] = {.lex_state = 6, .external_lex_state = 2}, @@ -10453,7 +10452,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [130] = {.lex_state = 7}, [131] = {.lex_state = 7}, [132] = {.lex_state = 7}, - [133] = {.lex_state = 74}, + [133] = {.lex_state = 73}, [134] = {.lex_state = 7}, [135] = {.lex_state = 7}, [136] = {.lex_state = 7}, @@ -10462,1219 +10461,1219 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [139] = {.lex_state = 7}, [140] = {.lex_state = 7}, [141] = {.lex_state = 7}, - [142] = {.lex_state = 74}, + [142] = {.lex_state = 73}, [143] = {.lex_state = 7}, - [144] = {.lex_state = 74}, + [144] = {.lex_state = 73}, [145] = {.lex_state = 7}, - [146] = {.lex_state = 74}, - [147] = {.lex_state = 74}, - [148] = {.lex_state = 74}, + [146] = {.lex_state = 73}, + [147] = {.lex_state = 73}, + [148] = {.lex_state = 73}, [149] = {.lex_state = 7}, - [150] = {.lex_state = 74}, - [151] = {.lex_state = 74}, - [152] = {.lex_state = 74}, - [153] = {.lex_state = 74}, - [154] = {.lex_state = 74}, - [155] = {.lex_state = 74}, + [150] = {.lex_state = 73}, + [151] = {.lex_state = 73}, + [152] = {.lex_state = 73}, + [153] = {.lex_state = 73}, + [154] = {.lex_state = 73}, + [155] = {.lex_state = 73}, [156] = {.lex_state = 7}, - [157] = {.lex_state = 74}, - [158] = {.lex_state = 74}, - [159] = {.lex_state = 74}, - [160] = {.lex_state = 74}, - [161] = {.lex_state = 74}, - [162] = {.lex_state = 74}, - [163] = {.lex_state = 74}, - [164] = {.lex_state = 74}, - [165] = {.lex_state = 74}, - [166] = {.lex_state = 74}, - [167] = {.lex_state = 74}, - [168] = {.lex_state = 74}, - [169] = {.lex_state = 74}, - [170] = {.lex_state = 74}, - [171] = {.lex_state = 74}, - [172] = {.lex_state = 74}, - [173] = {.lex_state = 74}, - [174] = {.lex_state = 74}, - [175] = {.lex_state = 74}, - [176] = {.lex_state = 74}, - [177] = {.lex_state = 74}, - [178] = {.lex_state = 74}, - [179] = {.lex_state = 74}, - [180] = {.lex_state = 74}, - [181] = {.lex_state = 74}, - [182] = {.lex_state = 74}, - [183] = {.lex_state = 74}, - [184] = {.lex_state = 74}, + [157] = {.lex_state = 73}, + [158] = {.lex_state = 73}, + [159] = {.lex_state = 73}, + [160] = {.lex_state = 73}, + [161] = {.lex_state = 73}, + [162] = {.lex_state = 73}, + [163] = {.lex_state = 73}, + [164] = {.lex_state = 73}, + [165] = {.lex_state = 73}, + [166] = {.lex_state = 73}, + [167] = {.lex_state = 73}, + [168] = {.lex_state = 73}, + [169] = {.lex_state = 73}, + [170] = {.lex_state = 73}, + [171] = {.lex_state = 73}, + [172] = {.lex_state = 73}, + [173] = {.lex_state = 73}, + [174] = {.lex_state = 73}, + [175] = {.lex_state = 73}, + [176] = {.lex_state = 73}, + [177] = {.lex_state = 73}, + [178] = {.lex_state = 73}, + [179] = {.lex_state = 73}, + [180] = {.lex_state = 73}, + [181] = {.lex_state = 73}, + [182] = {.lex_state = 73}, + [183] = {.lex_state = 73}, + [184] = {.lex_state = 73}, [185] = {.lex_state = 7}, - [186] = {.lex_state = 74}, - [187] = {.lex_state = 74}, - [188] = {.lex_state = 74}, + [186] = {.lex_state = 73}, + [187] = {.lex_state = 73}, + [188] = {.lex_state = 73}, [189] = {.lex_state = 7}, - [190] = {.lex_state = 74, .external_lex_state = 2}, - [191] = {.lex_state = 74}, - [192] = {.lex_state = 74}, - [193] = {.lex_state = 74}, - [194] = {.lex_state = 74}, - [195] = {.lex_state = 74}, - [196] = {.lex_state = 74}, - [197] = {.lex_state = 74, .external_lex_state = 2}, - [198] = {.lex_state = 74}, - [199] = {.lex_state = 74, .external_lex_state = 2}, - [200] = {.lex_state = 74, .external_lex_state = 2}, - [201] = {.lex_state = 74, .external_lex_state = 2}, - [202] = {.lex_state = 74, .external_lex_state = 2}, - [203] = {.lex_state = 74}, - [204] = {.lex_state = 74}, - [205] = {.lex_state = 74}, - [206] = {.lex_state = 74}, - [207] = {.lex_state = 74}, - [208] = {.lex_state = 74}, - [209] = {.lex_state = 74}, - [210] = {.lex_state = 74}, - [211] = {.lex_state = 74}, - [212] = {.lex_state = 74}, - [213] = {.lex_state = 74}, - [214] = {.lex_state = 74}, - [215] = {.lex_state = 74}, - [216] = {.lex_state = 74}, - [217] = {.lex_state = 74}, - [218] = {.lex_state = 74}, - [219] = {.lex_state = 74}, - [220] = {.lex_state = 74}, - [221] = {.lex_state = 74}, - [222] = {.lex_state = 74}, - [223] = {.lex_state = 74}, - [224] = {.lex_state = 74}, - [225] = {.lex_state = 74}, - [226] = {.lex_state = 74}, - [227] = {.lex_state = 74}, - [228] = {.lex_state = 74}, - [229] = {.lex_state = 74}, - [230] = {.lex_state = 74}, - [231] = {.lex_state = 74}, - [232] = {.lex_state = 74}, - [233] = {.lex_state = 74}, - [234] = {.lex_state = 74}, - [235] = {.lex_state = 74}, - [236] = {.lex_state = 74}, - [237] = {.lex_state = 74}, - [238] = {.lex_state = 74}, - [239] = {.lex_state = 74}, - [240] = {.lex_state = 74}, - [241] = {.lex_state = 74}, - [242] = {.lex_state = 74}, - [243] = {.lex_state = 74}, - [244] = {.lex_state = 74}, - [245] = {.lex_state = 74}, - [246] = {.lex_state = 74}, - [247] = {.lex_state = 74}, - [248] = {.lex_state = 74}, - [249] = {.lex_state = 74}, - [250] = {.lex_state = 74}, - [251] = {.lex_state = 74}, - [252] = {.lex_state = 74}, - [253] = {.lex_state = 74}, - [254] = {.lex_state = 74}, - [255] = {.lex_state = 74}, - [256] = {.lex_state = 74}, - [257] = {.lex_state = 74}, - [258] = {.lex_state = 74}, - [259] = {.lex_state = 74}, - [260] = {.lex_state = 74}, - [261] = {.lex_state = 74}, - [262] = {.lex_state = 74}, - [263] = {.lex_state = 74}, - [264] = {.lex_state = 74}, - [265] = {.lex_state = 74}, - [266] = {.lex_state = 74}, - [267] = {.lex_state = 74}, - [268] = {.lex_state = 74}, - [269] = {.lex_state = 74}, - [270] = {.lex_state = 74}, - [271] = {.lex_state = 74}, - [272] = {.lex_state = 74}, - [273] = {.lex_state = 74}, - [274] = {.lex_state = 74}, - [275] = {.lex_state = 74}, - [276] = {.lex_state = 74}, - [277] = {.lex_state = 74}, - [278] = {.lex_state = 74}, - [279] = {.lex_state = 74}, - [280] = {.lex_state = 74}, - [281] = {.lex_state = 74}, - [282] = {.lex_state = 74}, - [283] = {.lex_state = 74}, - [284] = {.lex_state = 74}, - [285] = {.lex_state = 74}, - [286] = {.lex_state = 74}, - [287] = {.lex_state = 74}, - [288] = {.lex_state = 74}, - [289] = {.lex_state = 74}, - [290] = {.lex_state = 74}, - [291] = {.lex_state = 74}, - [292] = {.lex_state = 74}, - [293] = {.lex_state = 74}, - [294] = {.lex_state = 74}, - [295] = {.lex_state = 74}, - [296] = {.lex_state = 74}, - [297] = {.lex_state = 74}, - [298] = {.lex_state = 74}, - [299] = {.lex_state = 74}, - [300] = {.lex_state = 74}, - [301] = {.lex_state = 74}, - [302] = {.lex_state = 74}, - [303] = {.lex_state = 74}, - [304] = {.lex_state = 74}, - [305] = {.lex_state = 74}, - [306] = {.lex_state = 74}, - [307] = {.lex_state = 74}, - [308] = {.lex_state = 74}, - [309] = {.lex_state = 74}, - [310] = {.lex_state = 74}, - [311] = {.lex_state = 74}, - [312] = {.lex_state = 74}, - [313] = {.lex_state = 74}, - [314] = {.lex_state = 74}, - [315] = {.lex_state = 74}, - [316] = {.lex_state = 74}, - [317] = {.lex_state = 74}, - [318] = {.lex_state = 74}, - [319] = {.lex_state = 74}, - [320] = {.lex_state = 74}, - [321] = {.lex_state = 74}, - [322] = {.lex_state = 74}, - [323] = {.lex_state = 74}, - [324] = {.lex_state = 74}, - [325] = {.lex_state = 74}, - [326] = {.lex_state = 74}, - [327] = {.lex_state = 74}, - [328] = {.lex_state = 74}, - [329] = {.lex_state = 74}, - [330] = {.lex_state = 74}, - [331] = {.lex_state = 74}, - [332] = {.lex_state = 74}, - [333] = {.lex_state = 74}, - [334] = {.lex_state = 74}, - [335] = {.lex_state = 74}, - [336] = {.lex_state = 74}, - [337] = {.lex_state = 74}, - [338] = {.lex_state = 74}, - [339] = {.lex_state = 74}, - [340] = {.lex_state = 74}, - [341] = {.lex_state = 74}, - [342] = {.lex_state = 74}, - [343] = {.lex_state = 74}, - [344] = {.lex_state = 74}, - [345] = {.lex_state = 74}, - [346] = {.lex_state = 74}, - [347] = {.lex_state = 74}, - [348] = {.lex_state = 74}, - [349] = {.lex_state = 74}, - [350] = {.lex_state = 74}, - [351] = {.lex_state = 74}, - [352] = {.lex_state = 74}, - [353] = {.lex_state = 74}, - [354] = {.lex_state = 74}, - [355] = {.lex_state = 74}, - [356] = {.lex_state = 74}, - [357] = {.lex_state = 74}, - [358] = {.lex_state = 74}, - [359] = {.lex_state = 74}, - [360] = {.lex_state = 74}, - [361] = {.lex_state = 74}, - [362] = {.lex_state = 74}, - [363] = {.lex_state = 74}, - [364] = {.lex_state = 74}, - [365] = {.lex_state = 74}, - [366] = {.lex_state = 74}, - [367] = {.lex_state = 74}, - [368] = {.lex_state = 74}, - [369] = {.lex_state = 74}, - [370] = {.lex_state = 74}, - [371] = {.lex_state = 74}, - [372] = {.lex_state = 74}, - [373] = {.lex_state = 74}, - [374] = {.lex_state = 74}, - [375] = {.lex_state = 74}, - [376] = {.lex_state = 74}, - [377] = {.lex_state = 74}, - [378] = {.lex_state = 74}, - [379] = {.lex_state = 74}, - [380] = {.lex_state = 74}, - [381] = {.lex_state = 74}, - [382] = {.lex_state = 74}, - [383] = {.lex_state = 74}, - [384] = {.lex_state = 74}, - [385] = {.lex_state = 74}, - [386] = {.lex_state = 74}, - [387] = {.lex_state = 74}, - [388] = {.lex_state = 74}, - [389] = {.lex_state = 74}, - [390] = {.lex_state = 74}, - [391] = {.lex_state = 74}, - [392] = {.lex_state = 74}, - [393] = {.lex_state = 74}, - [394] = {.lex_state = 74}, - [395] = {.lex_state = 74}, - [396] = {.lex_state = 74}, - [397] = {.lex_state = 74}, - [398] = {.lex_state = 74}, - [399] = {.lex_state = 74}, - [400] = {.lex_state = 74}, - [401] = {.lex_state = 74}, - [402] = {.lex_state = 74}, - [403] = {.lex_state = 74}, - [404] = {.lex_state = 74}, - [405] = {.lex_state = 74}, - [406] = {.lex_state = 74}, - [407] = {.lex_state = 74}, - [408] = {.lex_state = 74}, - [409] = {.lex_state = 74}, - [410] = {.lex_state = 74}, - [411] = {.lex_state = 74}, - [412] = {.lex_state = 74}, - [413] = {.lex_state = 74}, - [414] = {.lex_state = 74}, - [415] = {.lex_state = 74}, - [416] = {.lex_state = 74}, - [417] = {.lex_state = 74}, - [418] = {.lex_state = 74}, - [419] = {.lex_state = 74}, - [420] = {.lex_state = 74}, - [421] = {.lex_state = 74}, - [422] = {.lex_state = 74}, - [423] = {.lex_state = 74}, - [424] = {.lex_state = 74}, - [425] = {.lex_state = 74}, - [426] = {.lex_state = 74}, - [427] = {.lex_state = 74}, - [428] = {.lex_state = 74}, - [429] = {.lex_state = 74}, - [430] = {.lex_state = 74}, - [431] = {.lex_state = 74}, - [432] = {.lex_state = 74}, - [433] = {.lex_state = 74}, - [434] = {.lex_state = 74, .external_lex_state = 2}, - [435] = {.lex_state = 74, .external_lex_state = 2}, - [436] = {.lex_state = 74, .external_lex_state = 2}, - [437] = {.lex_state = 74, .external_lex_state = 2}, - [438] = {.lex_state = 74, .external_lex_state = 2}, - [439] = {.lex_state = 74, .external_lex_state = 2}, - [440] = {.lex_state = 74, .external_lex_state = 2}, - [441] = {.lex_state = 74, .external_lex_state = 2}, - [442] = {.lex_state = 74, .external_lex_state = 2}, - [443] = {.lex_state = 74, .external_lex_state = 2}, - [444] = {.lex_state = 74, .external_lex_state = 2}, - [445] = {.lex_state = 74, .external_lex_state = 2}, - [446] = {.lex_state = 74, .external_lex_state = 2}, - [447] = {.lex_state = 74, .external_lex_state = 2}, - [448] = {.lex_state = 74, .external_lex_state = 2}, - [449] = {.lex_state = 74, .external_lex_state = 2}, - [450] = {.lex_state = 74, .external_lex_state = 2}, - [451] = {.lex_state = 74, .external_lex_state = 2}, - [452] = {.lex_state = 74, .external_lex_state = 2}, - [453] = {.lex_state = 74, .external_lex_state = 2}, - [454] = {.lex_state = 74}, - [455] = {.lex_state = 74}, - [456] = {.lex_state = 74}, - [457] = {.lex_state = 74}, - [458] = {.lex_state = 74}, - [459] = {.lex_state = 74}, - [460] = {.lex_state = 74}, - [461] = {.lex_state = 74}, - [462] = {.lex_state = 74}, - [463] = {.lex_state = 74}, - [464] = {.lex_state = 74}, - [465] = {.lex_state = 74}, - [466] = {.lex_state = 74}, - [467] = {.lex_state = 74}, - [468] = {.lex_state = 74}, - [469] = {.lex_state = 74}, - [470] = {.lex_state = 74}, - [471] = {.lex_state = 74}, - [472] = {.lex_state = 74}, - [473] = {.lex_state = 74}, - [474] = {.lex_state = 74}, - [475] = {.lex_state = 74}, - [476] = {.lex_state = 74}, - [477] = {.lex_state = 74}, - [478] = {.lex_state = 74}, - [479] = {.lex_state = 74}, - [480] = {.lex_state = 74}, - [481] = {.lex_state = 74}, - [482] = {.lex_state = 74}, - [483] = {.lex_state = 74}, - [484] = {.lex_state = 74}, - [485] = {.lex_state = 74}, - [486] = {.lex_state = 74}, - [487] = {.lex_state = 74}, - [488] = {.lex_state = 74}, - [489] = {.lex_state = 74}, - [490] = {.lex_state = 74}, - [491] = {.lex_state = 74}, - [492] = {.lex_state = 74}, - [493] = {.lex_state = 74}, - [494] = {.lex_state = 74}, - [495] = {.lex_state = 74}, - [496] = {.lex_state = 74}, - [497] = {.lex_state = 74}, - [498] = {.lex_state = 74}, - [499] = {.lex_state = 74}, - [500] = {.lex_state = 74}, - [501] = {.lex_state = 74}, - [502] = {.lex_state = 74}, - [503] = {.lex_state = 74}, - [504] = {.lex_state = 74}, - [505] = {.lex_state = 74}, - [506] = {.lex_state = 74}, - [507] = {.lex_state = 74}, - [508] = {.lex_state = 74}, - [509] = {.lex_state = 74}, - [510] = {.lex_state = 74}, - [511] = {.lex_state = 74}, - [512] = {.lex_state = 74}, - [513] = {.lex_state = 74}, - [514] = {.lex_state = 74}, - [515] = {.lex_state = 74}, - [516] = {.lex_state = 74}, - [517] = {.lex_state = 74}, - [518] = {.lex_state = 74}, - [519] = {.lex_state = 74}, - [520] = {.lex_state = 74}, - [521] = {.lex_state = 74}, - [522] = {.lex_state = 74}, - [523] = {.lex_state = 74}, - [524] = {.lex_state = 74}, - [525] = {.lex_state = 74}, - [526] = {.lex_state = 74}, - [527] = {.lex_state = 74}, - [528] = {.lex_state = 74}, - [529] = {.lex_state = 74}, - [530] = {.lex_state = 74}, - [531] = {.lex_state = 74}, - [532] = {.lex_state = 74}, - [533] = {.lex_state = 74}, - [534] = {.lex_state = 74}, - [535] = {.lex_state = 74}, - [536] = {.lex_state = 74}, - [537] = {.lex_state = 74}, - [538] = {.lex_state = 74}, - [539] = {.lex_state = 74}, - [540] = {.lex_state = 74}, - [541] = {.lex_state = 74}, - [542] = {.lex_state = 74}, - [543] = {.lex_state = 74}, - [544] = {.lex_state = 74}, - [545] = {.lex_state = 74}, - [546] = {.lex_state = 74}, - [547] = {.lex_state = 74}, - [548] = {.lex_state = 74}, - [549] = {.lex_state = 74}, - [550] = {.lex_state = 74}, - [551] = {.lex_state = 74}, - [552] = {.lex_state = 74}, - [553] = {.lex_state = 74}, - [554] = {.lex_state = 74}, - [555] = {.lex_state = 74}, - [556] = {.lex_state = 74}, - [557] = {.lex_state = 74}, - [558] = {.lex_state = 74}, - [559] = {.lex_state = 74}, - [560] = {.lex_state = 74}, - [561] = {.lex_state = 74}, - [562] = {.lex_state = 74}, - [563] = {.lex_state = 74}, - [564] = {.lex_state = 74}, - [565] = {.lex_state = 74}, - [566] = {.lex_state = 74}, - [567] = {.lex_state = 74}, - [568] = {.lex_state = 74}, - [569] = {.lex_state = 74}, - [570] = {.lex_state = 74}, - [571] = {.lex_state = 10}, - [572] = {.lex_state = 10}, - [573] = {.lex_state = 10}, - [574] = {.lex_state = 10}, - [575] = {.lex_state = 10}, - [576] = {.lex_state = 10}, - [577] = {.lex_state = 10}, - [578] = {.lex_state = 10}, - [579] = {.lex_state = 10}, - [580] = {.lex_state = 10}, - [581] = {.lex_state = 10}, - [582] = {.lex_state = 10}, - [583] = {.lex_state = 10}, - [584] = {.lex_state = 10}, - [585] = {.lex_state = 10}, - [586] = {.lex_state = 10}, - [587] = {.lex_state = 10}, - [588] = {.lex_state = 10}, - [589] = {.lex_state = 10}, - [590] = {.lex_state = 10}, - [591] = {.lex_state = 10}, - [592] = {.lex_state = 10}, - [593] = {.lex_state = 10}, - [594] = {.lex_state = 10}, - [595] = {.lex_state = 10}, - [596] = {.lex_state = 10}, - [597] = {.lex_state = 10, .external_lex_state = 2}, - [598] = {.lex_state = 10, .external_lex_state = 2}, - [599] = {.lex_state = 10, .external_lex_state = 2}, - [600] = {.lex_state = 10, .external_lex_state = 2}, - [601] = {.lex_state = 10}, - [602] = {.lex_state = 10, .external_lex_state = 2}, - [603] = {.lex_state = 10}, - [604] = {.lex_state = 10, .external_lex_state = 2}, - [605] = {.lex_state = 10, .external_lex_state = 2}, - [606] = {.lex_state = 10}, - [607] = {.lex_state = 10, .external_lex_state = 2}, - [608] = {.lex_state = 10}, - [609] = {.lex_state = 10}, - [610] = {.lex_state = 10, .external_lex_state = 2}, - [611] = {.lex_state = 10, .external_lex_state = 2}, - [612] = {.lex_state = 10, .external_lex_state = 2}, - [613] = {.lex_state = 10, .external_lex_state = 2}, - [614] = {.lex_state = 10, .external_lex_state = 2}, - [615] = {.lex_state = 10, .external_lex_state = 2}, - [616] = {.lex_state = 10, .external_lex_state = 2}, - [617] = {.lex_state = 10, .external_lex_state = 2}, - [618] = {.lex_state = 10, .external_lex_state = 2}, - [619] = {.lex_state = 10, .external_lex_state = 2}, - [620] = {.lex_state = 10, .external_lex_state = 2}, - [621] = {.lex_state = 10}, - [622] = {.lex_state = 10}, - [623] = {.lex_state = 10, .external_lex_state = 2}, - [624] = {.lex_state = 10, .external_lex_state = 2}, - [625] = {.lex_state = 10}, - [626] = {.lex_state = 10, .external_lex_state = 2}, - [627] = {.lex_state = 10, .external_lex_state = 2}, - [628] = {.lex_state = 10, .external_lex_state = 2}, - [629] = {.lex_state = 10}, - [630] = {.lex_state = 10}, - [631] = {.lex_state = 10, .external_lex_state = 2}, - [632] = {.lex_state = 10, .external_lex_state = 2}, - [633] = {.lex_state = 10}, - [634] = {.lex_state = 10}, - [635] = {.lex_state = 10}, - [636] = {.lex_state = 10}, - [637] = {.lex_state = 10}, - [638] = {.lex_state = 10}, + [190] = {.lex_state = 73, .external_lex_state = 2}, + [191] = {.lex_state = 73}, + [192] = {.lex_state = 73}, + [193] = {.lex_state = 73}, + [194] = {.lex_state = 73}, + [195] = {.lex_state = 73}, + [196] = {.lex_state = 73}, + [197] = {.lex_state = 73, .external_lex_state = 2}, + [198] = {.lex_state = 73}, + [199] = {.lex_state = 73, .external_lex_state = 2}, + [200] = {.lex_state = 73, .external_lex_state = 2}, + [201] = {.lex_state = 73, .external_lex_state = 2}, + [202] = {.lex_state = 73, .external_lex_state = 2}, + [203] = {.lex_state = 73}, + [204] = {.lex_state = 73}, + [205] = {.lex_state = 73}, + [206] = {.lex_state = 73}, + [207] = {.lex_state = 73}, + [208] = {.lex_state = 73}, + [209] = {.lex_state = 73}, + [210] = {.lex_state = 73}, + [211] = {.lex_state = 73}, + [212] = {.lex_state = 73}, + [213] = {.lex_state = 73}, + [214] = {.lex_state = 73}, + [215] = {.lex_state = 73}, + [216] = {.lex_state = 73}, + [217] = {.lex_state = 73}, + [218] = {.lex_state = 73}, + [219] = {.lex_state = 73}, + [220] = {.lex_state = 73}, + [221] = {.lex_state = 73}, + [222] = {.lex_state = 73}, + [223] = {.lex_state = 73}, + [224] = {.lex_state = 73}, + [225] = {.lex_state = 73}, + [226] = {.lex_state = 73}, + [227] = {.lex_state = 73}, + [228] = {.lex_state = 73}, + [229] = {.lex_state = 73}, + [230] = {.lex_state = 73}, + [231] = {.lex_state = 73}, + [232] = {.lex_state = 73}, + [233] = {.lex_state = 73}, + [234] = {.lex_state = 73}, + [235] = {.lex_state = 73}, + [236] = {.lex_state = 73}, + [237] = {.lex_state = 73}, + [238] = {.lex_state = 73}, + [239] = {.lex_state = 73}, + [240] = {.lex_state = 73}, + [241] = {.lex_state = 73}, + [242] = {.lex_state = 73}, + [243] = {.lex_state = 73}, + [244] = {.lex_state = 73}, + [245] = {.lex_state = 73}, + [246] = {.lex_state = 73}, + [247] = {.lex_state = 73}, + [248] = {.lex_state = 73}, + [249] = {.lex_state = 73}, + [250] = {.lex_state = 73}, + [251] = {.lex_state = 73}, + [252] = {.lex_state = 73}, + [253] = {.lex_state = 73}, + [254] = {.lex_state = 73}, + [255] = {.lex_state = 73}, + [256] = {.lex_state = 73}, + [257] = {.lex_state = 73}, + [258] = {.lex_state = 73}, + [259] = {.lex_state = 73}, + [260] = {.lex_state = 73}, + [261] = {.lex_state = 73}, + [262] = {.lex_state = 73}, + [263] = {.lex_state = 73}, + [264] = {.lex_state = 73}, + [265] = {.lex_state = 73}, + [266] = {.lex_state = 73}, + [267] = {.lex_state = 73}, + [268] = {.lex_state = 73}, + [269] = {.lex_state = 73}, + [270] = {.lex_state = 73}, + [271] = {.lex_state = 73}, + [272] = {.lex_state = 73}, + [273] = {.lex_state = 73}, + [274] = {.lex_state = 73}, + [275] = {.lex_state = 73}, + [276] = {.lex_state = 73}, + [277] = {.lex_state = 73}, + [278] = {.lex_state = 73}, + [279] = {.lex_state = 73}, + [280] = {.lex_state = 73}, + [281] = {.lex_state = 73}, + [282] = {.lex_state = 73}, + [283] = {.lex_state = 73}, + [284] = {.lex_state = 73}, + [285] = {.lex_state = 73}, + [286] = {.lex_state = 73}, + [287] = {.lex_state = 73}, + [288] = {.lex_state = 73}, + [289] = {.lex_state = 73}, + [290] = {.lex_state = 73}, + [291] = {.lex_state = 73}, + [292] = {.lex_state = 73}, + [293] = {.lex_state = 73}, + [294] = {.lex_state = 73}, + [295] = {.lex_state = 73}, + [296] = {.lex_state = 73}, + [297] = {.lex_state = 73}, + [298] = {.lex_state = 73}, + [299] = {.lex_state = 73}, + [300] = {.lex_state = 73}, + [301] = {.lex_state = 73}, + [302] = {.lex_state = 73}, + [303] = {.lex_state = 73}, + [304] = {.lex_state = 73}, + [305] = {.lex_state = 73}, + [306] = {.lex_state = 73}, + [307] = {.lex_state = 73}, + [308] = {.lex_state = 73}, + [309] = {.lex_state = 73}, + [310] = {.lex_state = 73}, + [311] = {.lex_state = 73}, + [312] = {.lex_state = 73}, + [313] = {.lex_state = 73}, + [314] = {.lex_state = 73}, + [315] = {.lex_state = 73}, + [316] = {.lex_state = 73}, + [317] = {.lex_state = 73}, + [318] = {.lex_state = 73}, + [319] = {.lex_state = 73}, + [320] = {.lex_state = 73}, + [321] = {.lex_state = 73}, + [322] = {.lex_state = 73}, + [323] = {.lex_state = 73}, + [324] = {.lex_state = 73}, + [325] = {.lex_state = 73}, + [326] = {.lex_state = 73}, + [327] = {.lex_state = 73}, + [328] = {.lex_state = 73}, + [329] = {.lex_state = 73}, + [330] = {.lex_state = 73}, + [331] = {.lex_state = 73}, + [332] = {.lex_state = 73}, + [333] = {.lex_state = 73}, + [334] = {.lex_state = 73}, + [335] = {.lex_state = 73}, + [336] = {.lex_state = 73}, + [337] = {.lex_state = 73}, + [338] = {.lex_state = 73}, + [339] = {.lex_state = 73}, + [340] = {.lex_state = 73}, + [341] = {.lex_state = 73}, + [342] = {.lex_state = 73}, + [343] = {.lex_state = 73}, + [344] = {.lex_state = 73}, + [345] = {.lex_state = 73}, + [346] = {.lex_state = 73}, + [347] = {.lex_state = 73}, + [348] = {.lex_state = 73}, + [349] = {.lex_state = 73}, + [350] = {.lex_state = 73}, + [351] = {.lex_state = 73}, + [352] = {.lex_state = 73}, + [353] = {.lex_state = 73}, + [354] = {.lex_state = 73}, + [355] = {.lex_state = 73}, + [356] = {.lex_state = 73}, + [357] = {.lex_state = 73}, + [358] = {.lex_state = 73}, + [359] = {.lex_state = 73}, + [360] = {.lex_state = 73}, + [361] = {.lex_state = 73}, + [362] = {.lex_state = 73}, + [363] = {.lex_state = 73}, + [364] = {.lex_state = 73}, + [365] = {.lex_state = 73}, + [366] = {.lex_state = 73}, + [367] = {.lex_state = 73}, + [368] = {.lex_state = 73}, + [369] = {.lex_state = 73}, + [370] = {.lex_state = 73}, + [371] = {.lex_state = 73}, + [372] = {.lex_state = 73}, + [373] = {.lex_state = 73}, + [374] = {.lex_state = 73}, + [375] = {.lex_state = 73}, + [376] = {.lex_state = 73}, + [377] = {.lex_state = 73}, + [378] = {.lex_state = 73}, + [379] = {.lex_state = 73}, + [380] = {.lex_state = 73}, + [381] = {.lex_state = 73}, + [382] = {.lex_state = 73}, + [383] = {.lex_state = 73}, + [384] = {.lex_state = 73}, + [385] = {.lex_state = 73}, + [386] = {.lex_state = 73}, + [387] = {.lex_state = 73}, + [388] = {.lex_state = 73}, + [389] = {.lex_state = 73}, + [390] = {.lex_state = 73}, + [391] = {.lex_state = 73}, + [392] = {.lex_state = 73}, + [393] = {.lex_state = 73}, + [394] = {.lex_state = 73}, + [395] = {.lex_state = 73}, + [396] = {.lex_state = 73}, + [397] = {.lex_state = 73}, + [398] = {.lex_state = 73}, + [399] = {.lex_state = 73}, + [400] = {.lex_state = 73}, + [401] = {.lex_state = 73}, + [402] = {.lex_state = 73}, + [403] = {.lex_state = 73}, + [404] = {.lex_state = 73}, + [405] = {.lex_state = 73}, + [406] = {.lex_state = 73}, + [407] = {.lex_state = 73}, + [408] = {.lex_state = 73}, + [409] = {.lex_state = 73}, + [410] = {.lex_state = 73}, + [411] = {.lex_state = 73}, + [412] = {.lex_state = 73}, + [413] = {.lex_state = 73}, + [414] = {.lex_state = 73}, + [415] = {.lex_state = 73}, + [416] = {.lex_state = 73}, + [417] = {.lex_state = 73}, + [418] = {.lex_state = 73}, + [419] = {.lex_state = 73}, + [420] = {.lex_state = 73}, + [421] = {.lex_state = 73}, + [422] = {.lex_state = 73}, + [423] = {.lex_state = 73}, + [424] = {.lex_state = 73}, + [425] = {.lex_state = 73}, + [426] = {.lex_state = 73}, + [427] = {.lex_state = 73}, + [428] = {.lex_state = 73}, + [429] = {.lex_state = 73}, + [430] = {.lex_state = 73}, + [431] = {.lex_state = 73}, + [432] = {.lex_state = 73}, + [433] = {.lex_state = 73}, + [434] = {.lex_state = 73, .external_lex_state = 2}, + [435] = {.lex_state = 73, .external_lex_state = 2}, + [436] = {.lex_state = 73, .external_lex_state = 2}, + [437] = {.lex_state = 73, .external_lex_state = 2}, + [438] = {.lex_state = 73, .external_lex_state = 2}, + [439] = {.lex_state = 73, .external_lex_state = 2}, + [440] = {.lex_state = 73, .external_lex_state = 2}, + [441] = {.lex_state = 73, .external_lex_state = 2}, + [442] = {.lex_state = 73, .external_lex_state = 2}, + [443] = {.lex_state = 73, .external_lex_state = 2}, + [444] = {.lex_state = 73, .external_lex_state = 2}, + [445] = {.lex_state = 73, .external_lex_state = 2}, + [446] = {.lex_state = 73, .external_lex_state = 2}, + [447] = {.lex_state = 73, .external_lex_state = 2}, + [448] = {.lex_state = 73, .external_lex_state = 2}, + [449] = {.lex_state = 73, .external_lex_state = 2}, + [450] = {.lex_state = 73, .external_lex_state = 2}, + [451] = {.lex_state = 73, .external_lex_state = 2}, + [452] = {.lex_state = 73, .external_lex_state = 2}, + [453] = {.lex_state = 73, .external_lex_state = 2}, + [454] = {.lex_state = 73}, + [455] = {.lex_state = 73}, + [456] = {.lex_state = 73}, + [457] = {.lex_state = 73}, + [458] = {.lex_state = 73}, + [459] = {.lex_state = 73}, + [460] = {.lex_state = 73}, + [461] = {.lex_state = 73}, + [462] = {.lex_state = 73}, + [463] = {.lex_state = 73}, + [464] = {.lex_state = 73}, + [465] = {.lex_state = 73}, + [466] = {.lex_state = 73}, + [467] = {.lex_state = 73}, + [468] = {.lex_state = 73}, + [469] = {.lex_state = 73}, + [470] = {.lex_state = 73}, + [471] = {.lex_state = 73}, + [472] = {.lex_state = 73}, + [473] = {.lex_state = 73}, + [474] = {.lex_state = 73}, + [475] = {.lex_state = 73}, + [476] = {.lex_state = 73}, + [477] = {.lex_state = 73}, + [478] = {.lex_state = 73}, + [479] = {.lex_state = 73}, + [480] = {.lex_state = 73}, + [481] = {.lex_state = 73}, + [482] = {.lex_state = 73}, + [483] = {.lex_state = 73}, + [484] = {.lex_state = 73}, + [485] = {.lex_state = 73}, + [486] = {.lex_state = 73}, + [487] = {.lex_state = 73}, + [488] = {.lex_state = 73}, + [489] = {.lex_state = 73}, + [490] = {.lex_state = 73}, + [491] = {.lex_state = 73}, + [492] = {.lex_state = 73}, + [493] = {.lex_state = 73}, + [494] = {.lex_state = 73}, + [495] = {.lex_state = 73}, + [496] = {.lex_state = 73}, + [497] = {.lex_state = 73}, + [498] = {.lex_state = 73}, + [499] = {.lex_state = 73}, + [500] = {.lex_state = 73}, + [501] = {.lex_state = 73}, + [502] = {.lex_state = 73}, + [503] = {.lex_state = 73}, + [504] = {.lex_state = 73}, + [505] = {.lex_state = 73}, + [506] = {.lex_state = 73}, + [507] = {.lex_state = 73}, + [508] = {.lex_state = 73}, + [509] = {.lex_state = 73}, + [510] = {.lex_state = 73}, + [511] = {.lex_state = 73}, + [512] = {.lex_state = 73}, + [513] = {.lex_state = 73}, + [514] = {.lex_state = 73}, + [515] = {.lex_state = 73}, + [516] = {.lex_state = 73}, + [517] = {.lex_state = 73}, + [518] = {.lex_state = 73}, + [519] = {.lex_state = 73}, + [520] = {.lex_state = 73}, + [521] = {.lex_state = 73}, + [522] = {.lex_state = 73}, + [523] = {.lex_state = 73}, + [524] = {.lex_state = 73}, + [525] = {.lex_state = 73}, + [526] = {.lex_state = 73}, + [527] = {.lex_state = 73}, + [528] = {.lex_state = 73}, + [529] = {.lex_state = 73}, + [530] = {.lex_state = 73}, + [531] = {.lex_state = 73}, + [532] = {.lex_state = 73}, + [533] = {.lex_state = 73}, + [534] = {.lex_state = 73}, + [535] = {.lex_state = 73}, + [536] = {.lex_state = 73}, + [537] = {.lex_state = 73}, + [538] = {.lex_state = 73}, + [539] = {.lex_state = 73}, + [540] = {.lex_state = 73}, + [541] = {.lex_state = 73}, + [542] = {.lex_state = 73}, + [543] = {.lex_state = 73}, + [544] = {.lex_state = 73}, + [545] = {.lex_state = 73}, + [546] = {.lex_state = 73}, + [547] = {.lex_state = 73}, + [548] = {.lex_state = 73}, + [549] = {.lex_state = 73}, + [550] = {.lex_state = 73}, + [551] = {.lex_state = 73}, + [552] = {.lex_state = 73}, + [553] = {.lex_state = 73}, + [554] = {.lex_state = 73}, + [555] = {.lex_state = 73}, + [556] = {.lex_state = 73}, + [557] = {.lex_state = 73}, + [558] = {.lex_state = 73}, + [559] = {.lex_state = 73}, + [560] = {.lex_state = 73}, + [561] = {.lex_state = 73}, + [562] = {.lex_state = 73}, + [563] = {.lex_state = 73}, + [564] = {.lex_state = 73}, + [565] = {.lex_state = 73}, + [566] = {.lex_state = 73}, + [567] = {.lex_state = 73}, + [568] = {.lex_state = 73}, + [569] = {.lex_state = 73}, + [570] = {.lex_state = 73}, + [571] = {.lex_state = 74}, + [572] = {.lex_state = 74}, + [573] = {.lex_state = 74}, + [574] = {.lex_state = 74}, + [575] = {.lex_state = 74}, + [576] = {.lex_state = 74}, + [577] = {.lex_state = 74}, + [578] = {.lex_state = 74}, + [579] = {.lex_state = 74}, + [580] = {.lex_state = 74}, + [581] = {.lex_state = 74}, + [582] = {.lex_state = 74}, + [583] = {.lex_state = 74}, + [584] = {.lex_state = 74}, + [585] = {.lex_state = 74}, + [586] = {.lex_state = 74}, + [587] = {.lex_state = 74}, + [588] = {.lex_state = 74}, + [589] = {.lex_state = 74}, + [590] = {.lex_state = 74}, + [591] = {.lex_state = 74}, + [592] = {.lex_state = 74}, + [593] = {.lex_state = 74}, + [594] = {.lex_state = 74}, + [595] = {.lex_state = 74}, + [596] = {.lex_state = 74}, + [597] = {.lex_state = 74, .external_lex_state = 2}, + [598] = {.lex_state = 74, .external_lex_state = 2}, + [599] = {.lex_state = 74, .external_lex_state = 2}, + [600] = {.lex_state = 74, .external_lex_state = 2}, + [601] = {.lex_state = 74}, + [602] = {.lex_state = 74, .external_lex_state = 2}, + [603] = {.lex_state = 74}, + [604] = {.lex_state = 74, .external_lex_state = 2}, + [605] = {.lex_state = 74, .external_lex_state = 2}, + [606] = {.lex_state = 74}, + [607] = {.lex_state = 74, .external_lex_state = 2}, + [608] = {.lex_state = 74}, + [609] = {.lex_state = 74}, + [610] = {.lex_state = 74, .external_lex_state = 2}, + [611] = {.lex_state = 74, .external_lex_state = 2}, + [612] = {.lex_state = 74, .external_lex_state = 2}, + [613] = {.lex_state = 74, .external_lex_state = 2}, + [614] = {.lex_state = 74, .external_lex_state = 2}, + [615] = {.lex_state = 74, .external_lex_state = 2}, + [616] = {.lex_state = 74, .external_lex_state = 2}, + [617] = {.lex_state = 74, .external_lex_state = 2}, + [618] = {.lex_state = 74, .external_lex_state = 2}, + [619] = {.lex_state = 74, .external_lex_state = 2}, + [620] = {.lex_state = 74, .external_lex_state = 2}, + [621] = {.lex_state = 74}, + [622] = {.lex_state = 74}, + [623] = {.lex_state = 74, .external_lex_state = 2}, + [624] = {.lex_state = 74, .external_lex_state = 2}, + [625] = {.lex_state = 74}, + [626] = {.lex_state = 74, .external_lex_state = 2}, + [627] = {.lex_state = 74, .external_lex_state = 2}, + [628] = {.lex_state = 74, .external_lex_state = 2}, + [629] = {.lex_state = 74}, + [630] = {.lex_state = 74}, + [631] = {.lex_state = 74, .external_lex_state = 2}, + [632] = {.lex_state = 74, .external_lex_state = 2}, + [633] = {.lex_state = 74}, + [634] = {.lex_state = 74}, + [635] = {.lex_state = 74}, + [636] = {.lex_state = 74}, + [637] = {.lex_state = 74}, + [638] = {.lex_state = 74}, [639] = {.lex_state = 9}, - [640] = {.lex_state = 75}, - [641] = {.lex_state = 75}, - [642] = {.lex_state = 11}, - [643] = {.lex_state = 11}, - [644] = {.lex_state = 11}, - [645] = {.lex_state = 11}, - [646] = {.lex_state = 11}, - [647] = {.lex_state = 12}, + [640] = {.lex_state = 14}, + [641] = {.lex_state = 14}, + [642] = {.lex_state = 13}, + [643] = {.lex_state = 13}, + [644] = {.lex_state = 13}, + [645] = {.lex_state = 13}, + [646] = {.lex_state = 13}, + [647] = {.lex_state = 11}, [648] = {.lex_state = 20}, - [649] = {.lex_state = 12}, - [650] = {.lex_state = 11}, + [649] = {.lex_state = 11}, + [650] = {.lex_state = 13}, [651] = {.lex_state = 20}, - [652] = {.lex_state = 12}, - [653] = {.lex_state = 12}, - [654] = {.lex_state = 12}, - [655] = {.lex_state = 11}, + [652] = {.lex_state = 11}, + [653] = {.lex_state = 11}, + [654] = {.lex_state = 11}, + [655] = {.lex_state = 13}, [656] = {.lex_state = 20}, [657] = {.lex_state = 20}, - [658] = {.lex_state = 11}, + [658] = {.lex_state = 13}, [659] = {.lex_state = 16}, - [660] = {.lex_state = 11}, - [661] = {.lex_state = 11}, - [662] = {.lex_state = 11}, + [660] = {.lex_state = 13}, + [661] = {.lex_state = 13}, + [662] = {.lex_state = 13}, [663] = {.lex_state = 20}, - [664] = {.lex_state = 11}, - [665] = {.lex_state = 11}, - [666] = {.lex_state = 11}, + [664] = {.lex_state = 13}, + [665] = {.lex_state = 13}, + [666] = {.lex_state = 13}, [667] = {.lex_state = 16}, - [668] = {.lex_state = 11}, - [669] = {.lex_state = 11}, - [670] = {.lex_state = 11}, + [668] = {.lex_state = 13}, + [669] = {.lex_state = 13}, + [670] = {.lex_state = 13}, [671] = {.lex_state = 20}, - [672] = {.lex_state = 12}, - [673] = {.lex_state = 11}, - [674] = {.lex_state = 12}, - [675] = {.lex_state = 11}, - [676] = {.lex_state = 11}, - [677] = {.lex_state = 11}, - [678] = {.lex_state = 11}, - [679] = {.lex_state = 11}, - [680] = {.lex_state = 11}, - [681] = {.lex_state = 11}, - [682] = {.lex_state = 12}, - [683] = {.lex_state = 12}, + [672] = {.lex_state = 11}, + [673] = {.lex_state = 13}, + [674] = {.lex_state = 11}, + [675] = {.lex_state = 13}, + [676] = {.lex_state = 13}, + [677] = {.lex_state = 13}, + [678] = {.lex_state = 13}, + [679] = {.lex_state = 13}, + [680] = {.lex_state = 13}, + [681] = {.lex_state = 13}, + [682] = {.lex_state = 11}, + [683] = {.lex_state = 11}, [684] = {.lex_state = 17}, - [685] = {.lex_state = 12}, - [686] = {.lex_state = 12}, + [685] = {.lex_state = 11}, + [686] = {.lex_state = 11}, [687] = {.lex_state = 17}, - [688] = {.lex_state = 12}, - [689] = {.lex_state = 12}, - [690] = {.lex_state = 12}, - [691] = {.lex_state = 12}, - [692] = {.lex_state = 12}, - [693] = {.lex_state = 12}, + [688] = {.lex_state = 11}, + [689] = {.lex_state = 11}, + [690] = {.lex_state = 11}, + [691] = {.lex_state = 11}, + [692] = {.lex_state = 11}, + [693] = {.lex_state = 11}, [694] = {.lex_state = 17}, [695] = {.lex_state = 17}, - [696] = {.lex_state = 12}, + [696] = {.lex_state = 11}, [697] = {.lex_state = 17}, - [698] = {.lex_state = 12}, + [698] = {.lex_state = 11}, [699] = {.lex_state = 20}, - [700] = {.lex_state = 12}, - [701] = {.lex_state = 12}, - [702] = {.lex_state = 12}, - [703] = {.lex_state = 12}, - [704] = {.lex_state = 12}, - [705] = {.lex_state = 12}, - [706] = {.lex_state = 12}, - [707] = {.lex_state = 12}, - [708] = {.lex_state = 12}, - [709] = {.lex_state = 12}, - [710] = {.lex_state = 12}, - [711] = {.lex_state = 11}, - [712] = {.lex_state = 12}, - [713] = {.lex_state = 12}, - [714] = {.lex_state = 12}, - [715] = {.lex_state = 12}, - [716] = {.lex_state = 12}, - [717] = {.lex_state = 12}, - [718] = {.lex_state = 12}, - [719] = {.lex_state = 12}, - [720] = {.lex_state = 12}, - [721] = {.lex_state = 12}, - [722] = {.lex_state = 12}, - [723] = {.lex_state = 12}, - [724] = {.lex_state = 12}, - [725] = {.lex_state = 12}, - [726] = {.lex_state = 12}, - [727] = {.lex_state = 12}, - [728] = {.lex_state = 12}, - [729] = {.lex_state = 12}, - [730] = {.lex_state = 12}, - [731] = {.lex_state = 12}, - [732] = {.lex_state = 12}, - [733] = {.lex_state = 12}, - [734] = {.lex_state = 12}, - [735] = {.lex_state = 12}, - [736] = {.lex_state = 12}, - [737] = {.lex_state = 12}, - [738] = {.lex_state = 12}, - [739] = {.lex_state = 12}, - [740] = {.lex_state = 12}, - [741] = {.lex_state = 12}, - [742] = {.lex_state = 12}, - [743] = {.lex_state = 12}, - [744] = {.lex_state = 12}, - [745] = {.lex_state = 12}, - [746] = {.lex_state = 12}, - [747] = {.lex_state = 12}, - [748] = {.lex_state = 12}, - [749] = {.lex_state = 12}, - [750] = {.lex_state = 12}, - [751] = {.lex_state = 12}, - [752] = {.lex_state = 12}, - [753] = {.lex_state = 12}, - [754] = {.lex_state = 12}, - [755] = {.lex_state = 12}, - [756] = {.lex_state = 12}, - [757] = {.lex_state = 12}, + [700] = {.lex_state = 11}, + [701] = {.lex_state = 11}, + [702] = {.lex_state = 11}, + [703] = {.lex_state = 11}, + [704] = {.lex_state = 11}, + [705] = {.lex_state = 11}, + [706] = {.lex_state = 11}, + [707] = {.lex_state = 11}, + [708] = {.lex_state = 11}, + [709] = {.lex_state = 11}, + [710] = {.lex_state = 11}, + [711] = {.lex_state = 13}, + [712] = {.lex_state = 11}, + [713] = {.lex_state = 11}, + [714] = {.lex_state = 11}, + [715] = {.lex_state = 11}, + [716] = {.lex_state = 11}, + [717] = {.lex_state = 11}, + [718] = {.lex_state = 11}, + [719] = {.lex_state = 11}, + [720] = {.lex_state = 11}, + [721] = {.lex_state = 11}, + [722] = {.lex_state = 11}, + [723] = {.lex_state = 11}, + [724] = {.lex_state = 11}, + [725] = {.lex_state = 11}, + [726] = {.lex_state = 11}, + [727] = {.lex_state = 11}, + [728] = {.lex_state = 11}, + [729] = {.lex_state = 11}, + [730] = {.lex_state = 11}, + [731] = {.lex_state = 11}, + [732] = {.lex_state = 11}, + [733] = {.lex_state = 11}, + [734] = {.lex_state = 11}, + [735] = {.lex_state = 11}, + [736] = {.lex_state = 11}, + [737] = {.lex_state = 11}, + [738] = {.lex_state = 11}, + [739] = {.lex_state = 11}, + [740] = {.lex_state = 11}, + [741] = {.lex_state = 11}, + [742] = {.lex_state = 11}, + [743] = {.lex_state = 11}, + [744] = {.lex_state = 11}, + [745] = {.lex_state = 11}, + [746] = {.lex_state = 11}, + [747] = {.lex_state = 11}, + [748] = {.lex_state = 11}, + [749] = {.lex_state = 11}, + [750] = {.lex_state = 11}, + [751] = {.lex_state = 11}, + [752] = {.lex_state = 11}, + [753] = {.lex_state = 11}, + [754] = {.lex_state = 11}, + [755] = {.lex_state = 11}, + [756] = {.lex_state = 11}, + [757] = {.lex_state = 11}, [758] = {.lex_state = 17}, - [759] = {.lex_state = 12}, - [760] = {.lex_state = 13}, - [761] = {.lex_state = 12, .external_lex_state = 2}, - [762] = {.lex_state = 12, .external_lex_state = 2}, - [763] = {.lex_state = 12}, - [764] = {.lex_state = 11, .external_lex_state = 2}, - [765] = {.lex_state = 12}, - [766] = {.lex_state = 11, .external_lex_state = 2}, - [767] = {.lex_state = 12, .external_lex_state = 2}, - [768] = {.lex_state = 12}, + [759] = {.lex_state = 11}, + [760] = {.lex_state = 12}, + [761] = {.lex_state = 11, .external_lex_state = 2}, + [762] = {.lex_state = 11, .external_lex_state = 2}, + [763] = {.lex_state = 11}, + [764] = {.lex_state = 13, .external_lex_state = 2}, + [765] = {.lex_state = 11}, + [766] = {.lex_state = 13, .external_lex_state = 2}, + [767] = {.lex_state = 11, .external_lex_state = 2}, + [768] = {.lex_state = 11}, [769] = {.lex_state = 7}, - [770] = {.lex_state = 12}, - [771] = {.lex_state = 12}, - [772] = {.lex_state = 13}, - [773] = {.lex_state = 12, .external_lex_state = 2}, - [774] = {.lex_state = 12}, - [775] = {.lex_state = 11, .external_lex_state = 2}, - [776] = {.lex_state = 11, .external_lex_state = 2}, - [777] = {.lex_state = 11, .external_lex_state = 2}, - [778] = {.lex_state = 11, .external_lex_state = 2}, - [779] = {.lex_state = 11, .external_lex_state = 2}, - [780] = {.lex_state = 12, .external_lex_state = 2}, - [781] = {.lex_state = 11, .external_lex_state = 2}, - [782] = {.lex_state = 11, .external_lex_state = 2}, - [783] = {.lex_state = 11, .external_lex_state = 2}, - [784] = {.lex_state = 11, .external_lex_state = 2}, - [785] = {.lex_state = 11, .external_lex_state = 2}, - [786] = {.lex_state = 11, .external_lex_state = 2}, - [787] = {.lex_state = 11, .external_lex_state = 2}, - [788] = {.lex_state = 11, .external_lex_state = 2}, - [789] = {.lex_state = 11, .external_lex_state = 2}, - [790] = {.lex_state = 11, .external_lex_state = 2}, - [791] = {.lex_state = 11, .external_lex_state = 2}, - [792] = {.lex_state = 11, .external_lex_state = 2}, - [793] = {.lex_state = 11, .external_lex_state = 2}, - [794] = {.lex_state = 11, .external_lex_state = 2}, - [795] = {.lex_state = 12}, - [796] = {.lex_state = 11, .external_lex_state = 2}, - [797] = {.lex_state = 12, .external_lex_state = 2}, + [770] = {.lex_state = 11}, + [771] = {.lex_state = 11}, + [772] = {.lex_state = 12}, + [773] = {.lex_state = 11, .external_lex_state = 2}, + [774] = {.lex_state = 11}, + [775] = {.lex_state = 13, .external_lex_state = 2}, + [776] = {.lex_state = 13, .external_lex_state = 2}, + [777] = {.lex_state = 13, .external_lex_state = 2}, + [778] = {.lex_state = 13, .external_lex_state = 2}, + [779] = {.lex_state = 13, .external_lex_state = 2}, + [780] = {.lex_state = 11, .external_lex_state = 2}, + [781] = {.lex_state = 13, .external_lex_state = 2}, + [782] = {.lex_state = 13, .external_lex_state = 2}, + [783] = {.lex_state = 13, .external_lex_state = 2}, + [784] = {.lex_state = 13, .external_lex_state = 2}, + [785] = {.lex_state = 13, .external_lex_state = 2}, + [786] = {.lex_state = 13, .external_lex_state = 2}, + [787] = {.lex_state = 13, .external_lex_state = 2}, + [788] = {.lex_state = 13, .external_lex_state = 2}, + [789] = {.lex_state = 13, .external_lex_state = 2}, + [790] = {.lex_state = 13, .external_lex_state = 2}, + [791] = {.lex_state = 13, .external_lex_state = 2}, + [792] = {.lex_state = 13, .external_lex_state = 2}, + [793] = {.lex_state = 13, .external_lex_state = 2}, + [794] = {.lex_state = 13, .external_lex_state = 2}, + [795] = {.lex_state = 11}, + [796] = {.lex_state = 13, .external_lex_state = 2}, + [797] = {.lex_state = 11, .external_lex_state = 2}, [798] = {.lex_state = 7}, - [799] = {.lex_state = 11, .external_lex_state = 2}, - [800] = {.lex_state = 11, .external_lex_state = 2}, - [801] = {.lex_state = 11, .external_lex_state = 2}, + [799] = {.lex_state = 13, .external_lex_state = 2}, + [800] = {.lex_state = 13, .external_lex_state = 2}, + [801] = {.lex_state = 13, .external_lex_state = 2}, [802] = {.lex_state = 17}, [803] = {.lex_state = 17}, - [804] = {.lex_state = 13}, - [805] = {.lex_state = 12, .external_lex_state = 2}, - [806] = {.lex_state = 12, .external_lex_state = 2}, - [807] = {.lex_state = 12, .external_lex_state = 2}, - [808] = {.lex_state = 12, .external_lex_state = 2}, - [809] = {.lex_state = 12, .external_lex_state = 2}, + [804] = {.lex_state = 12}, + [805] = {.lex_state = 11, .external_lex_state = 2}, + [806] = {.lex_state = 11, .external_lex_state = 2}, + [807] = {.lex_state = 11, .external_lex_state = 2}, + [808] = {.lex_state = 11, .external_lex_state = 2}, + [809] = {.lex_state = 11, .external_lex_state = 2}, [810] = {.lex_state = 17}, - [811] = {.lex_state = 12, .external_lex_state = 2}, - [812] = {.lex_state = 12, .external_lex_state = 2}, - [813] = {.lex_state = 12, .external_lex_state = 2}, - [814] = {.lex_state = 12, .external_lex_state = 2}, - [815] = {.lex_state = 12, .external_lex_state = 2}, - [816] = {.lex_state = 12, .external_lex_state = 2}, + [811] = {.lex_state = 11, .external_lex_state = 2}, + [812] = {.lex_state = 11, .external_lex_state = 2}, + [813] = {.lex_state = 11, .external_lex_state = 2}, + [814] = {.lex_state = 11, .external_lex_state = 2}, + [815] = {.lex_state = 11, .external_lex_state = 2}, + [816] = {.lex_state = 11, .external_lex_state = 2}, [817] = {.lex_state = 17}, - [818] = {.lex_state = 12, .external_lex_state = 2}, - [819] = {.lex_state = 12, .external_lex_state = 2}, - [820] = {.lex_state = 12, .external_lex_state = 2}, - [821] = {.lex_state = 12, .external_lex_state = 2}, + [818] = {.lex_state = 11, .external_lex_state = 2}, + [819] = {.lex_state = 11, .external_lex_state = 2}, + [820] = {.lex_state = 11, .external_lex_state = 2}, + [821] = {.lex_state = 11, .external_lex_state = 2}, [822] = {.lex_state = 17}, - [823] = {.lex_state = 12, .external_lex_state = 2}, - [824] = {.lex_state = 12, .external_lex_state = 2}, - [825] = {.lex_state = 13}, - [826] = {.lex_state = 11, .external_lex_state = 2}, - [827] = {.lex_state = 12, .external_lex_state = 2}, - [828] = {.lex_state = 12, .external_lex_state = 2}, + [823] = {.lex_state = 11, .external_lex_state = 2}, + [824] = {.lex_state = 11, .external_lex_state = 2}, + [825] = {.lex_state = 12}, + [826] = {.lex_state = 13, .external_lex_state = 2}, + [827] = {.lex_state = 11, .external_lex_state = 2}, + [828] = {.lex_state = 11, .external_lex_state = 2}, [829] = {.lex_state = 17}, - [830] = {.lex_state = 12, .external_lex_state = 2}, - [831] = {.lex_state = 12, .external_lex_state = 2}, + [830] = {.lex_state = 11, .external_lex_state = 2}, + [831] = {.lex_state = 11, .external_lex_state = 2}, [832] = {.lex_state = 17}, [833] = {.lex_state = 17}, [834] = {.lex_state = 17}, [835] = {.lex_state = 17}, - [836] = {.lex_state = 12, .external_lex_state = 2}, + [836] = {.lex_state = 11, .external_lex_state = 2}, [837] = {.lex_state = 17}, - [838] = {.lex_state = 12, .external_lex_state = 2}, - [839] = {.lex_state = 12, .external_lex_state = 2}, - [840] = {.lex_state = 12, .external_lex_state = 2}, - [841] = {.lex_state = 12, .external_lex_state = 2}, + [838] = {.lex_state = 11, .external_lex_state = 2}, + [839] = {.lex_state = 11, .external_lex_state = 2}, + [840] = {.lex_state = 11, .external_lex_state = 2}, + [841] = {.lex_state = 11, .external_lex_state = 2}, [842] = {.lex_state = 17}, - [843] = {.lex_state = 12, .external_lex_state = 2}, + [843] = {.lex_state = 11, .external_lex_state = 2}, [844] = {.lex_state = 17}, - [845] = {.lex_state = 12, .external_lex_state = 2}, - [846] = {.lex_state = 12, .external_lex_state = 2}, - [847] = {.lex_state = 12, .external_lex_state = 2}, - [848] = {.lex_state = 12, .external_lex_state = 2}, + [845] = {.lex_state = 11, .external_lex_state = 2}, + [846] = {.lex_state = 11, .external_lex_state = 2}, + [847] = {.lex_state = 11, .external_lex_state = 2}, + [848] = {.lex_state = 11, .external_lex_state = 2}, [849] = {.lex_state = 17}, - [850] = {.lex_state = 12, .external_lex_state = 2}, - [851] = {.lex_state = 12, .external_lex_state = 2}, + [850] = {.lex_state = 11, .external_lex_state = 2}, + [851] = {.lex_state = 11, .external_lex_state = 2}, [852] = {.lex_state = 17}, - [853] = {.lex_state = 12, .external_lex_state = 2}, - [854] = {.lex_state = 12, .external_lex_state = 2}, - [855] = {.lex_state = 12, .external_lex_state = 2}, - [856] = {.lex_state = 12, .external_lex_state = 2}, - [857] = {.lex_state = 12, .external_lex_state = 2}, - [858] = {.lex_state = 12, .external_lex_state = 2}, - [859] = {.lex_state = 12, .external_lex_state = 2}, - [860] = {.lex_state = 12, .external_lex_state = 2}, - [861] = {.lex_state = 12, .external_lex_state = 2}, - [862] = {.lex_state = 12, .external_lex_state = 2}, - [863] = {.lex_state = 12, .external_lex_state = 2}, - [864] = {.lex_state = 12, .external_lex_state = 2}, - [865] = {.lex_state = 12, .external_lex_state = 2}, - [866] = {.lex_state = 12, .external_lex_state = 2}, - [867] = {.lex_state = 12, .external_lex_state = 2}, - [868] = {.lex_state = 12, .external_lex_state = 2}, - [869] = {.lex_state = 12, .external_lex_state = 2}, - [870] = {.lex_state = 12, .external_lex_state = 2}, - [871] = {.lex_state = 12, .external_lex_state = 2}, - [872] = {.lex_state = 12}, - [873] = {.lex_state = 12, .external_lex_state = 2}, - [874] = {.lex_state = 12, .external_lex_state = 2}, - [875] = {.lex_state = 12, .external_lex_state = 2}, - [876] = {.lex_state = 12, .external_lex_state = 2}, - [877] = {.lex_state = 12, .external_lex_state = 2}, - [878] = {.lex_state = 12, .external_lex_state = 2}, - [879] = {.lex_state = 12, .external_lex_state = 2}, - [880] = {.lex_state = 12, .external_lex_state = 2}, - [881] = {.lex_state = 12, .external_lex_state = 2}, - [882] = {.lex_state = 12, .external_lex_state = 2}, - [883] = {.lex_state = 12, .external_lex_state = 2}, - [884] = {.lex_state = 12, .external_lex_state = 2}, - [885] = {.lex_state = 12, .external_lex_state = 2}, - [886] = {.lex_state = 12, .external_lex_state = 2}, - [887] = {.lex_state = 12, .external_lex_state = 2}, - [888] = {.lex_state = 12}, - [889] = {.lex_state = 12, .external_lex_state = 2}, - [890] = {.lex_state = 12, .external_lex_state = 2}, - [891] = {.lex_state = 12, .external_lex_state = 2}, - [892] = {.lex_state = 12, .external_lex_state = 2}, - [893] = {.lex_state = 12, .external_lex_state = 2}, - [894] = {.lex_state = 12, .external_lex_state = 2}, - [895] = {.lex_state = 12, .external_lex_state = 2}, - [896] = {.lex_state = 12, .external_lex_state = 2}, - [897] = {.lex_state = 12, .external_lex_state = 2}, - [898] = {.lex_state = 12, .external_lex_state = 2}, - [899] = {.lex_state = 12, .external_lex_state = 2}, - [900] = {.lex_state = 12, .external_lex_state = 2}, - [901] = {.lex_state = 13}, - [902] = {.lex_state = 13}, - [903] = {.lex_state = 13}, - [904] = {.lex_state = 13}, - [905] = {.lex_state = 13}, - [906] = {.lex_state = 13}, - [907] = {.lex_state = 13}, - [908] = {.lex_state = 13}, - [909] = {.lex_state = 13}, - [910] = {.lex_state = 13}, - [911] = {.lex_state = 13}, - [912] = {.lex_state = 13}, - [913] = {.lex_state = 13}, - [914] = {.lex_state = 13}, - [915] = {.lex_state = 13}, - [916] = {.lex_state = 13}, - [917] = {.lex_state = 13}, - [918] = {.lex_state = 13}, - [919] = {.lex_state = 13}, - [920] = {.lex_state = 13}, - [921] = {.lex_state = 13}, - [922] = {.lex_state = 13}, - [923] = {.lex_state = 13}, - [924] = {.lex_state = 13}, - [925] = {.lex_state = 13}, - [926] = {.lex_state = 13}, - [927] = {.lex_state = 13}, - [928] = {.lex_state = 13}, - [929] = {.lex_state = 13}, - [930] = {.lex_state = 13}, - [931] = {.lex_state = 13}, - [932] = {.lex_state = 13}, - [933] = {.lex_state = 13}, - [934] = {.lex_state = 13}, - [935] = {.lex_state = 13}, - [936] = {.lex_state = 13}, - [937] = {.lex_state = 13}, - [938] = {.lex_state = 13}, - [939] = {.lex_state = 13}, - [940] = {.lex_state = 13}, - [941] = {.lex_state = 13}, - [942] = {.lex_state = 13}, - [943] = {.lex_state = 13}, - [944] = {.lex_state = 13}, - [945] = {.lex_state = 13}, - [946] = {.lex_state = 13}, - [947] = {.lex_state = 13}, - [948] = {.lex_state = 13}, - [949] = {.lex_state = 13}, - [950] = {.lex_state = 13}, - [951] = {.lex_state = 13}, - [952] = {.lex_state = 13}, - [953] = {.lex_state = 13}, - [954] = {.lex_state = 13}, - [955] = {.lex_state = 13}, - [956] = {.lex_state = 13}, - [957] = {.lex_state = 13}, - [958] = {.lex_state = 13}, - [959] = {.lex_state = 14}, - [960] = {.lex_state = 13}, - [961] = {.lex_state = 13}, - [962] = {.lex_state = 13}, - [963] = {.lex_state = 13}, - [964] = {.lex_state = 13}, - [965] = {.lex_state = 13}, - [966] = {.lex_state = 13, .external_lex_state = 2}, - [967] = {.lex_state = 13, .external_lex_state = 2}, - [968] = {.lex_state = 13}, - [969] = {.lex_state = 13}, - [970] = {.lex_state = 13}, - [971] = {.lex_state = 13}, - [972] = {.lex_state = 13}, - [973] = {.lex_state = 13}, - [974] = {.lex_state = 13}, - [975] = {.lex_state = 13}, - [976] = {.lex_state = 13}, - [977] = {.lex_state = 13}, - [978] = {.lex_state = 13}, - [979] = {.lex_state = 13}, - [980] = {.lex_state = 13}, - [981] = {.lex_state = 13}, - [982] = {.lex_state = 13}, - [983] = {.lex_state = 13}, - [984] = {.lex_state = 13}, - [985] = {.lex_state = 13}, - [986] = {.lex_state = 13}, - [987] = {.lex_state = 13}, - [988] = {.lex_state = 13}, - [989] = {.lex_state = 13}, - [990] = {.lex_state = 13}, - [991] = {.lex_state = 13}, - [992] = {.lex_state = 13}, - [993] = {.lex_state = 13}, - [994] = {.lex_state = 13}, - [995] = {.lex_state = 13}, - [996] = {.lex_state = 13}, - [997] = {.lex_state = 13}, - [998] = {.lex_state = 13}, - [999] = {.lex_state = 13}, - [1000] = {.lex_state = 13}, - [1001] = {.lex_state = 13}, - [1002] = {.lex_state = 13}, - [1003] = {.lex_state = 13}, - [1004] = {.lex_state = 13}, - [1005] = {.lex_state = 13}, - [1006] = {.lex_state = 13}, - [1007] = {.lex_state = 13}, - [1008] = {.lex_state = 13}, - [1009] = {.lex_state = 13}, - [1010] = {.lex_state = 13}, - [1011] = {.lex_state = 13}, - [1012] = {.lex_state = 13}, - [1013] = {.lex_state = 13}, - [1014] = {.lex_state = 13}, - [1015] = {.lex_state = 75}, - [1016] = {.lex_state = 13}, - [1017] = {.lex_state = 13}, - [1018] = {.lex_state = 13}, - [1019] = {.lex_state = 13}, - [1020] = {.lex_state = 13}, - [1021] = {.lex_state = 13}, - [1022] = {.lex_state = 13}, - [1023] = {.lex_state = 13}, - [1024] = {.lex_state = 13}, - [1025] = {.lex_state = 13}, - [1026] = {.lex_state = 13}, - [1027] = {.lex_state = 13}, - [1028] = {.lex_state = 13}, - [1029] = {.lex_state = 13}, - [1030] = {.lex_state = 13}, - [1031] = {.lex_state = 13}, - [1032] = {.lex_state = 13}, - [1033] = {.lex_state = 13, .external_lex_state = 2}, - [1034] = {.lex_state = 13, .external_lex_state = 2}, - [1035] = {.lex_state = 13, .external_lex_state = 2}, - [1036] = {.lex_state = 13, .external_lex_state = 2}, - [1037] = {.lex_state = 13, .external_lex_state = 2}, - [1038] = {.lex_state = 13, .external_lex_state = 2}, - [1039] = {.lex_state = 13, .external_lex_state = 2}, - [1040] = {.lex_state = 13, .external_lex_state = 2}, - [1041] = {.lex_state = 13, .external_lex_state = 2}, - [1042] = {.lex_state = 13, .external_lex_state = 2}, - [1043] = {.lex_state = 13, .external_lex_state = 2}, - [1044] = {.lex_state = 13, .external_lex_state = 2}, - [1045] = {.lex_state = 13, .external_lex_state = 2}, - [1046] = {.lex_state = 13, .external_lex_state = 2}, - [1047] = {.lex_state = 13, .external_lex_state = 2}, - [1048] = {.lex_state = 13, .external_lex_state = 2}, - [1049] = {.lex_state = 13, .external_lex_state = 2}, - [1050] = {.lex_state = 13, .external_lex_state = 2}, - [1051] = {.lex_state = 13, .external_lex_state = 2}, - [1052] = {.lex_state = 13, .external_lex_state = 2}, - [1053] = {.lex_state = 13, .external_lex_state = 2}, - [1054] = {.lex_state = 13, .external_lex_state = 2}, - [1055] = {.lex_state = 13, .external_lex_state = 2}, - [1056] = {.lex_state = 13, .external_lex_state = 2}, - [1057] = {.lex_state = 13, .external_lex_state = 2}, - [1058] = {.lex_state = 13, .external_lex_state = 2}, - [1059] = {.lex_state = 13, .external_lex_state = 2}, - [1060] = {.lex_state = 75}, - [1061] = {.lex_state = 13, .external_lex_state = 2}, - [1062] = {.lex_state = 13, .external_lex_state = 2}, - [1063] = {.lex_state = 75}, - [1064] = {.lex_state = 13, .external_lex_state = 2}, - [1065] = {.lex_state = 13, .external_lex_state = 2}, - [1066] = {.lex_state = 13, .external_lex_state = 2}, - [1067] = {.lex_state = 13, .external_lex_state = 2}, - [1068] = {.lex_state = 13, .external_lex_state = 2}, - [1069] = {.lex_state = 75}, - [1070] = {.lex_state = 13, .external_lex_state = 2}, - [1071] = {.lex_state = 13, .external_lex_state = 2}, - [1072] = {.lex_state = 13, .external_lex_state = 2}, - [1073] = {.lex_state = 13, .external_lex_state = 2}, - [1074] = {.lex_state = 13, .external_lex_state = 2}, - [1075] = {.lex_state = 13, .external_lex_state = 2}, - [1076] = {.lex_state = 13, .external_lex_state = 2}, - [1077] = {.lex_state = 13, .external_lex_state = 2}, - [1078] = {.lex_state = 13, .external_lex_state = 2}, - [1079] = {.lex_state = 13, .external_lex_state = 2}, - [1080] = {.lex_state = 13, .external_lex_state = 2}, - [1081] = {.lex_state = 75}, - [1082] = {.lex_state = 13, .external_lex_state = 2}, - [1083] = {.lex_state = 13, .external_lex_state = 2}, - [1084] = {.lex_state = 13, .external_lex_state = 2}, - [1085] = {.lex_state = 75}, - [1086] = {.lex_state = 13, .external_lex_state = 2}, - [1087] = {.lex_state = 13, .external_lex_state = 2}, - [1088] = {.lex_state = 13, .external_lex_state = 2}, - [1089] = {.lex_state = 13, .external_lex_state = 2}, - [1090] = {.lex_state = 13, .external_lex_state = 2}, - [1091] = {.lex_state = 13, .external_lex_state = 2}, - [1092] = {.lex_state = 13, .external_lex_state = 2}, - [1093] = {.lex_state = 13, .external_lex_state = 2}, - [1094] = {.lex_state = 13, .external_lex_state = 2}, - [1095] = {.lex_state = 13, .external_lex_state = 2}, - [1096] = {.lex_state = 13, .external_lex_state = 2}, - [1097] = {.lex_state = 13, .external_lex_state = 2}, - [1098] = {.lex_state = 13, .external_lex_state = 2}, - [1099] = {.lex_state = 13, .external_lex_state = 2}, - [1100] = {.lex_state = 13, .external_lex_state = 2}, - [1101] = {.lex_state = 13, .external_lex_state = 2}, - [1102] = {.lex_state = 13, .external_lex_state = 2}, - [1103] = {.lex_state = 13, .external_lex_state = 2}, - [1104] = {.lex_state = 13, .external_lex_state = 2}, - [1105] = {.lex_state = 13, .external_lex_state = 2}, - [1106] = {.lex_state = 13, .external_lex_state = 2}, - [1107] = {.lex_state = 13, .external_lex_state = 2}, - [1108] = {.lex_state = 13, .external_lex_state = 2}, - [1109] = {.lex_state = 13, .external_lex_state = 2}, - [1110] = {.lex_state = 13, .external_lex_state = 2}, - [1111] = {.lex_state = 75}, - [1112] = {.lex_state = 13, .external_lex_state = 2}, - [1113] = {.lex_state = 13, .external_lex_state = 2}, - [1114] = {.lex_state = 13, .external_lex_state = 2}, - [1115] = {.lex_state = 13, .external_lex_state = 2}, - [1116] = {.lex_state = 13, .external_lex_state = 2}, - [1117] = {.lex_state = 13, .external_lex_state = 2}, - [1118] = {.lex_state = 13, .external_lex_state = 2}, - [1119] = {.lex_state = 13, .external_lex_state = 2}, - [1120] = {.lex_state = 13, .external_lex_state = 2}, - [1121] = {.lex_state = 13, .external_lex_state = 2}, - [1122] = {.lex_state = 13, .external_lex_state = 2}, - [1123] = {.lex_state = 13, .external_lex_state = 2}, - [1124] = {.lex_state = 13, .external_lex_state = 2}, - [1125] = {.lex_state = 13, .external_lex_state = 2}, - [1126] = {.lex_state = 13, .external_lex_state = 2}, - [1127] = {.lex_state = 13, .external_lex_state = 2}, - [1128] = {.lex_state = 13, .external_lex_state = 2}, - [1129] = {.lex_state = 13, .external_lex_state = 2}, - [1130] = {.lex_state = 13, .external_lex_state = 2}, - [1131] = {.lex_state = 13, .external_lex_state = 2}, - [1132] = {.lex_state = 13, .external_lex_state = 2}, - [1133] = {.lex_state = 13, .external_lex_state = 2}, - [1134] = {.lex_state = 13, .external_lex_state = 2}, - [1135] = {.lex_state = 13, .external_lex_state = 2}, - [1136] = {.lex_state = 13, .external_lex_state = 2}, - [1137] = {.lex_state = 14}, - [1138] = {.lex_state = 13}, - [1139] = {.lex_state = 13}, - [1140] = {.lex_state = 13}, - [1141] = {.lex_state = 13}, - [1142] = {.lex_state = 13}, - [1143] = {.lex_state = 13}, - [1144] = {.lex_state = 13}, - [1145] = {.lex_state = 13}, - [1146] = {.lex_state = 13}, - [1147] = {.lex_state = 13}, - [1148] = {.lex_state = 13}, - [1149] = {.lex_state = 13}, - [1150] = {.lex_state = 13}, - [1151] = {.lex_state = 13}, - [1152] = {.lex_state = 13}, - [1153] = {.lex_state = 13}, - [1154] = {.lex_state = 13}, - [1155] = {.lex_state = 13}, - [1156] = {.lex_state = 13}, - [1157] = {.lex_state = 13}, - [1158] = {.lex_state = 13}, - [1159] = {.lex_state = 13}, - [1160] = {.lex_state = 13}, - [1161] = {.lex_state = 13}, - [1162] = {.lex_state = 13}, - [1163] = {.lex_state = 13}, - [1164] = {.lex_state = 13}, - [1165] = {.lex_state = 13}, - [1166] = {.lex_state = 13}, - [1167] = {.lex_state = 14}, - [1168] = {.lex_state = 13}, - [1169] = {.lex_state = 13}, - [1170] = {.lex_state = 13}, - [1171] = {.lex_state = 13}, - [1172] = {.lex_state = 13}, - [1173] = {.lex_state = 13, .external_lex_state = 2}, - [1174] = {.lex_state = 13}, - [1175] = {.lex_state = 13, .external_lex_state = 2}, - [1176] = {.lex_state = 13, .external_lex_state = 2}, - [1177] = {.lex_state = 13, .external_lex_state = 2}, - [1178] = {.lex_state = 13}, - [1179] = {.lex_state = 13}, - [1180] = {.lex_state = 13}, - [1181] = {.lex_state = 13, .external_lex_state = 2}, - [1182] = {.lex_state = 13, .external_lex_state = 2}, - [1183] = {.lex_state = 13}, - [1184] = {.lex_state = 13}, + [853] = {.lex_state = 11, .external_lex_state = 2}, + [854] = {.lex_state = 11, .external_lex_state = 2}, + [855] = {.lex_state = 11, .external_lex_state = 2}, + [856] = {.lex_state = 11, .external_lex_state = 2}, + [857] = {.lex_state = 11, .external_lex_state = 2}, + [858] = {.lex_state = 11, .external_lex_state = 2}, + [859] = {.lex_state = 11, .external_lex_state = 2}, + [860] = {.lex_state = 11, .external_lex_state = 2}, + [861] = {.lex_state = 11, .external_lex_state = 2}, + [862] = {.lex_state = 11, .external_lex_state = 2}, + [863] = {.lex_state = 11, .external_lex_state = 2}, + [864] = {.lex_state = 11, .external_lex_state = 2}, + [865] = {.lex_state = 11, .external_lex_state = 2}, + [866] = {.lex_state = 11, .external_lex_state = 2}, + [867] = {.lex_state = 11, .external_lex_state = 2}, + [868] = {.lex_state = 11, .external_lex_state = 2}, + [869] = {.lex_state = 11, .external_lex_state = 2}, + [870] = {.lex_state = 11, .external_lex_state = 2}, + [871] = {.lex_state = 11, .external_lex_state = 2}, + [872] = {.lex_state = 11}, + [873] = {.lex_state = 11, .external_lex_state = 2}, + [874] = {.lex_state = 11, .external_lex_state = 2}, + [875] = {.lex_state = 11, .external_lex_state = 2}, + [876] = {.lex_state = 11, .external_lex_state = 2}, + [877] = {.lex_state = 11, .external_lex_state = 2}, + [878] = {.lex_state = 11, .external_lex_state = 2}, + [879] = {.lex_state = 11, .external_lex_state = 2}, + [880] = {.lex_state = 11, .external_lex_state = 2}, + [881] = {.lex_state = 11, .external_lex_state = 2}, + [882] = {.lex_state = 11, .external_lex_state = 2}, + [883] = {.lex_state = 11, .external_lex_state = 2}, + [884] = {.lex_state = 11, .external_lex_state = 2}, + [885] = {.lex_state = 11, .external_lex_state = 2}, + [886] = {.lex_state = 11, .external_lex_state = 2}, + [887] = {.lex_state = 11, .external_lex_state = 2}, + [888] = {.lex_state = 11}, + [889] = {.lex_state = 11, .external_lex_state = 2}, + [890] = {.lex_state = 11, .external_lex_state = 2}, + [891] = {.lex_state = 11, .external_lex_state = 2}, + [892] = {.lex_state = 11, .external_lex_state = 2}, + [893] = {.lex_state = 11, .external_lex_state = 2}, + [894] = {.lex_state = 11, .external_lex_state = 2}, + [895] = {.lex_state = 11, .external_lex_state = 2}, + [896] = {.lex_state = 11, .external_lex_state = 2}, + [897] = {.lex_state = 11, .external_lex_state = 2}, + [898] = {.lex_state = 11, .external_lex_state = 2}, + [899] = {.lex_state = 11, .external_lex_state = 2}, + [900] = {.lex_state = 11, .external_lex_state = 2}, + [901] = {.lex_state = 12}, + [902] = {.lex_state = 12}, + [903] = {.lex_state = 12}, + [904] = {.lex_state = 12}, + [905] = {.lex_state = 12}, + [906] = {.lex_state = 12}, + [907] = {.lex_state = 12}, + [908] = {.lex_state = 12}, + [909] = {.lex_state = 12}, + [910] = {.lex_state = 12}, + [911] = {.lex_state = 12}, + [912] = {.lex_state = 12}, + [913] = {.lex_state = 12}, + [914] = {.lex_state = 12}, + [915] = {.lex_state = 12}, + [916] = {.lex_state = 12}, + [917] = {.lex_state = 12}, + [918] = {.lex_state = 12}, + [919] = {.lex_state = 12}, + [920] = {.lex_state = 12}, + [921] = {.lex_state = 12}, + [922] = {.lex_state = 12}, + [923] = {.lex_state = 12}, + [924] = {.lex_state = 12}, + [925] = {.lex_state = 12}, + [926] = {.lex_state = 12}, + [927] = {.lex_state = 12}, + [928] = {.lex_state = 12}, + [929] = {.lex_state = 12}, + [930] = {.lex_state = 12}, + [931] = {.lex_state = 12}, + [932] = {.lex_state = 12}, + [933] = {.lex_state = 12}, + [934] = {.lex_state = 12}, + [935] = {.lex_state = 12}, + [936] = {.lex_state = 12}, + [937] = {.lex_state = 12}, + [938] = {.lex_state = 12}, + [939] = {.lex_state = 12}, + [940] = {.lex_state = 12}, + [941] = {.lex_state = 12}, + [942] = {.lex_state = 12}, + [943] = {.lex_state = 12}, + [944] = {.lex_state = 12}, + [945] = {.lex_state = 12}, + [946] = {.lex_state = 12}, + [947] = {.lex_state = 12}, + [948] = {.lex_state = 12}, + [949] = {.lex_state = 12}, + [950] = {.lex_state = 12}, + [951] = {.lex_state = 12}, + [952] = {.lex_state = 12}, + [953] = {.lex_state = 12}, + [954] = {.lex_state = 12}, + [955] = {.lex_state = 12}, + [956] = {.lex_state = 12}, + [957] = {.lex_state = 12}, + [958] = {.lex_state = 12}, + [959] = {.lex_state = 23}, + [960] = {.lex_state = 12}, + [961] = {.lex_state = 12}, + [962] = {.lex_state = 12}, + [963] = {.lex_state = 12}, + [964] = {.lex_state = 12}, + [965] = {.lex_state = 12}, + [966] = {.lex_state = 12, .external_lex_state = 2}, + [967] = {.lex_state = 12, .external_lex_state = 2}, + [968] = {.lex_state = 12}, + [969] = {.lex_state = 12}, + [970] = {.lex_state = 12}, + [971] = {.lex_state = 12}, + [972] = {.lex_state = 12}, + [973] = {.lex_state = 12}, + [974] = {.lex_state = 12}, + [975] = {.lex_state = 12}, + [976] = {.lex_state = 12}, + [977] = {.lex_state = 12}, + [978] = {.lex_state = 12}, + [979] = {.lex_state = 12}, + [980] = {.lex_state = 12}, + [981] = {.lex_state = 12}, + [982] = {.lex_state = 12}, + [983] = {.lex_state = 12}, + [984] = {.lex_state = 12}, + [985] = {.lex_state = 12}, + [986] = {.lex_state = 12}, + [987] = {.lex_state = 12}, + [988] = {.lex_state = 12}, + [989] = {.lex_state = 12}, + [990] = {.lex_state = 12}, + [991] = {.lex_state = 12}, + [992] = {.lex_state = 12}, + [993] = {.lex_state = 12}, + [994] = {.lex_state = 12}, + [995] = {.lex_state = 12}, + [996] = {.lex_state = 12}, + [997] = {.lex_state = 12}, + [998] = {.lex_state = 12}, + [999] = {.lex_state = 12}, + [1000] = {.lex_state = 12}, + [1001] = {.lex_state = 12}, + [1002] = {.lex_state = 12}, + [1003] = {.lex_state = 12}, + [1004] = {.lex_state = 12}, + [1005] = {.lex_state = 12}, + [1006] = {.lex_state = 12}, + [1007] = {.lex_state = 12}, + [1008] = {.lex_state = 12}, + [1009] = {.lex_state = 12}, + [1010] = {.lex_state = 12}, + [1011] = {.lex_state = 12}, + [1012] = {.lex_state = 12}, + [1013] = {.lex_state = 12}, + [1014] = {.lex_state = 12}, + [1015] = {.lex_state = 14}, + [1016] = {.lex_state = 12}, + [1017] = {.lex_state = 12}, + [1018] = {.lex_state = 12}, + [1019] = {.lex_state = 12}, + [1020] = {.lex_state = 12}, + [1021] = {.lex_state = 12}, + [1022] = {.lex_state = 12}, + [1023] = {.lex_state = 12}, + [1024] = {.lex_state = 12}, + [1025] = {.lex_state = 12}, + [1026] = {.lex_state = 12}, + [1027] = {.lex_state = 12}, + [1028] = {.lex_state = 12}, + [1029] = {.lex_state = 12}, + [1030] = {.lex_state = 12}, + [1031] = {.lex_state = 12}, + [1032] = {.lex_state = 12}, + [1033] = {.lex_state = 12, .external_lex_state = 2}, + [1034] = {.lex_state = 12, .external_lex_state = 2}, + [1035] = {.lex_state = 12, .external_lex_state = 2}, + [1036] = {.lex_state = 12, .external_lex_state = 2}, + [1037] = {.lex_state = 12, .external_lex_state = 2}, + [1038] = {.lex_state = 12, .external_lex_state = 2}, + [1039] = {.lex_state = 12, .external_lex_state = 2}, + [1040] = {.lex_state = 12, .external_lex_state = 2}, + [1041] = {.lex_state = 12, .external_lex_state = 2}, + [1042] = {.lex_state = 12, .external_lex_state = 2}, + [1043] = {.lex_state = 12, .external_lex_state = 2}, + [1044] = {.lex_state = 12, .external_lex_state = 2}, + [1045] = {.lex_state = 12, .external_lex_state = 2}, + [1046] = {.lex_state = 12, .external_lex_state = 2}, + [1047] = {.lex_state = 12, .external_lex_state = 2}, + [1048] = {.lex_state = 12, .external_lex_state = 2}, + [1049] = {.lex_state = 12, .external_lex_state = 2}, + [1050] = {.lex_state = 12, .external_lex_state = 2}, + [1051] = {.lex_state = 12, .external_lex_state = 2}, + [1052] = {.lex_state = 12, .external_lex_state = 2}, + [1053] = {.lex_state = 12, .external_lex_state = 2}, + [1054] = {.lex_state = 12, .external_lex_state = 2}, + [1055] = {.lex_state = 12, .external_lex_state = 2}, + [1056] = {.lex_state = 12, .external_lex_state = 2}, + [1057] = {.lex_state = 12, .external_lex_state = 2}, + [1058] = {.lex_state = 12, .external_lex_state = 2}, + [1059] = {.lex_state = 12, .external_lex_state = 2}, + [1060] = {.lex_state = 14}, + [1061] = {.lex_state = 12, .external_lex_state = 2}, + [1062] = {.lex_state = 12, .external_lex_state = 2}, + [1063] = {.lex_state = 14}, + [1064] = {.lex_state = 12, .external_lex_state = 2}, + [1065] = {.lex_state = 12, .external_lex_state = 2}, + [1066] = {.lex_state = 12, .external_lex_state = 2}, + [1067] = {.lex_state = 12, .external_lex_state = 2}, + [1068] = {.lex_state = 12, .external_lex_state = 2}, + [1069] = {.lex_state = 14}, + [1070] = {.lex_state = 12, .external_lex_state = 2}, + [1071] = {.lex_state = 12, .external_lex_state = 2}, + [1072] = {.lex_state = 12, .external_lex_state = 2}, + [1073] = {.lex_state = 12, .external_lex_state = 2}, + [1074] = {.lex_state = 12, .external_lex_state = 2}, + [1075] = {.lex_state = 12, .external_lex_state = 2}, + [1076] = {.lex_state = 12, .external_lex_state = 2}, + [1077] = {.lex_state = 12, .external_lex_state = 2}, + [1078] = {.lex_state = 12, .external_lex_state = 2}, + [1079] = {.lex_state = 12, .external_lex_state = 2}, + [1080] = {.lex_state = 12, .external_lex_state = 2}, + [1081] = {.lex_state = 14}, + [1082] = {.lex_state = 12, .external_lex_state = 2}, + [1083] = {.lex_state = 12, .external_lex_state = 2}, + [1084] = {.lex_state = 12, .external_lex_state = 2}, + [1085] = {.lex_state = 14}, + [1086] = {.lex_state = 12, .external_lex_state = 2}, + [1087] = {.lex_state = 12, .external_lex_state = 2}, + [1088] = {.lex_state = 12, .external_lex_state = 2}, + [1089] = {.lex_state = 12, .external_lex_state = 2}, + [1090] = {.lex_state = 12, .external_lex_state = 2}, + [1091] = {.lex_state = 12, .external_lex_state = 2}, + [1092] = {.lex_state = 12, .external_lex_state = 2}, + [1093] = {.lex_state = 12, .external_lex_state = 2}, + [1094] = {.lex_state = 12, .external_lex_state = 2}, + [1095] = {.lex_state = 12, .external_lex_state = 2}, + [1096] = {.lex_state = 12, .external_lex_state = 2}, + [1097] = {.lex_state = 12, .external_lex_state = 2}, + [1098] = {.lex_state = 12, .external_lex_state = 2}, + [1099] = {.lex_state = 12, .external_lex_state = 2}, + [1100] = {.lex_state = 12, .external_lex_state = 2}, + [1101] = {.lex_state = 12, .external_lex_state = 2}, + [1102] = {.lex_state = 12, .external_lex_state = 2}, + [1103] = {.lex_state = 12, .external_lex_state = 2}, + [1104] = {.lex_state = 12, .external_lex_state = 2}, + [1105] = {.lex_state = 12, .external_lex_state = 2}, + [1106] = {.lex_state = 12, .external_lex_state = 2}, + [1107] = {.lex_state = 12, .external_lex_state = 2}, + [1108] = {.lex_state = 12, .external_lex_state = 2}, + [1109] = {.lex_state = 12, .external_lex_state = 2}, + [1110] = {.lex_state = 12, .external_lex_state = 2}, + [1111] = {.lex_state = 14}, + [1112] = {.lex_state = 12, .external_lex_state = 2}, + [1113] = {.lex_state = 12, .external_lex_state = 2}, + [1114] = {.lex_state = 12, .external_lex_state = 2}, + [1115] = {.lex_state = 12, .external_lex_state = 2}, + [1116] = {.lex_state = 12, .external_lex_state = 2}, + [1117] = {.lex_state = 12, .external_lex_state = 2}, + [1118] = {.lex_state = 12, .external_lex_state = 2}, + [1119] = {.lex_state = 12, .external_lex_state = 2}, + [1120] = {.lex_state = 12, .external_lex_state = 2}, + [1121] = {.lex_state = 12, .external_lex_state = 2}, + [1122] = {.lex_state = 12, .external_lex_state = 2}, + [1123] = {.lex_state = 12, .external_lex_state = 2}, + [1124] = {.lex_state = 12, .external_lex_state = 2}, + [1125] = {.lex_state = 12, .external_lex_state = 2}, + [1126] = {.lex_state = 12, .external_lex_state = 2}, + [1127] = {.lex_state = 12, .external_lex_state = 2}, + [1128] = {.lex_state = 12, .external_lex_state = 2}, + [1129] = {.lex_state = 12, .external_lex_state = 2}, + [1130] = {.lex_state = 12, .external_lex_state = 2}, + [1131] = {.lex_state = 12, .external_lex_state = 2}, + [1132] = {.lex_state = 12, .external_lex_state = 2}, + [1133] = {.lex_state = 12, .external_lex_state = 2}, + [1134] = {.lex_state = 12, .external_lex_state = 2}, + [1135] = {.lex_state = 12, .external_lex_state = 2}, + [1136] = {.lex_state = 12, .external_lex_state = 2}, + [1137] = {.lex_state = 12}, + [1138] = {.lex_state = 12}, + [1139] = {.lex_state = 12}, + [1140] = {.lex_state = 12}, + [1141] = {.lex_state = 12}, + [1142] = {.lex_state = 12}, + [1143] = {.lex_state = 12}, + [1144] = {.lex_state = 12}, + [1145] = {.lex_state = 12}, + [1146] = {.lex_state = 12}, + [1147] = {.lex_state = 12}, + [1148] = {.lex_state = 12}, + [1149] = {.lex_state = 12}, + [1150] = {.lex_state = 12}, + [1151] = {.lex_state = 12}, + [1152] = {.lex_state = 12}, + [1153] = {.lex_state = 12}, + [1154] = {.lex_state = 12}, + [1155] = {.lex_state = 12}, + [1156] = {.lex_state = 12}, + [1157] = {.lex_state = 12}, + [1158] = {.lex_state = 12}, + [1159] = {.lex_state = 12}, + [1160] = {.lex_state = 12}, + [1161] = {.lex_state = 12}, + [1162] = {.lex_state = 12}, + [1163] = {.lex_state = 12}, + [1164] = {.lex_state = 12}, + [1165] = {.lex_state = 12}, + [1166] = {.lex_state = 12}, + [1167] = {.lex_state = 12}, + [1168] = {.lex_state = 12}, + [1169] = {.lex_state = 12}, + [1170] = {.lex_state = 12}, + [1171] = {.lex_state = 12}, + [1172] = {.lex_state = 12}, + [1173] = {.lex_state = 12, .external_lex_state = 2}, + [1174] = {.lex_state = 12}, + [1175] = {.lex_state = 12, .external_lex_state = 2}, + [1176] = {.lex_state = 12, .external_lex_state = 2}, + [1177] = {.lex_state = 12, .external_lex_state = 2}, + [1178] = {.lex_state = 12}, + [1179] = {.lex_state = 12}, + [1180] = {.lex_state = 12}, + [1181] = {.lex_state = 12, .external_lex_state = 2}, + [1182] = {.lex_state = 12, .external_lex_state = 2}, + [1183] = {.lex_state = 12}, + [1184] = {.lex_state = 12}, [1185] = {.lex_state = 21}, - [1186] = {.lex_state = 13}, - [1187] = {.lex_state = 13}, - [1188] = {.lex_state = 13}, - [1189] = {.lex_state = 13}, + [1186] = {.lex_state = 12}, + [1187] = {.lex_state = 12}, + [1188] = {.lex_state = 12}, + [1189] = {.lex_state = 12}, [1190] = {.lex_state = 21}, - [1191] = {.lex_state = 13}, - [1192] = {.lex_state = 13}, - [1193] = {.lex_state = 13}, - [1194] = {.lex_state = 13}, - [1195] = {.lex_state = 13}, - [1196] = {.lex_state = 13}, - [1197] = {.lex_state = 13}, - [1198] = {.lex_state = 13, .external_lex_state = 2}, - [1199] = {.lex_state = 13}, - [1200] = {.lex_state = 75}, - [1201] = {.lex_state = 13, .external_lex_state = 2}, - [1202] = {.lex_state = 13, .external_lex_state = 2}, - [1203] = {.lex_state = 13}, - [1204] = {.lex_state = 13, .external_lex_state = 2}, + [1191] = {.lex_state = 12}, + [1192] = {.lex_state = 12}, + [1193] = {.lex_state = 12}, + [1194] = {.lex_state = 12}, + [1195] = {.lex_state = 12}, + [1196] = {.lex_state = 12}, + [1197] = {.lex_state = 12}, + [1198] = {.lex_state = 12, .external_lex_state = 2}, + [1199] = {.lex_state = 12}, + [1200] = {.lex_state = 14}, + [1201] = {.lex_state = 12, .external_lex_state = 2}, + [1202] = {.lex_state = 12, .external_lex_state = 2}, + [1203] = {.lex_state = 12}, + [1204] = {.lex_state = 12, .external_lex_state = 2}, [1205] = {.lex_state = 21}, - [1206] = {.lex_state = 13}, + [1206] = {.lex_state = 12}, [1207] = {.lex_state = 21}, [1208] = {.lex_state = 21}, - [1209] = {.lex_state = 13}, + [1209] = {.lex_state = 12}, [1210] = {.lex_state = 21}, - [1211] = {.lex_state = 13}, - [1212] = {.lex_state = 13}, - [1213] = {.lex_state = 13}, - [1214] = {.lex_state = 13}, - [1215] = {.lex_state = 13}, - [1216] = {.lex_state = 13}, + [1211] = {.lex_state = 12}, + [1212] = {.lex_state = 12}, + [1213] = {.lex_state = 12}, + [1214] = {.lex_state = 12}, + [1215] = {.lex_state = 12}, + [1216] = {.lex_state = 12}, [1217] = {.lex_state = 21}, [1218] = {.lex_state = 21}, - [1219] = {.lex_state = 14}, - [1220] = {.lex_state = 13}, - [1221] = {.lex_state = 13}, - [1222] = {.lex_state = 13}, - [1223] = {.lex_state = 13}, - [1224] = {.lex_state = 13}, - [1225] = {.lex_state = 13, .external_lex_state = 2}, - [1226] = {.lex_state = 13, .external_lex_state = 2}, - [1227] = {.lex_state = 14}, + [1219] = {.lex_state = 12}, + [1220] = {.lex_state = 12}, + [1221] = {.lex_state = 12}, + [1222] = {.lex_state = 12}, + [1223] = {.lex_state = 12}, + [1224] = {.lex_state = 12}, + [1225] = {.lex_state = 12, .external_lex_state = 2}, + [1226] = {.lex_state = 12, .external_lex_state = 2}, + [1227] = {.lex_state = 12}, [1228] = {.lex_state = 21}, - [1229] = {.lex_state = 13}, - [1230] = {.lex_state = 13}, - [1231] = {.lex_state = 13}, - [1232] = {.lex_state = 13}, - [1233] = {.lex_state = 13, .external_lex_state = 2}, - [1234] = {.lex_state = 75}, - [1235] = {.lex_state = 13}, - [1236] = {.lex_state = 13}, - [1237] = {.lex_state = 13}, - [1238] = {.lex_state = 13}, - [1239] = {.lex_state = 13}, - [1240] = {.lex_state = 13}, - [1241] = {.lex_state = 13}, - [1242] = {.lex_state = 13}, - [1243] = {.lex_state = 13}, - [1244] = {.lex_state = 13}, - [1245] = {.lex_state = 13}, - [1246] = {.lex_state = 13}, - [1247] = {.lex_state = 13}, - [1248] = {.lex_state = 13}, - [1249] = {.lex_state = 13}, - [1250] = {.lex_state = 13}, - [1251] = {.lex_state = 13}, - [1252] = {.lex_state = 13}, - [1253] = {.lex_state = 13}, - [1254] = {.lex_state = 13}, - [1255] = {.lex_state = 13}, - [1256] = {.lex_state = 13}, - [1257] = {.lex_state = 13}, - [1258] = {.lex_state = 13}, - [1259] = {.lex_state = 13}, - [1260] = {.lex_state = 13}, - [1261] = {.lex_state = 13}, - [1262] = {.lex_state = 13}, - [1263] = {.lex_state = 13}, - [1264] = {.lex_state = 13}, - [1265] = {.lex_state = 13}, - [1266] = {.lex_state = 13}, - [1267] = {.lex_state = 13}, - [1268] = {.lex_state = 13}, - [1269] = {.lex_state = 13}, - [1270] = {.lex_state = 13}, - [1271] = {.lex_state = 14}, - [1272] = {.lex_state = 13}, - [1273] = {.lex_state = 13}, - [1274] = {.lex_state = 13}, - [1275] = {.lex_state = 13}, - [1276] = {.lex_state = 13}, - [1277] = {.lex_state = 13}, - [1278] = {.lex_state = 13}, - [1279] = {.lex_state = 13}, - [1280] = {.lex_state = 13}, - [1281] = {.lex_state = 13}, - [1282] = {.lex_state = 13}, - [1283] = {.lex_state = 13}, - [1284] = {.lex_state = 13}, - [1285] = {.lex_state = 13}, - [1286] = {.lex_state = 75}, - [1287] = {.lex_state = 13}, - [1288] = {.lex_state = 13}, - [1289] = {.lex_state = 13}, - [1290] = {.lex_state = 13}, - [1291] = {.lex_state = 13}, - [1292] = {.lex_state = 14}, - [1293] = {.lex_state = 13}, - [1294] = {.lex_state = 13}, - [1295] = {.lex_state = 13}, - [1296] = {.lex_state = 13}, - [1297] = {.lex_state = 13}, - [1298] = {.lex_state = 13}, - [1299] = {.lex_state = 13}, - [1300] = {.lex_state = 13}, - [1301] = {.lex_state = 13}, - [1302] = {.lex_state = 13}, - [1303] = {.lex_state = 13}, + [1229] = {.lex_state = 12}, + [1230] = {.lex_state = 12}, + [1231] = {.lex_state = 12}, + [1232] = {.lex_state = 12}, + [1233] = {.lex_state = 12, .external_lex_state = 2}, + [1234] = {.lex_state = 14}, + [1235] = {.lex_state = 12}, + [1236] = {.lex_state = 12}, + [1237] = {.lex_state = 12}, + [1238] = {.lex_state = 12}, + [1239] = {.lex_state = 12}, + [1240] = {.lex_state = 12}, + [1241] = {.lex_state = 12}, + [1242] = {.lex_state = 12}, + [1243] = {.lex_state = 12}, + [1244] = {.lex_state = 12}, + [1245] = {.lex_state = 12}, + [1246] = {.lex_state = 12}, + [1247] = {.lex_state = 12}, + [1248] = {.lex_state = 12}, + [1249] = {.lex_state = 12}, + [1250] = {.lex_state = 12}, + [1251] = {.lex_state = 12}, + [1252] = {.lex_state = 12}, + [1253] = {.lex_state = 12}, + [1254] = {.lex_state = 12}, + [1255] = {.lex_state = 12}, + [1256] = {.lex_state = 12}, + [1257] = {.lex_state = 12}, + [1258] = {.lex_state = 12}, + [1259] = {.lex_state = 12}, + [1260] = {.lex_state = 12}, + [1261] = {.lex_state = 12}, + [1262] = {.lex_state = 12}, + [1263] = {.lex_state = 12}, + [1264] = {.lex_state = 12}, + [1265] = {.lex_state = 12}, + [1266] = {.lex_state = 12}, + [1267] = {.lex_state = 12}, + [1268] = {.lex_state = 12}, + [1269] = {.lex_state = 12}, + [1270] = {.lex_state = 12}, + [1271] = {.lex_state = 12}, + [1272] = {.lex_state = 12}, + [1273] = {.lex_state = 12}, + [1274] = {.lex_state = 12}, + [1275] = {.lex_state = 12}, + [1276] = {.lex_state = 12}, + [1277] = {.lex_state = 12}, + [1278] = {.lex_state = 12}, + [1279] = {.lex_state = 12}, + [1280] = {.lex_state = 12}, + [1281] = {.lex_state = 12}, + [1282] = {.lex_state = 12}, + [1283] = {.lex_state = 12}, + [1284] = {.lex_state = 12}, + [1285] = {.lex_state = 12}, + [1286] = {.lex_state = 14}, + [1287] = {.lex_state = 12}, + [1288] = {.lex_state = 12}, + [1289] = {.lex_state = 12}, + [1290] = {.lex_state = 12}, + [1291] = {.lex_state = 12}, + [1292] = {.lex_state = 12}, + [1293] = {.lex_state = 12}, + [1294] = {.lex_state = 12}, + [1295] = {.lex_state = 12}, + [1296] = {.lex_state = 12}, + [1297] = {.lex_state = 12}, + [1298] = {.lex_state = 12}, + [1299] = {.lex_state = 12}, + [1300] = {.lex_state = 12}, + [1301] = {.lex_state = 12}, + [1302] = {.lex_state = 12}, + [1303] = {.lex_state = 12}, [1304] = {.lex_state = 21}, [1305] = {.lex_state = 21}, [1306] = {.lex_state = 21}, [1307] = {.lex_state = 21}, - [1308] = {.lex_state = 75}, - [1309] = {.lex_state = 75}, + [1308] = {.lex_state = 14}, + [1309] = {.lex_state = 14}, [1310] = {.lex_state = 21}, - [1311] = {.lex_state = 75}, - [1312] = {.lex_state = 75}, - [1313] = {.lex_state = 75}, + [1311] = {.lex_state = 14}, + [1312] = {.lex_state = 14}, + [1313] = {.lex_state = 14}, [1314] = {.lex_state = 20}, [1315] = {.lex_state = 20}, - [1316] = {.lex_state = 14}, - [1317] = {.lex_state = 14}, - [1318] = {.lex_state = 14}, + [1316] = {.lex_state = 12}, + [1317] = {.lex_state = 12}, + [1318] = {.lex_state = 12}, [1319] = {.lex_state = 20}, [1320] = {.lex_state = 20}, - [1321] = {.lex_state = 14}, - [1322] = {.lex_state = 14}, - [1323] = {.lex_state = 14}, + [1321] = {.lex_state = 12}, + [1322] = {.lex_state = 12}, + [1323] = {.lex_state = 12}, [1324] = {.lex_state = 20}, - [1325] = {.lex_state = 14}, - [1326] = {.lex_state = 14}, - [1327] = {.lex_state = 14}, - [1328] = {.lex_state = 14}, - [1329] = {.lex_state = 14}, - [1330] = {.lex_state = 14}, - [1331] = {.lex_state = 14}, - [1332] = {.lex_state = 14}, - [1333] = {.lex_state = 14}, - [1334] = {.lex_state = 14}, - [1335] = {.lex_state = 14}, - [1336] = {.lex_state = 14}, - [1337] = {.lex_state = 14}, - [1338] = {.lex_state = 14}, - [1339] = {.lex_state = 14}, - [1340] = {.lex_state = 14}, - [1341] = {.lex_state = 75}, + [1325] = {.lex_state = 12}, + [1326] = {.lex_state = 12}, + [1327] = {.lex_state = 12}, + [1328] = {.lex_state = 12}, + [1329] = {.lex_state = 12}, + [1330] = {.lex_state = 12}, + [1331] = {.lex_state = 12}, + [1332] = {.lex_state = 12}, + [1333] = {.lex_state = 12}, + [1334] = {.lex_state = 12}, + [1335] = {.lex_state = 12}, + [1336] = {.lex_state = 74}, + [1337] = {.lex_state = 12}, + [1338] = {.lex_state = 74}, + [1339] = {.lex_state = 74}, + [1340] = {.lex_state = 12}, + [1341] = {.lex_state = 9}, [1342] = {.lex_state = 3, .external_lex_state = 3}, - [1343] = {.lex_state = 75}, + [1343] = {.lex_state = 9}, [1344] = {.lex_state = 3, .external_lex_state = 3}, [1345] = {.lex_state = 3, .external_lex_state = 3}, - [1346] = {.lex_state = 75}, + [1346] = {.lex_state = 9}, [1347] = {.lex_state = 3, .external_lex_state = 4}, [1348] = {.lex_state = 3, .external_lex_state = 3}, - [1349] = {.lex_state = 75}, + [1349] = {.lex_state = 9}, [1350] = {.lex_state = 3, .external_lex_state = 3}, [1351] = {.lex_state = 21}, [1352] = {.lex_state = 21}, [1353] = {.lex_state = 17}, - [1354] = {.lex_state = 75}, + [1354] = {.lex_state = 9}, [1355] = {.lex_state = 18}, [1356] = {.lex_state = 21}, [1357] = {.lex_state = 21}, @@ -11685,15 +11684,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1362] = {.lex_state = 21}, [1363] = {.lex_state = 21}, [1364] = {.lex_state = 21}, - [1365] = {.lex_state = 18, .external_lex_state = 5}, - [1366] = {.lex_state = 18, .external_lex_state = 5}, + [1365] = {.lex_state = 9, .external_lex_state = 5}, + [1366] = {.lex_state = 9, .external_lex_state = 5}, [1367] = {.lex_state = 21}, [1368] = {.lex_state = 21}, [1369] = {.lex_state = 21}, [1370] = {.lex_state = 21}, - [1371] = {.lex_state = 18, .external_lex_state = 5}, + [1371] = {.lex_state = 9, .external_lex_state = 5}, [1372] = {.lex_state = 21}, - [1373] = {.lex_state = 18, .external_lex_state = 5}, + [1373] = {.lex_state = 9, .external_lex_state = 5}, [1374] = {.lex_state = 21}, [1375] = {.lex_state = 21}, [1376] = {.lex_state = 21}, @@ -11701,32 +11700,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1378] = {.lex_state = 21}, [1379] = {.lex_state = 21}, [1380] = {.lex_state = 21}, - [1381] = {.lex_state = 18, .external_lex_state = 5}, + [1381] = {.lex_state = 9, .external_lex_state = 5}, [1382] = {.lex_state = 21}, [1383] = {.lex_state = 21}, [1384] = {.lex_state = 21}, [1385] = {.lex_state = 21}, [1386] = {.lex_state = 21}, - [1387] = {.lex_state = 75}, + [1387] = {.lex_state = 14}, [1388] = {.lex_state = 21}, [1389] = {.lex_state = 21}, [1390] = {.lex_state = 21}, [1391] = {.lex_state = 21}, - [1392] = {.lex_state = 18, .external_lex_state = 6}, + [1392] = {.lex_state = 9, .external_lex_state = 6}, [1393] = {.lex_state = 21}, - [1394] = {.lex_state = 18, .external_lex_state = 6}, + [1394] = {.lex_state = 9, .external_lex_state = 6}, [1395] = {.lex_state = 3, .external_lex_state = 7}, [1396] = {.lex_state = 21}, - [1397] = {.lex_state = 75}, - [1398] = {.lex_state = 75}, + [1397] = {.lex_state = 14}, + [1398] = {.lex_state = 9}, [1399] = {.lex_state = 3, .external_lex_state = 7}, [1400] = {.lex_state = 21}, - [1401] = {.lex_state = 75}, - [1402] = {.lex_state = 18, .external_lex_state = 6}, - [1403] = {.lex_state = 75}, - [1404] = {.lex_state = 18, .external_lex_state = 6}, + [1401] = {.lex_state = 9}, + [1402] = {.lex_state = 9, .external_lex_state = 6}, + [1403] = {.lex_state = 14}, + [1404] = {.lex_state = 9, .external_lex_state = 6}, [1405] = {.lex_state = 21}, - [1406] = {.lex_state = 18, .external_lex_state = 6}, + [1406] = {.lex_state = 9, .external_lex_state = 6}, [1407] = {.lex_state = 21}, [1408] = {.lex_state = 21}, [1409] = {.lex_state = 21}, @@ -11739,1257 +11738,1257 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1416] = {.lex_state = 21}, [1417] = {.lex_state = 21}, [1418] = {.lex_state = 21}, - [1419] = {.lex_state = 75}, - [1420] = {.lex_state = 75}, - [1421] = {.lex_state = 75}, - [1422] = {.lex_state = 75}, - [1423] = {.lex_state = 75}, - [1424] = {.lex_state = 23}, + [1419] = {.lex_state = 14}, + [1420] = {.lex_state = 9}, + [1421] = {.lex_state = 14}, + [1422] = {.lex_state = 14}, + [1423] = {.lex_state = 14}, + [1424] = {.lex_state = 74}, [1425] = {.lex_state = 17}, - [1426] = {.lex_state = 75}, - [1427] = {.lex_state = 23}, - [1428] = {.lex_state = 75}, - [1429] = {.lex_state = 75}, - [1430] = {.lex_state = 75}, - [1431] = {.lex_state = 75}, - [1432] = {.lex_state = 75}, - [1433] = {.lex_state = 23}, - [1434] = {.lex_state = 75}, + [1426] = {.lex_state = 14}, + [1427] = {.lex_state = 74}, + [1428] = {.lex_state = 14}, + [1429] = {.lex_state = 14}, + [1430] = {.lex_state = 14}, + [1431] = {.lex_state = 14}, + [1432] = {.lex_state = 14}, + [1433] = {.lex_state = 74}, + [1434] = {.lex_state = 14}, [1435] = {.lex_state = 17}, - [1436] = {.lex_state = 75}, - [1437] = {.lex_state = 23}, - [1438] = {.lex_state = 75}, - [1439] = {.lex_state = 75}, - [1440] = {.lex_state = 18, .external_lex_state = 8}, - [1441] = {.lex_state = 75}, - [1442] = {.lex_state = 75}, + [1436] = {.lex_state = 14}, + [1437] = {.lex_state = 74}, + [1438] = {.lex_state = 14}, + [1439] = {.lex_state = 14}, + [1440] = {.lex_state = 9, .external_lex_state = 8}, + [1441] = {.lex_state = 14}, + [1442] = {.lex_state = 9}, [1443] = {.lex_state = 3, .external_lex_state = 3}, - [1444] = {.lex_state = 75}, - [1445] = {.lex_state = 75}, + [1444] = {.lex_state = 9}, + [1445] = {.lex_state = 14}, [1446] = {.lex_state = 3, .external_lex_state = 3}, - [1447] = {.lex_state = 17}, + [1447] = {.lex_state = 74}, [1448] = {.lex_state = 3, .external_lex_state = 3}, [1449] = {.lex_state = 3, .external_lex_state = 3}, [1450] = {.lex_state = 3, .external_lex_state = 3}, [1451] = {.lex_state = 3, .external_lex_state = 3}, - [1452] = {.lex_state = 17}, - [1453] = {.lex_state = 17}, - [1454] = {.lex_state = 75}, + [1452] = {.lex_state = 74}, + [1453] = {.lex_state = 74}, + [1454] = {.lex_state = 14}, [1455] = {.lex_state = 3, .external_lex_state = 3}, - [1456] = {.lex_state = 75}, - [1457] = {.lex_state = 23}, - [1458] = {.lex_state = 75}, + [1456] = {.lex_state = 14}, + [1457] = {.lex_state = 74}, + [1458] = {.lex_state = 14}, [1459] = {.lex_state = 3, .external_lex_state = 3}, - [1460] = {.lex_state = 75}, - [1461] = {.lex_state = 17}, - [1462] = {.lex_state = 18, .external_lex_state = 8}, - [1463] = {.lex_state = 75}, - [1464] = {.lex_state = 17}, + [1460] = {.lex_state = 14}, + [1461] = {.lex_state = 74}, + [1462] = {.lex_state = 9, .external_lex_state = 8}, + [1463] = {.lex_state = 14}, + [1464] = {.lex_state = 74}, [1465] = {.lex_state = 3, .external_lex_state = 3}, - [1466] = {.lex_state = 75}, - [1467] = {.lex_state = 75}, - [1468] = {.lex_state = 75}, - [1469] = {.lex_state = 75}, - [1470] = {.lex_state = 17}, - [1471] = {.lex_state = 75}, - [1472] = {.lex_state = 75}, - [1473] = {.lex_state = 75}, - [1474] = {.lex_state = 75}, - [1475] = {.lex_state = 75}, - [1476] = {.lex_state = 75}, - [1477] = {.lex_state = 75}, - [1478] = {.lex_state = 75}, - [1479] = {.lex_state = 75}, - [1480] = {.lex_state = 18, .external_lex_state = 9}, - [1481] = {.lex_state = 75}, - [1482] = {.lex_state = 75}, - [1483] = {.lex_state = 75}, - [1484] = {.lex_state = 75}, - [1485] = {.lex_state = 75}, - [1486] = {.lex_state = 17}, - [1487] = {.lex_state = 75}, - [1488] = {.lex_state = 75}, - [1489] = {.lex_state = 17}, - [1490] = {.lex_state = 75}, - [1491] = {.lex_state = 75}, - [1492] = {.lex_state = 17}, - [1493] = {.lex_state = 75}, - [1494] = {.lex_state = 17}, - [1495] = {.lex_state = 75}, - [1496] = {.lex_state = 75}, - [1497] = {.lex_state = 75}, - [1498] = {.lex_state = 75}, - [1499] = {.lex_state = 75}, - [1500] = {.lex_state = 75}, - [1501] = {.lex_state = 75}, - [1502] = {.lex_state = 17}, - [1503] = {.lex_state = 75}, - [1504] = {.lex_state = 75}, - [1505] = {.lex_state = 18, .external_lex_state = 9}, - [1506] = {.lex_state = 17}, - [1507] = {.lex_state = 17}, - [1508] = {.lex_state = 75}, - [1509] = {.lex_state = 75}, - [1510] = {.lex_state = 17}, - [1511] = {.lex_state = 75}, - [1512] = {.lex_state = 17}, - [1513] = {.lex_state = 75}, - [1514] = {.lex_state = 75}, - [1515] = {.lex_state = 17}, - [1516] = {.lex_state = 75}, - [1517] = {.lex_state = 75}, - [1518] = {.lex_state = 75}, - [1519] = {.lex_state = 75}, - [1520] = {.lex_state = 75}, - [1521] = {.lex_state = 75}, - [1522] = {.lex_state = 75}, - [1523] = {.lex_state = 17}, - [1524] = {.lex_state = 17}, - [1525] = {.lex_state = 75}, - [1526] = {.lex_state = 75}, - [1527] = {.lex_state = 75}, - [1528] = {.lex_state = 75}, - [1529] = {.lex_state = 75}, - [1530] = {.lex_state = 75}, - [1531] = {.lex_state = 75}, - [1532] = {.lex_state = 75}, - [1533] = {.lex_state = 75, .external_lex_state = 2}, - [1534] = {.lex_state = 14}, - [1535] = {.lex_state = 17}, - [1536] = {.lex_state = 14}, - [1537] = {.lex_state = 14}, - [1538] = {.lex_state = 14}, - [1539] = {.lex_state = 17}, - [1540] = {.lex_state = 23}, - [1541] = {.lex_state = 14}, - [1542] = {.lex_state = 14}, - [1543] = {.lex_state = 75, .external_lex_state = 2}, - [1544] = {.lex_state = 17}, - [1545] = {.lex_state = 14}, - [1546] = {.lex_state = 14}, - [1547] = {.lex_state = 17}, - [1548] = {.lex_state = 17}, - [1549] = {.lex_state = 17}, - [1550] = {.lex_state = 18, .external_lex_state = 5}, - [1551] = {.lex_state = 18, .external_lex_state = 5}, - [1552] = {.lex_state = 14}, - [1553] = {.lex_state = 14}, - [1554] = {.lex_state = 17}, - [1555] = {.lex_state = 17}, - [1556] = {.lex_state = 18, .external_lex_state = 5}, - [1557] = {.lex_state = 14}, - [1558] = {.lex_state = 17}, - [1559] = {.lex_state = 18, .external_lex_state = 5}, - [1560] = {.lex_state = 17}, - [1561] = {.lex_state = 18, .external_lex_state = 5}, - [1562] = {.lex_state = 14, .external_lex_state = 2}, - [1563] = {.lex_state = 18, .external_lex_state = 5}, - [1564] = {.lex_state = 75}, - [1565] = {.lex_state = 17}, - [1566] = {.lex_state = 23}, - [1567] = {.lex_state = 17}, - [1568] = {.lex_state = 14}, - [1569] = {.lex_state = 75, .external_lex_state = 2}, - [1570] = {.lex_state = 18, .external_lex_state = 5}, - [1571] = {.lex_state = 75}, - [1572] = {.lex_state = 17}, - [1573] = {.lex_state = 75}, - [1574] = {.lex_state = 17}, - [1575] = {.lex_state = 17}, - [1576] = {.lex_state = 18, .external_lex_state = 5}, - [1577] = {.lex_state = 17}, - [1578] = {.lex_state = 17}, - [1579] = {.lex_state = 17}, - [1580] = {.lex_state = 17}, - [1581] = {.lex_state = 18, .external_lex_state = 5}, - [1582] = {.lex_state = 17}, - [1583] = {.lex_state = 17}, - [1584] = {.lex_state = 14}, - [1585] = {.lex_state = 17}, - [1586] = {.lex_state = 17}, - [1587] = {.lex_state = 75}, - [1588] = {.lex_state = 17}, - [1589] = {.lex_state = 75}, - [1590] = {.lex_state = 17}, - [1591] = {.lex_state = 75}, - [1592] = {.lex_state = 14}, - [1593] = {.lex_state = 14}, - [1594] = {.lex_state = 14}, - [1595] = {.lex_state = 75}, - [1596] = {.lex_state = 14}, - [1597] = {.lex_state = 18, .external_lex_state = 6}, - [1598] = {.lex_state = 14}, - [1599] = {.lex_state = 14}, - [1600] = {.lex_state = 14}, - [1601] = {.lex_state = 14}, - [1602] = {.lex_state = 14}, - [1603] = {.lex_state = 14}, - [1604] = {.lex_state = 14}, - [1605] = {.lex_state = 14}, - [1606] = {.lex_state = 14}, - [1607] = {.lex_state = 18, .external_lex_state = 6}, - [1608] = {.lex_state = 75, .external_lex_state = 2}, - [1609] = {.lex_state = 14}, - [1610] = {.lex_state = 14}, - [1611] = {.lex_state = 14}, - [1612] = {.lex_state = 75}, - [1613] = {.lex_state = 75, .external_lex_state = 2}, - [1614] = {.lex_state = 18, .external_lex_state = 6}, - [1615] = {.lex_state = 14}, - [1616] = {.lex_state = 75}, - [1617] = {.lex_state = 18, .external_lex_state = 6}, - [1618] = {.lex_state = 75}, - [1619] = {.lex_state = 14}, - [1620] = {.lex_state = 18, .external_lex_state = 6}, - [1621] = {.lex_state = 18, .external_lex_state = 6}, - [1622] = {.lex_state = 14}, - [1623] = {.lex_state = 14}, - [1624] = {.lex_state = 14}, - [1625] = {.lex_state = 14}, - [1626] = {.lex_state = 14}, - [1627] = {.lex_state = 14}, - [1628] = {.lex_state = 75}, - [1629] = {.lex_state = 18, .external_lex_state = 6}, - [1630] = {.lex_state = 18, .external_lex_state = 6}, - [1631] = {.lex_state = 14}, - [1632] = {.lex_state = 14}, - [1633] = {.lex_state = 14}, - [1634] = {.lex_state = 75}, - [1635] = {.lex_state = 14}, - [1636] = {.lex_state = 14}, - [1637] = {.lex_state = 75}, - [1638] = {.lex_state = 14}, - [1639] = {.lex_state = 14}, - [1640] = {.lex_state = 14}, - [1641] = {.lex_state = 14}, - [1642] = {.lex_state = 14}, - [1643] = {.lex_state = 14}, - [1644] = {.lex_state = 14}, - [1645] = {.lex_state = 14}, - [1646] = {.lex_state = 14}, - [1647] = {.lex_state = 14}, - [1648] = {.lex_state = 75, .external_lex_state = 2}, - [1649] = {.lex_state = 14}, - [1650] = {.lex_state = 14}, - [1651] = {.lex_state = 14}, - [1652] = {.lex_state = 14}, - [1653] = {.lex_state = 14}, - [1654] = {.lex_state = 14}, - [1655] = {.lex_state = 14}, - [1656] = {.lex_state = 14}, - [1657] = {.lex_state = 14}, - [1658] = {.lex_state = 14}, - [1659] = {.lex_state = 75}, - [1660] = {.lex_state = 14, .external_lex_state = 2}, - [1661] = {.lex_state = 14}, - [1662] = {.lex_state = 75, .external_lex_state = 2}, - [1663] = {.lex_state = 75, .external_lex_state = 2}, - [1664] = {.lex_state = 14}, - [1665] = {.lex_state = 75}, - [1666] = {.lex_state = 14}, - [1667] = {.lex_state = 75, .external_lex_state = 2}, - [1668] = {.lex_state = 14}, - [1669] = {.lex_state = 14}, - [1670] = {.lex_state = 75, .external_lex_state = 2}, - [1671] = {.lex_state = 17}, - [1672] = {.lex_state = 14}, - [1673] = {.lex_state = 75, .external_lex_state = 2}, - [1674] = {.lex_state = 14}, - [1675] = {.lex_state = 75, .external_lex_state = 2}, - [1676] = {.lex_state = 75, .external_lex_state = 2}, - [1677] = {.lex_state = 75, .external_lex_state = 2}, - [1678] = {.lex_state = 14}, - [1679] = {.lex_state = 14, .external_lex_state = 2}, - [1680] = {.lex_state = 17}, - [1681] = {.lex_state = 14, .external_lex_state = 2}, - [1682] = {.lex_state = 14}, - [1683] = {.lex_state = 14}, - [1684] = {.lex_state = 14}, - [1685] = {.lex_state = 14}, - [1686] = {.lex_state = 14}, - [1687] = {.lex_state = 75}, - [1688] = {.lex_state = 17}, - [1689] = {.lex_state = 75, .external_lex_state = 2}, - [1690] = {.lex_state = 14}, - [1691] = {.lex_state = 75}, - [1692] = {.lex_state = 75}, - [1693] = {.lex_state = 75}, - [1694] = {.lex_state = 75}, - [1695] = {.lex_state = 75}, - [1696] = {.lex_state = 75, .external_lex_state = 2}, - [1697] = {.lex_state = 75, .external_lex_state = 2}, - [1698] = {.lex_state = 14}, - [1699] = {.lex_state = 14}, - [1700] = {.lex_state = 75, .external_lex_state = 2}, - [1701] = {.lex_state = 17}, - [1702] = {.lex_state = 75, .external_lex_state = 2}, - [1703] = {.lex_state = 14}, - [1704] = {.lex_state = 75, .external_lex_state = 2}, - [1705] = {.lex_state = 75, .external_lex_state = 2}, - [1706] = {.lex_state = 14}, - [1707] = {.lex_state = 14}, - [1708] = {.lex_state = 14, .external_lex_state = 2}, - [1709] = {.lex_state = 14}, - [1710] = {.lex_state = 14, .external_lex_state = 2}, - [1711] = {.lex_state = 14}, - [1712] = {.lex_state = 75, .external_lex_state = 2}, - [1713] = {.lex_state = 75, .external_lex_state = 2}, - [1714] = {.lex_state = 14}, - [1715] = {.lex_state = 14, .external_lex_state = 2}, - [1716] = {.lex_state = 14, .external_lex_state = 2}, - [1717] = {.lex_state = 75}, - [1718] = {.lex_state = 14, .external_lex_state = 2}, - [1719] = {.lex_state = 75, .external_lex_state = 2}, - [1720] = {.lex_state = 14}, - [1721] = {.lex_state = 17}, - [1722] = {.lex_state = 14, .external_lex_state = 2}, - [1723] = {.lex_state = 17}, - [1724] = {.lex_state = 14}, - [1725] = {.lex_state = 17}, - [1726] = {.lex_state = 14, .external_lex_state = 2}, - [1727] = {.lex_state = 17}, - [1728] = {.lex_state = 14, .external_lex_state = 2}, - [1729] = {.lex_state = 14}, - [1730] = {.lex_state = 75, .external_lex_state = 2}, - [1731] = {.lex_state = 17}, - [1732] = {.lex_state = 17}, - [1733] = {.lex_state = 14}, - [1734] = {.lex_state = 17}, - [1735] = {.lex_state = 14}, - [1736] = {.lex_state = 14}, - [1737] = {.lex_state = 14}, - [1738] = {.lex_state = 14}, - [1739] = {.lex_state = 75}, - [1740] = {.lex_state = 14, .external_lex_state = 2}, - [1741] = {.lex_state = 14, .external_lex_state = 2}, - [1742] = {.lex_state = 75}, - [1743] = {.lex_state = 75}, - [1744] = {.lex_state = 14}, - [1745] = {.lex_state = 14, .external_lex_state = 2}, - [1746] = {.lex_state = 14}, - [1747] = {.lex_state = 14, .external_lex_state = 2}, - [1748] = {.lex_state = 75, .external_lex_state = 2}, - [1749] = {.lex_state = 14, .external_lex_state = 2}, - [1750] = {.lex_state = 14, .external_lex_state = 2}, - [1751] = {.lex_state = 14, .external_lex_state = 2}, - [1752] = {.lex_state = 75}, - [1753] = {.lex_state = 14, .external_lex_state = 2}, - [1754] = {.lex_state = 75}, - [1755] = {.lex_state = 75, .external_lex_state = 2}, - [1756] = {.lex_state = 14}, - [1757] = {.lex_state = 14}, - [1758] = {.lex_state = 14}, - [1759] = {.lex_state = 75}, - [1760] = {.lex_state = 75, .external_lex_state = 2}, - [1761] = {.lex_state = 75, .external_lex_state = 2}, - [1762] = {.lex_state = 75, .external_lex_state = 2}, - [1763] = {.lex_state = 75, .external_lex_state = 2}, - [1764] = {.lex_state = 75, .external_lex_state = 2}, - [1765] = {.lex_state = 14}, - [1766] = {.lex_state = 75}, - [1767] = {.lex_state = 75, .external_lex_state = 2}, - [1768] = {.lex_state = 75, .external_lex_state = 2}, - [1769] = {.lex_state = 75}, - [1770] = {.lex_state = 75}, - [1771] = {.lex_state = 75, .external_lex_state = 2}, - [1772] = {.lex_state = 75}, - [1773] = {.lex_state = 75, .external_lex_state = 2}, - [1774] = {.lex_state = 75, .external_lex_state = 2}, - [1775] = {.lex_state = 75, .external_lex_state = 2}, - [1776] = {.lex_state = 75, .external_lex_state = 2}, - [1777] = {.lex_state = 75}, - [1778] = {.lex_state = 75}, - [1779] = {.lex_state = 75, .external_lex_state = 2}, - [1780] = {.lex_state = 75, .external_lex_state = 2}, - [1781] = {.lex_state = 14}, - [1782] = {.lex_state = 75}, - [1783] = {.lex_state = 75, .external_lex_state = 2}, - [1784] = {.lex_state = 75, .external_lex_state = 2}, - [1785] = {.lex_state = 75, .external_lex_state = 2}, - [1786] = {.lex_state = 75, .external_lex_state = 2}, - [1787] = {.lex_state = 75, .external_lex_state = 2}, - [1788] = {.lex_state = 14}, - [1789] = {.lex_state = 75}, - [1790] = {.lex_state = 14}, - [1791] = {.lex_state = 14}, - [1792] = {.lex_state = 75, .external_lex_state = 2}, - [1793] = {.lex_state = 14}, - [1794] = {.lex_state = 75, .external_lex_state = 2}, - [1795] = {.lex_state = 14}, - [1796] = {.lex_state = 75, .external_lex_state = 2}, - [1797] = {.lex_state = 75, .external_lex_state = 2}, - [1798] = {.lex_state = 14}, - [1799] = {.lex_state = 75, .external_lex_state = 2}, - [1800] = {.lex_state = 14}, - [1801] = {.lex_state = 75}, - [1802] = {.lex_state = 14}, - [1803] = {.lex_state = 14}, - [1804] = {.lex_state = 14}, - [1805] = {.lex_state = 75, .external_lex_state = 2}, - [1806] = {.lex_state = 75, .external_lex_state = 2}, - [1807] = {.lex_state = 14}, - [1808] = {.lex_state = 75}, - [1809] = {.lex_state = 75}, - [1810] = {.lex_state = 75, .external_lex_state = 2}, + [1466] = {.lex_state = 14}, + [1467] = {.lex_state = 14}, + [1468] = {.lex_state = 9}, + [1469] = {.lex_state = 9}, + [1470] = {.lex_state = 74}, + [1471] = {.lex_state = 9}, + [1472] = {.lex_state = 9}, + [1473] = {.lex_state = 9}, + [1474] = {.lex_state = 9}, + [1475] = {.lex_state = 9}, + [1476] = {.lex_state = 9}, + [1477] = {.lex_state = 9}, + [1478] = {.lex_state = 9}, + [1479] = {.lex_state = 9}, + [1480] = {.lex_state = 9, .external_lex_state = 9}, + [1481] = {.lex_state = 9}, + [1482] = {.lex_state = 9}, + [1483] = {.lex_state = 9}, + [1484] = {.lex_state = 9}, + [1485] = {.lex_state = 9}, + [1486] = {.lex_state = 74}, + [1487] = {.lex_state = 9}, + [1488] = {.lex_state = 9}, + [1489] = {.lex_state = 74}, + [1490] = {.lex_state = 9}, + [1491] = {.lex_state = 9}, + [1492] = {.lex_state = 74}, + [1493] = {.lex_state = 9}, + [1494] = {.lex_state = 74}, + [1495] = {.lex_state = 9}, + [1496] = {.lex_state = 9}, + [1497] = {.lex_state = 9}, + [1498] = {.lex_state = 9}, + [1499] = {.lex_state = 14}, + [1500] = {.lex_state = 9}, + [1501] = {.lex_state = 9}, + [1502] = {.lex_state = 74}, + [1503] = {.lex_state = 9}, + [1504] = {.lex_state = 9}, + [1505] = {.lex_state = 9, .external_lex_state = 9}, + [1506] = {.lex_state = 74}, + [1507] = {.lex_state = 74}, + [1508] = {.lex_state = 9}, + [1509] = {.lex_state = 14}, + [1510] = {.lex_state = 74}, + [1511] = {.lex_state = 9}, + [1512] = {.lex_state = 74}, + [1513] = {.lex_state = 9}, + [1514] = {.lex_state = 9}, + [1515] = {.lex_state = 74}, + [1516] = {.lex_state = 9}, + [1517] = {.lex_state = 9}, + [1518] = {.lex_state = 9}, + [1519] = {.lex_state = 9}, + [1520] = {.lex_state = 9}, + [1521] = {.lex_state = 9}, + [1522] = {.lex_state = 9}, + [1523] = {.lex_state = 74}, + [1524] = {.lex_state = 74}, + [1525] = {.lex_state = 9}, + [1526] = {.lex_state = 9}, + [1527] = {.lex_state = 9}, + [1528] = {.lex_state = 9}, + [1529] = {.lex_state = 9}, + [1530] = {.lex_state = 9}, + [1531] = {.lex_state = 9}, + [1532] = {.lex_state = 9}, + [1533] = {.lex_state = 74, .external_lex_state = 2}, + [1534] = {.lex_state = 74}, + [1535] = {.lex_state = 74}, + [1536] = {.lex_state = 74}, + [1537] = {.lex_state = 74}, + [1538] = {.lex_state = 74}, + [1539] = {.lex_state = 74}, + [1540] = {.lex_state = 74}, + [1541] = {.lex_state = 74}, + [1542] = {.lex_state = 74}, + [1543] = {.lex_state = 74, .external_lex_state = 2}, + [1544] = {.lex_state = 74}, + [1545] = {.lex_state = 74}, + [1546] = {.lex_state = 74}, + [1547] = {.lex_state = 74}, + [1548] = {.lex_state = 74}, + [1549] = {.lex_state = 74}, + [1550] = {.lex_state = 9, .external_lex_state = 5}, + [1551] = {.lex_state = 9, .external_lex_state = 5}, + [1552] = {.lex_state = 11}, + [1553] = {.lex_state = 74}, + [1554] = {.lex_state = 74}, + [1555] = {.lex_state = 74}, + [1556] = {.lex_state = 9, .external_lex_state = 5}, + [1557] = {.lex_state = 74}, + [1558] = {.lex_state = 74}, + [1559] = {.lex_state = 9, .external_lex_state = 5}, + [1560] = {.lex_state = 74}, + [1561] = {.lex_state = 9, .external_lex_state = 5}, + [1562] = {.lex_state = 74, .external_lex_state = 2}, + [1563] = {.lex_state = 9, .external_lex_state = 5}, + [1564] = {.lex_state = 14}, + [1565] = {.lex_state = 74}, + [1566] = {.lex_state = 74}, + [1567] = {.lex_state = 74}, + [1568] = {.lex_state = 11}, + [1569] = {.lex_state = 74, .external_lex_state = 2}, + [1570] = {.lex_state = 9, .external_lex_state = 5}, + [1571] = {.lex_state = 9}, + [1572] = {.lex_state = 74}, + [1573] = {.lex_state = 9}, + [1574] = {.lex_state = 74}, + [1575] = {.lex_state = 74}, + [1576] = {.lex_state = 9, .external_lex_state = 5}, + [1577] = {.lex_state = 74}, + [1578] = {.lex_state = 74}, + [1579] = {.lex_state = 74}, + [1580] = {.lex_state = 74}, + [1581] = {.lex_state = 9, .external_lex_state = 5}, + [1582] = {.lex_state = 74}, + [1583] = {.lex_state = 74}, + [1584] = {.lex_state = 11}, + [1585] = {.lex_state = 74}, + [1586] = {.lex_state = 74}, + [1587] = {.lex_state = 14}, + [1588] = {.lex_state = 74}, + [1589] = {.lex_state = 9}, + [1590] = {.lex_state = 74}, + [1591] = {.lex_state = 9}, + [1592] = {.lex_state = 74}, + [1593] = {.lex_state = 74}, + [1594] = {.lex_state = 74}, + [1595] = {.lex_state = 9}, + [1596] = {.lex_state = 74}, + [1597] = {.lex_state = 9, .external_lex_state = 6}, + [1598] = {.lex_state = 74}, + [1599] = {.lex_state = 74}, + [1600] = {.lex_state = 74}, + [1601] = {.lex_state = 74}, + [1602] = {.lex_state = 74}, + [1603] = {.lex_state = 74}, + [1604] = {.lex_state = 74}, + [1605] = {.lex_state = 74}, + [1606] = {.lex_state = 74}, + [1607] = {.lex_state = 9, .external_lex_state = 6}, + [1608] = {.lex_state = 74, .external_lex_state = 2}, + [1609] = {.lex_state = 74}, + [1610] = {.lex_state = 74}, + [1611] = {.lex_state = 74}, + [1612] = {.lex_state = 9}, + [1613] = {.lex_state = 74, .external_lex_state = 2}, + [1614] = {.lex_state = 9, .external_lex_state = 6}, + [1615] = {.lex_state = 74}, + [1616] = {.lex_state = 74}, + [1617] = {.lex_state = 9, .external_lex_state = 6}, + [1618] = {.lex_state = 9}, + [1619] = {.lex_state = 74}, + [1620] = {.lex_state = 9, .external_lex_state = 6}, + [1621] = {.lex_state = 9, .external_lex_state = 6}, + [1622] = {.lex_state = 74}, + [1623] = {.lex_state = 74}, + [1624] = {.lex_state = 74}, + [1625] = {.lex_state = 74}, + [1626] = {.lex_state = 74}, + [1627] = {.lex_state = 74}, + [1628] = {.lex_state = 9}, + [1629] = {.lex_state = 9, .external_lex_state = 6}, + [1630] = {.lex_state = 9, .external_lex_state = 6}, + [1631] = {.lex_state = 74}, + [1632] = {.lex_state = 74}, + [1633] = {.lex_state = 74}, + [1634] = {.lex_state = 9}, + [1635] = {.lex_state = 74}, + [1636] = {.lex_state = 74}, + [1637] = {.lex_state = 9}, + [1638] = {.lex_state = 74}, + [1639] = {.lex_state = 74}, + [1640] = {.lex_state = 74}, + [1641] = {.lex_state = 74}, + [1642] = {.lex_state = 74}, + [1643] = {.lex_state = 74}, + [1644] = {.lex_state = 74}, + [1645] = {.lex_state = 74}, + [1646] = {.lex_state = 74}, + [1647] = {.lex_state = 74}, + [1648] = {.lex_state = 74, .external_lex_state = 2}, + [1649] = {.lex_state = 74}, + [1650] = {.lex_state = 74}, + [1651] = {.lex_state = 74}, + [1652] = {.lex_state = 74}, + [1653] = {.lex_state = 74}, + [1654] = {.lex_state = 74}, + [1655] = {.lex_state = 74}, + [1656] = {.lex_state = 74}, + [1657] = {.lex_state = 74}, + [1658] = {.lex_state = 74}, + [1659] = {.lex_state = 74}, + [1660] = {.lex_state = 74, .external_lex_state = 2}, + [1661] = {.lex_state = 74}, + [1662] = {.lex_state = 74, .external_lex_state = 2}, + [1663] = {.lex_state = 74, .external_lex_state = 2}, + [1664] = {.lex_state = 74}, + [1665] = {.lex_state = 14}, + [1666] = {.lex_state = 74}, + [1667] = {.lex_state = 74, .external_lex_state = 2}, + [1668] = {.lex_state = 74}, + [1669] = {.lex_state = 74}, + [1670] = {.lex_state = 74, .external_lex_state = 2}, + [1671] = {.lex_state = 74}, + [1672] = {.lex_state = 74}, + [1673] = {.lex_state = 74, .external_lex_state = 2}, + [1674] = {.lex_state = 74}, + [1675] = {.lex_state = 74, .external_lex_state = 2}, + [1676] = {.lex_state = 74, .external_lex_state = 2}, + [1677] = {.lex_state = 74, .external_lex_state = 2}, + [1678] = {.lex_state = 74}, + [1679] = {.lex_state = 74, .external_lex_state = 2}, + [1680] = {.lex_state = 74}, + [1681] = {.lex_state = 74, .external_lex_state = 2}, + [1682] = {.lex_state = 74}, + [1683] = {.lex_state = 74}, + [1684] = {.lex_state = 74}, + [1685] = {.lex_state = 74}, + [1686] = {.lex_state = 74}, + [1687] = {.lex_state = 14}, + [1688] = {.lex_state = 74}, + [1689] = {.lex_state = 74, .external_lex_state = 2}, + [1690] = {.lex_state = 74}, + [1691] = {.lex_state = 14}, + [1692] = {.lex_state = 14}, + [1693] = {.lex_state = 14}, + [1694] = {.lex_state = 9}, + [1695] = {.lex_state = 74}, + [1696] = {.lex_state = 74, .external_lex_state = 2}, + [1697] = {.lex_state = 74, .external_lex_state = 2}, + [1698] = {.lex_state = 74}, + [1699] = {.lex_state = 74}, + [1700] = {.lex_state = 74, .external_lex_state = 2}, + [1701] = {.lex_state = 74}, + [1702] = {.lex_state = 74, .external_lex_state = 2}, + [1703] = {.lex_state = 74}, + [1704] = {.lex_state = 74, .external_lex_state = 2}, + [1705] = {.lex_state = 74, .external_lex_state = 2}, + [1706] = {.lex_state = 74}, + [1707] = {.lex_state = 74}, + [1708] = {.lex_state = 74, .external_lex_state = 2}, + [1709] = {.lex_state = 74}, + [1710] = {.lex_state = 74, .external_lex_state = 2}, + [1711] = {.lex_state = 74}, + [1712] = {.lex_state = 74, .external_lex_state = 2}, + [1713] = {.lex_state = 74, .external_lex_state = 2}, + [1714] = {.lex_state = 74}, + [1715] = {.lex_state = 74, .external_lex_state = 2}, + [1716] = {.lex_state = 74, .external_lex_state = 2}, + [1717] = {.lex_state = 74}, + [1718] = {.lex_state = 74, .external_lex_state = 2}, + [1719] = {.lex_state = 74, .external_lex_state = 2}, + [1720] = {.lex_state = 74}, + [1721] = {.lex_state = 74}, + [1722] = {.lex_state = 74, .external_lex_state = 2}, + [1723] = {.lex_state = 74}, + [1724] = {.lex_state = 74}, + [1725] = {.lex_state = 74}, + [1726] = {.lex_state = 74, .external_lex_state = 2}, + [1727] = {.lex_state = 74}, + [1728] = {.lex_state = 74, .external_lex_state = 2}, + [1729] = {.lex_state = 74}, + [1730] = {.lex_state = 74, .external_lex_state = 2}, + [1731] = {.lex_state = 74}, + [1732] = {.lex_state = 74}, + [1733] = {.lex_state = 74}, + [1734] = {.lex_state = 74}, + [1735] = {.lex_state = 74}, + [1736] = {.lex_state = 74}, + [1737] = {.lex_state = 74}, + [1738] = {.lex_state = 74}, + [1739] = {.lex_state = 74}, + [1740] = {.lex_state = 74, .external_lex_state = 2}, + [1741] = {.lex_state = 74, .external_lex_state = 2}, + [1742] = {.lex_state = 14}, + [1743] = {.lex_state = 14}, + [1744] = {.lex_state = 74}, + [1745] = {.lex_state = 74, .external_lex_state = 2}, + [1746] = {.lex_state = 74}, + [1747] = {.lex_state = 74, .external_lex_state = 2}, + [1748] = {.lex_state = 74, .external_lex_state = 2}, + [1749] = {.lex_state = 74, .external_lex_state = 2}, + [1750] = {.lex_state = 74, .external_lex_state = 2}, + [1751] = {.lex_state = 74, .external_lex_state = 2}, + [1752] = {.lex_state = 14}, + [1753] = {.lex_state = 74, .external_lex_state = 2}, + [1754] = {.lex_state = 74}, + [1755] = {.lex_state = 74, .external_lex_state = 2}, + [1756] = {.lex_state = 74}, + [1757] = {.lex_state = 74}, + [1758] = {.lex_state = 74}, + [1759] = {.lex_state = 74}, + [1760] = {.lex_state = 74, .external_lex_state = 2}, + [1761] = {.lex_state = 74, .external_lex_state = 2}, + [1762] = {.lex_state = 74, .external_lex_state = 2}, + [1763] = {.lex_state = 74, .external_lex_state = 2}, + [1764] = {.lex_state = 74, .external_lex_state = 2}, + [1765] = {.lex_state = 74}, + [1766] = {.lex_state = 14}, + [1767] = {.lex_state = 74, .external_lex_state = 2}, + [1768] = {.lex_state = 74, .external_lex_state = 2}, + [1769] = {.lex_state = 74}, + [1770] = {.lex_state = 74}, + [1771] = {.lex_state = 74, .external_lex_state = 2}, + [1772] = {.lex_state = 74}, + [1773] = {.lex_state = 74, .external_lex_state = 2}, + [1774] = {.lex_state = 74, .external_lex_state = 2}, + [1775] = {.lex_state = 74, .external_lex_state = 2}, + [1776] = {.lex_state = 74, .external_lex_state = 2}, + [1777] = {.lex_state = 74}, + [1778] = {.lex_state = 74}, + [1779] = {.lex_state = 74, .external_lex_state = 2}, + [1780] = {.lex_state = 74, .external_lex_state = 2}, + [1781] = {.lex_state = 74}, + [1782] = {.lex_state = 14}, + [1783] = {.lex_state = 74, .external_lex_state = 2}, + [1784] = {.lex_state = 74, .external_lex_state = 2}, + [1785] = {.lex_state = 74, .external_lex_state = 2}, + [1786] = {.lex_state = 74, .external_lex_state = 2}, + [1787] = {.lex_state = 74, .external_lex_state = 2}, + [1788] = {.lex_state = 74}, + [1789] = {.lex_state = 74}, + [1790] = {.lex_state = 74}, + [1791] = {.lex_state = 74}, + [1792] = {.lex_state = 74, .external_lex_state = 2}, + [1793] = {.lex_state = 74}, + [1794] = {.lex_state = 74, .external_lex_state = 2}, + [1795] = {.lex_state = 74}, + [1796] = {.lex_state = 74, .external_lex_state = 2}, + [1797] = {.lex_state = 74, .external_lex_state = 2}, + [1798] = {.lex_state = 74}, + [1799] = {.lex_state = 74, .external_lex_state = 2}, + [1800] = {.lex_state = 74}, + [1801] = {.lex_state = 74}, + [1802] = {.lex_state = 74}, + [1803] = {.lex_state = 74}, + [1804] = {.lex_state = 74}, + [1805] = {.lex_state = 74, .external_lex_state = 2}, + [1806] = {.lex_state = 74, .external_lex_state = 2}, + [1807] = {.lex_state = 74}, + [1808] = {.lex_state = 74}, + [1809] = {.lex_state = 9}, + [1810] = {.lex_state = 74, .external_lex_state = 2}, [1811] = {.lex_state = 24}, - [1812] = {.lex_state = 75, .external_lex_state = 2}, - [1813] = {.lex_state = 75, .external_lex_state = 2}, - [1814] = {.lex_state = 75}, + [1812] = {.lex_state = 74, .external_lex_state = 2}, + [1813] = {.lex_state = 74, .external_lex_state = 2}, + [1814] = {.lex_state = 74}, [1815] = {.lex_state = 24}, - [1816] = {.lex_state = 14}, - [1817] = {.lex_state = 75}, - [1818] = {.lex_state = 75}, - [1819] = {.lex_state = 14}, - [1820] = {.lex_state = 75}, - [1821] = {.lex_state = 75}, - [1822] = {.lex_state = 75}, + [1816] = {.lex_state = 74}, + [1817] = {.lex_state = 74}, + [1818] = {.lex_state = 74}, + [1819] = {.lex_state = 74}, + [1820] = {.lex_state = 14}, + [1821] = {.lex_state = 74}, + [1822] = {.lex_state = 74}, [1823] = {.lex_state = 5, .external_lex_state = 10}, - [1824] = {.lex_state = 75}, - [1825] = {.lex_state = 75}, - [1826] = {.lex_state = 14}, - [1827] = {.lex_state = 75, .external_lex_state = 2}, - [1828] = {.lex_state = 75, .external_lex_state = 2}, - [1829] = {.lex_state = 75, .external_lex_state = 2}, - [1830] = {.lex_state = 75, .external_lex_state = 2}, - [1831] = {.lex_state = 14}, - [1832] = {.lex_state = 75, .external_lex_state = 2}, - [1833] = {.lex_state = 75}, - [1834] = {.lex_state = 75, .external_lex_state = 2}, - [1835] = {.lex_state = 75}, - [1836] = {.lex_state = 75}, - [1837] = {.lex_state = 14}, - [1838] = {.lex_state = 75, .external_lex_state = 2}, - [1839] = {.lex_state = 75, .external_lex_state = 2}, - [1840] = {.lex_state = 75}, - [1841] = {.lex_state = 75, .external_lex_state = 2}, + [1824] = {.lex_state = 74}, + [1825] = {.lex_state = 74}, + [1826] = {.lex_state = 74}, + [1827] = {.lex_state = 74, .external_lex_state = 2}, + [1828] = {.lex_state = 74, .external_lex_state = 2}, + [1829] = {.lex_state = 74, .external_lex_state = 2}, + [1830] = {.lex_state = 74, .external_lex_state = 2}, + [1831] = {.lex_state = 74}, + [1832] = {.lex_state = 74, .external_lex_state = 2}, + [1833] = {.lex_state = 74}, + [1834] = {.lex_state = 74, .external_lex_state = 2}, + [1835] = {.lex_state = 74}, + [1836] = {.lex_state = 74}, + [1837] = {.lex_state = 74}, + [1838] = {.lex_state = 74, .external_lex_state = 2}, + [1839] = {.lex_state = 74, .external_lex_state = 2}, + [1840] = {.lex_state = 74}, + [1841] = {.lex_state = 74, .external_lex_state = 2}, [1842] = {.lex_state = 24}, - [1843] = {.lex_state = 14}, - [1844] = {.lex_state = 75, .external_lex_state = 2}, - [1845] = {.lex_state = 14}, - [1846] = {.lex_state = 75}, - [1847] = {.lex_state = 75}, - [1848] = {.lex_state = 75, .external_lex_state = 2}, - [1849] = {.lex_state = 75, .external_lex_state = 2}, - [1850] = {.lex_state = 14}, + [1843] = {.lex_state = 74}, + [1844] = {.lex_state = 74, .external_lex_state = 2}, + [1845] = {.lex_state = 74}, + [1846] = {.lex_state = 74}, + [1847] = {.lex_state = 74}, + [1848] = {.lex_state = 74, .external_lex_state = 2}, + [1849] = {.lex_state = 74, .external_lex_state = 2}, + [1850] = {.lex_state = 74}, [1851] = {.lex_state = 24}, - [1852] = {.lex_state = 14}, - [1853] = {.lex_state = 75, .external_lex_state = 2}, - [1854] = {.lex_state = 75, .external_lex_state = 2}, - [1855] = {.lex_state = 75, .external_lex_state = 2}, - [1856] = {.lex_state = 75, .external_lex_state = 2}, - [1857] = {.lex_state = 14}, - [1858] = {.lex_state = 75}, - [1859] = {.lex_state = 14}, - [1860] = {.lex_state = 75}, - [1861] = {.lex_state = 14}, - [1862] = {.lex_state = 75}, - [1863] = {.lex_state = 75}, + [1852] = {.lex_state = 74}, + [1853] = {.lex_state = 74, .external_lex_state = 2}, + [1854] = {.lex_state = 74, .external_lex_state = 2}, + [1855] = {.lex_state = 74, .external_lex_state = 2}, + [1856] = {.lex_state = 74, .external_lex_state = 2}, + [1857] = {.lex_state = 74}, + [1858] = {.lex_state = 74}, + [1859] = {.lex_state = 74}, + [1860] = {.lex_state = 74}, + [1861] = {.lex_state = 74}, + [1862] = {.lex_state = 74}, + [1863] = {.lex_state = 74}, [1864] = {.lex_state = 24}, - [1865] = {.lex_state = 75, .external_lex_state = 2}, - [1866] = {.lex_state = 75, .external_lex_state = 2}, - [1867] = {.lex_state = 75, .external_lex_state = 2}, - [1868] = {.lex_state = 75, .external_lex_state = 2}, - [1869] = {.lex_state = 75}, - [1870] = {.lex_state = 14}, - [1871] = {.lex_state = 75, .external_lex_state = 2}, - [1872] = {.lex_state = 75}, - [1873] = {.lex_state = 14}, - [1874] = {.lex_state = 75}, + [1865] = {.lex_state = 74, .external_lex_state = 2}, + [1866] = {.lex_state = 74, .external_lex_state = 2}, + [1867] = {.lex_state = 74, .external_lex_state = 2}, + [1868] = {.lex_state = 74, .external_lex_state = 2}, + [1869] = {.lex_state = 74}, + [1870] = {.lex_state = 74}, + [1871] = {.lex_state = 74, .external_lex_state = 2}, + [1872] = {.lex_state = 74}, + [1873] = {.lex_state = 74}, + [1874] = {.lex_state = 74}, [1875] = {.lex_state = 5, .external_lex_state = 10}, - [1876] = {.lex_state = 14}, - [1877] = {.lex_state = 75, .external_lex_state = 2}, - [1878] = {.lex_state = 75, .external_lex_state = 2}, - [1879] = {.lex_state = 75, .external_lex_state = 2}, - [1880] = {.lex_state = 75, .external_lex_state = 2}, - [1881] = {.lex_state = 75, .external_lex_state = 2}, - [1882] = {.lex_state = 75, .external_lex_state = 2}, - [1883] = {.lex_state = 14}, - [1884] = {.lex_state = 14}, - [1885] = {.lex_state = 75}, - [1886] = {.lex_state = 75, .external_lex_state = 2}, - [1887] = {.lex_state = 75}, - [1888] = {.lex_state = 75}, - [1889] = {.lex_state = 75, .external_lex_state = 2}, - [1890] = {.lex_state = 75, .external_lex_state = 2}, - [1891] = {.lex_state = 75}, - [1892] = {.lex_state = 14}, - [1893] = {.lex_state = 75}, - [1894] = {.lex_state = 14}, - [1895] = {.lex_state = 14}, - [1896] = {.lex_state = 14}, - [1897] = {.lex_state = 75}, - [1898] = {.lex_state = 75, .external_lex_state = 2}, - [1899] = {.lex_state = 75, .external_lex_state = 2}, - [1900] = {.lex_state = 75, .external_lex_state = 2}, - [1901] = {.lex_state = 75, .external_lex_state = 2}, - [1902] = {.lex_state = 75}, - [1903] = {.lex_state = 75, .external_lex_state = 2}, - [1904] = {.lex_state = 14}, - [1905] = {.lex_state = 14}, - [1906] = {.lex_state = 75, .external_lex_state = 2}, - [1907] = {.lex_state = 14}, - [1908] = {.lex_state = 75}, - [1909] = {.lex_state = 75, .external_lex_state = 2}, - [1910] = {.lex_state = 14}, - [1911] = {.lex_state = 75, .external_lex_state = 2}, - [1912] = {.lex_state = 75, .external_lex_state = 2}, - [1913] = {.lex_state = 75}, - [1914] = {.lex_state = 75}, - [1915] = {.lex_state = 14}, - [1916] = {.lex_state = 14}, - [1917] = {.lex_state = 75}, - [1918] = {.lex_state = 75}, - [1919] = {.lex_state = 75, .external_lex_state = 2}, - [1920] = {.lex_state = 75}, - [1921] = {.lex_state = 14}, - [1922] = {.lex_state = 14}, - [1923] = {.lex_state = 14}, - [1924] = {.lex_state = 75}, - [1925] = {.lex_state = 14}, - [1926] = {.lex_state = 75}, - [1927] = {.lex_state = 14}, - [1928] = {.lex_state = 75, .external_lex_state = 2}, - [1929] = {.lex_state = 75}, - [1930] = {.lex_state = 75, .external_lex_state = 2}, - [1931] = {.lex_state = 14}, - [1932] = {.lex_state = 75}, - [1933] = {.lex_state = 75}, - [1934] = {.lex_state = 75}, - [1935] = {.lex_state = 14}, - [1936] = {.lex_state = 75}, - [1937] = {.lex_state = 75}, - [1938] = {.lex_state = 75}, - [1939] = {.lex_state = 14}, - [1940] = {.lex_state = 14}, - [1941] = {.lex_state = 75}, - [1942] = {.lex_state = 75}, - [1943] = {.lex_state = 75}, - [1944] = {.lex_state = 75}, - [1945] = {.lex_state = 75, .external_lex_state = 2}, - [1946] = {.lex_state = 14}, - [1947] = {.lex_state = 75}, - [1948] = {.lex_state = 75}, - [1949] = {.lex_state = 75}, - [1950] = {.lex_state = 14}, - [1951] = {.lex_state = 75}, - [1952] = {.lex_state = 75}, - [1953] = {.lex_state = 14}, - [1954] = {.lex_state = 75}, - [1955] = {.lex_state = 14}, - [1956] = {.lex_state = 14}, - [1957] = {.lex_state = 75}, - [1958] = {.lex_state = 75}, - [1959] = {.lex_state = 75}, - [1960] = {.lex_state = 75}, - [1961] = {.lex_state = 75}, - [1962] = {.lex_state = 75, .external_lex_state = 2}, - [1963] = {.lex_state = 14}, - [1964] = {.lex_state = 75}, + [1876] = {.lex_state = 74}, + [1877] = {.lex_state = 74, .external_lex_state = 2}, + [1878] = {.lex_state = 74, .external_lex_state = 2}, + [1879] = {.lex_state = 74, .external_lex_state = 2}, + [1880] = {.lex_state = 74, .external_lex_state = 2}, + [1881] = {.lex_state = 74, .external_lex_state = 2}, + [1882] = {.lex_state = 74, .external_lex_state = 2}, + [1883] = {.lex_state = 74}, + [1884] = {.lex_state = 74}, + [1885] = {.lex_state = 74}, + [1886] = {.lex_state = 74, .external_lex_state = 2}, + [1887] = {.lex_state = 74}, + [1888] = {.lex_state = 9}, + [1889] = {.lex_state = 74, .external_lex_state = 2}, + [1890] = {.lex_state = 74, .external_lex_state = 2}, + [1891] = {.lex_state = 74}, + [1892] = {.lex_state = 74}, + [1893] = {.lex_state = 74}, + [1894] = {.lex_state = 74}, + [1895] = {.lex_state = 74}, + [1896] = {.lex_state = 74}, + [1897] = {.lex_state = 74}, + [1898] = {.lex_state = 74, .external_lex_state = 2}, + [1899] = {.lex_state = 74, .external_lex_state = 2}, + [1900] = {.lex_state = 74, .external_lex_state = 2}, + [1901] = {.lex_state = 74, .external_lex_state = 2}, + [1902] = {.lex_state = 74}, + [1903] = {.lex_state = 74, .external_lex_state = 2}, + [1904] = {.lex_state = 74}, + [1905] = {.lex_state = 74}, + [1906] = {.lex_state = 74, .external_lex_state = 2}, + [1907] = {.lex_state = 74}, + [1908] = {.lex_state = 74}, + [1909] = {.lex_state = 74, .external_lex_state = 2}, + [1910] = {.lex_state = 74}, + [1911] = {.lex_state = 74, .external_lex_state = 2}, + [1912] = {.lex_state = 74, .external_lex_state = 2}, + [1913] = {.lex_state = 74}, + [1914] = {.lex_state = 74}, + [1915] = {.lex_state = 74}, + [1916] = {.lex_state = 74}, + [1917] = {.lex_state = 74}, + [1918] = {.lex_state = 74}, + [1919] = {.lex_state = 74, .external_lex_state = 2}, + [1920] = {.lex_state = 74}, + [1921] = {.lex_state = 74}, + [1922] = {.lex_state = 74}, + [1923] = {.lex_state = 74}, + [1924] = {.lex_state = 74}, + [1925] = {.lex_state = 74}, + [1926] = {.lex_state = 14}, + [1927] = {.lex_state = 74}, + [1928] = {.lex_state = 74, .external_lex_state = 2}, + [1929] = {.lex_state = 74}, + [1930] = {.lex_state = 74, .external_lex_state = 2}, + [1931] = {.lex_state = 74}, + [1932] = {.lex_state = 74}, + [1933] = {.lex_state = 74}, + [1934] = {.lex_state = 74}, + [1935] = {.lex_state = 74}, + [1936] = {.lex_state = 74}, + [1937] = {.lex_state = 74}, + [1938] = {.lex_state = 74}, + [1939] = {.lex_state = 74}, + [1940] = {.lex_state = 74}, + [1941] = {.lex_state = 74}, + [1942] = {.lex_state = 74}, + [1943] = {.lex_state = 74}, + [1944] = {.lex_state = 74}, + [1945] = {.lex_state = 74, .external_lex_state = 2}, + [1946] = {.lex_state = 74}, + [1947] = {.lex_state = 74}, + [1948] = {.lex_state = 74}, + [1949] = {.lex_state = 74}, + [1950] = {.lex_state = 74}, + [1951] = {.lex_state = 74}, + [1952] = {.lex_state = 74}, + [1953] = {.lex_state = 74}, + [1954] = {.lex_state = 74}, + [1955] = {.lex_state = 74}, + [1956] = {.lex_state = 74}, + [1957] = {.lex_state = 74}, + [1958] = {.lex_state = 74}, + [1959] = {.lex_state = 74}, + [1960] = {.lex_state = 74}, + [1961] = {.lex_state = 74}, + [1962] = {.lex_state = 74, .external_lex_state = 2}, + [1963] = {.lex_state = 74}, + [1964] = {.lex_state = 74}, [1965] = {.lex_state = 5, .external_lex_state = 11}, [1966] = {.lex_state = 5, .external_lex_state = 11}, - [1967] = {.lex_state = 75}, - [1968] = {.lex_state = 75}, - [1969] = {.lex_state = 75}, - [1970] = {.lex_state = 75}, - [1971] = {.lex_state = 75, .external_lex_state = 2}, - [1972] = {.lex_state = 75}, - [1973] = {.lex_state = 75}, + [1967] = {.lex_state = 74}, + [1968] = {.lex_state = 74}, + [1969] = {.lex_state = 74}, + [1970] = {.lex_state = 74}, + [1971] = {.lex_state = 74, .external_lex_state = 2}, + [1972] = {.lex_state = 74}, + [1973] = {.lex_state = 74}, [1974] = {.lex_state = 5, .external_lex_state = 11}, - [1975] = {.lex_state = 75}, - [1976] = {.lex_state = 14}, - [1977] = {.lex_state = 14}, - [1978] = {.lex_state = 14}, - [1979] = {.lex_state = 75}, - [1980] = {.lex_state = 75}, - [1981] = {.lex_state = 75}, - [1982] = {.lex_state = 14}, - [1983] = {.lex_state = 75, .external_lex_state = 2}, - [1984] = {.lex_state = 14}, - [1985] = {.lex_state = 75}, - [1986] = {.lex_state = 14}, - [1987] = {.lex_state = 75, .external_lex_state = 2}, - [1988] = {.lex_state = 75}, - [1989] = {.lex_state = 14}, - [1990] = {.lex_state = 75}, - [1991] = {.lex_state = 75}, - [1992] = {.lex_state = 75}, - [1993] = {.lex_state = 75}, - [1994] = {.lex_state = 14}, - [1995] = {.lex_state = 75, .external_lex_state = 2}, - [1996] = {.lex_state = 75}, - [1997] = {.lex_state = 75}, - [1998] = {.lex_state = 75}, - [1999] = {.lex_state = 75}, - [2000] = {.lex_state = 75}, - [2001] = {.lex_state = 75}, - [2002] = {.lex_state = 75}, - [2003] = {.lex_state = 75}, - [2004] = {.lex_state = 75}, - [2005] = {.lex_state = 75, .external_lex_state = 2}, - [2006] = {.lex_state = 14}, - [2007] = {.lex_state = 75}, - [2008] = {.lex_state = 75}, - [2009] = {.lex_state = 75}, - [2010] = {.lex_state = 14}, - [2011] = {.lex_state = 14}, - [2012] = {.lex_state = 75}, - [2013] = {.lex_state = 14}, - [2014] = {.lex_state = 14}, - [2015] = {.lex_state = 75, .external_lex_state = 2}, - [2016] = {.lex_state = 14}, - [2017] = {.lex_state = 14}, - [2018] = {.lex_state = 75}, - [2019] = {.lex_state = 14}, - [2020] = {.lex_state = 14}, + [1975] = {.lex_state = 74}, + [1976] = {.lex_state = 74}, + [1977] = {.lex_state = 74}, + [1978] = {.lex_state = 74}, + [1979] = {.lex_state = 74}, + [1980] = {.lex_state = 74}, + [1981] = {.lex_state = 74}, + [1982] = {.lex_state = 74}, + [1983] = {.lex_state = 74, .external_lex_state = 2}, + [1984] = {.lex_state = 74}, + [1985] = {.lex_state = 74}, + [1986] = {.lex_state = 74}, + [1987] = {.lex_state = 74, .external_lex_state = 2}, + [1988] = {.lex_state = 74}, + [1989] = {.lex_state = 74}, + [1990] = {.lex_state = 74}, + [1991] = {.lex_state = 74}, + [1992] = {.lex_state = 74}, + [1993] = {.lex_state = 74}, + [1994] = {.lex_state = 74}, + [1995] = {.lex_state = 74, .external_lex_state = 2}, + [1996] = {.lex_state = 74}, + [1997] = {.lex_state = 74}, + [1998] = {.lex_state = 74}, + [1999] = {.lex_state = 74}, + [2000] = {.lex_state = 74}, + [2001] = {.lex_state = 74}, + [2002] = {.lex_state = 74}, + [2003] = {.lex_state = 74}, + [2004] = {.lex_state = 74}, + [2005] = {.lex_state = 74, .external_lex_state = 2}, + [2006] = {.lex_state = 74}, + [2007] = {.lex_state = 74}, + [2008] = {.lex_state = 74}, + [2009] = {.lex_state = 74}, + [2010] = {.lex_state = 74}, + [2011] = {.lex_state = 74}, + [2012] = {.lex_state = 74}, + [2013] = {.lex_state = 74}, + [2014] = {.lex_state = 74}, + [2015] = {.lex_state = 74, .external_lex_state = 2}, + [2016] = {.lex_state = 74}, + [2017] = {.lex_state = 74}, + [2018] = {.lex_state = 74}, + [2019] = {.lex_state = 74}, + [2020] = {.lex_state = 74}, [2021] = {.lex_state = 5, .external_lex_state = 11}, - [2022] = {.lex_state = 75}, - [2023] = {.lex_state = 14}, - [2024] = {.lex_state = 187, .external_lex_state = 12}, - [2025] = {.lex_state = 14}, - [2026] = {.lex_state = 75}, - [2027] = {.lex_state = 75}, - [2028] = {.lex_state = 75}, - [2029] = {.lex_state = 75}, - [2030] = {.lex_state = 14}, - [2031] = {.lex_state = 75}, - [2032] = {.lex_state = 14}, - [2033] = {.lex_state = 75}, - [2034] = {.lex_state = 14}, - [2035] = {.lex_state = 75}, - [2036] = {.lex_state = 75}, - [2037] = {.lex_state = 75}, - [2038] = {.lex_state = 14}, - [2039] = {.lex_state = 14}, - [2040] = {.lex_state = 75}, - [2041] = {.lex_state = 14}, - [2042] = {.lex_state = 75}, - [2043] = {.lex_state = 14}, - [2044] = {.lex_state = 14}, - [2045] = {.lex_state = 14}, - [2046] = {.lex_state = 75}, - [2047] = {.lex_state = 75, .external_lex_state = 13}, - [2048] = {.lex_state = 75}, - [2049] = {.lex_state = 14}, - [2050] = {.lex_state = 75}, - [2051] = {.lex_state = 14}, - [2052] = {.lex_state = 14}, - [2053] = {.lex_state = 75}, - [2054] = {.lex_state = 14}, - [2055] = {.lex_state = 75}, - [2056] = {.lex_state = 75}, - [2057] = {.lex_state = 75}, - [2058] = {.lex_state = 14}, - [2059] = {.lex_state = 14}, - [2060] = {.lex_state = 75}, - [2061] = {.lex_state = 14}, - [2062] = {.lex_state = 14}, - [2063] = {.lex_state = 75, .external_lex_state = 13}, - [2064] = {.lex_state = 14}, - [2065] = {.lex_state = 14}, - [2066] = {.lex_state = 14}, - [2067] = {.lex_state = 14}, - [2068] = {.lex_state = 75}, - [2069] = {.lex_state = 14}, - [2070] = {.lex_state = 75}, - [2071] = {.lex_state = 75}, - [2072] = {.lex_state = 14}, - [2073] = {.lex_state = 14}, - [2074] = {.lex_state = 75}, - [2075] = {.lex_state = 75}, - [2076] = {.lex_state = 75}, - [2077] = {.lex_state = 14}, - [2078] = {.lex_state = 75}, - [2079] = {.lex_state = 14, .external_lex_state = 2}, - [2080] = {.lex_state = 14}, - [2081] = {.lex_state = 14}, - [2082] = {.lex_state = 14}, - [2083] = {.lex_state = 75}, - [2084] = {.lex_state = 75}, - [2085] = {.lex_state = 14}, - [2086] = {.lex_state = 14}, - [2087] = {.lex_state = 14}, - [2088] = {.lex_state = 75}, - [2089] = {.lex_state = 14}, - [2090] = {.lex_state = 14}, - [2091] = {.lex_state = 14}, - [2092] = {.lex_state = 75}, - [2093] = {.lex_state = 75}, - [2094] = {.lex_state = 14}, - [2095] = {.lex_state = 14}, - [2096] = {.lex_state = 75}, - [2097] = {.lex_state = 14}, - [2098] = {.lex_state = 14}, - [2099] = {.lex_state = 75}, - [2100] = {.lex_state = 14}, - [2101] = {.lex_state = 14}, - [2102] = {.lex_state = 14}, - [2103] = {.lex_state = 75, .external_lex_state = 2}, - [2104] = {.lex_state = 75}, - [2105] = {.lex_state = 14}, - [2106] = {.lex_state = 14}, - [2107] = {.lex_state = 14}, - [2108] = {.lex_state = 75}, - [2109] = {.lex_state = 75}, - [2110] = {.lex_state = 14}, - [2111] = {.lex_state = 14}, - [2112] = {.lex_state = 75}, - [2113] = {.lex_state = 14}, - [2114] = {.lex_state = 75}, - [2115] = {.lex_state = 75}, - [2116] = {.lex_state = 14}, - [2117] = {.lex_state = 14}, - [2118] = {.lex_state = 14}, - [2119] = {.lex_state = 75}, - [2120] = {.lex_state = 75}, - [2121] = {.lex_state = 14}, - [2122] = {.lex_state = 75}, - [2123] = {.lex_state = 14}, - [2124] = {.lex_state = 14}, - [2125] = {.lex_state = 14}, - [2126] = {.lex_state = 14}, - [2127] = {.lex_state = 14}, - [2128] = {.lex_state = 14}, - [2129] = {.lex_state = 75}, - [2130] = {.lex_state = 75}, - [2131] = {.lex_state = 75}, - [2132] = {.lex_state = 75}, - [2133] = {.lex_state = 75}, - [2134] = {.lex_state = 14}, - [2135] = {.lex_state = 14}, - [2136] = {.lex_state = 14}, - [2137] = {.lex_state = 75}, - [2138] = {.lex_state = 14}, - [2139] = {.lex_state = 14}, - [2140] = {.lex_state = 75}, - [2141] = {.lex_state = 75}, - [2142] = {.lex_state = 14, .external_lex_state = 2}, - [2143] = {.lex_state = 14}, - [2144] = {.lex_state = 75}, - [2145] = {.lex_state = 14}, - [2146] = {.lex_state = 14}, - [2147] = {.lex_state = 14}, - [2148] = {.lex_state = 75}, - [2149] = {.lex_state = 75}, - [2150] = {.lex_state = 14}, - [2151] = {.lex_state = 75}, - [2152] = {.lex_state = 14}, + [2022] = {.lex_state = 74}, + [2023] = {.lex_state = 74}, + [2024] = {.lex_state = 186, .external_lex_state = 12}, + [2025] = {.lex_state = 74}, + [2026] = {.lex_state = 74}, + [2027] = {.lex_state = 74}, + [2028] = {.lex_state = 74}, + [2029] = {.lex_state = 74}, + [2030] = {.lex_state = 74}, + [2031] = {.lex_state = 14}, + [2032] = {.lex_state = 74}, + [2033] = {.lex_state = 74}, + [2034] = {.lex_state = 74}, + [2035] = {.lex_state = 74}, + [2036] = {.lex_state = 74}, + [2037] = {.lex_state = 74}, + [2038] = {.lex_state = 74}, + [2039] = {.lex_state = 74}, + [2040] = {.lex_state = 74}, + [2041] = {.lex_state = 74}, + [2042] = {.lex_state = 14}, + [2043] = {.lex_state = 74}, + [2044] = {.lex_state = 74}, + [2045] = {.lex_state = 74}, + [2046] = {.lex_state = 74}, + [2047] = {.lex_state = 74, .external_lex_state = 13}, + [2048] = {.lex_state = 74}, + [2049] = {.lex_state = 74}, + [2050] = {.lex_state = 74}, + [2051] = {.lex_state = 74}, + [2052] = {.lex_state = 74}, + [2053] = {.lex_state = 74}, + [2054] = {.lex_state = 74}, + [2055] = {.lex_state = 74}, + [2056] = {.lex_state = 74}, + [2057] = {.lex_state = 74}, + [2058] = {.lex_state = 74}, + [2059] = {.lex_state = 74}, + [2060] = {.lex_state = 74}, + [2061] = {.lex_state = 74}, + [2062] = {.lex_state = 74}, + [2063] = {.lex_state = 74, .external_lex_state = 13}, + [2064] = {.lex_state = 74}, + [2065] = {.lex_state = 74}, + [2066] = {.lex_state = 74}, + [2067] = {.lex_state = 74}, + [2068] = {.lex_state = 74}, + [2069] = {.lex_state = 74}, + [2070] = {.lex_state = 74}, + [2071] = {.lex_state = 74}, + [2072] = {.lex_state = 74}, + [2073] = {.lex_state = 74}, + [2074] = {.lex_state = 74}, + [2075] = {.lex_state = 74}, + [2076] = {.lex_state = 74}, + [2077] = {.lex_state = 74}, + [2078] = {.lex_state = 74}, + [2079] = {.lex_state = 74, .external_lex_state = 2}, + [2080] = {.lex_state = 74}, + [2081] = {.lex_state = 74}, + [2082] = {.lex_state = 74}, + [2083] = {.lex_state = 74}, + [2084] = {.lex_state = 74}, + [2085] = {.lex_state = 74}, + [2086] = {.lex_state = 74}, + [2087] = {.lex_state = 74}, + [2088] = {.lex_state = 74}, + [2089] = {.lex_state = 74}, + [2090] = {.lex_state = 74}, + [2091] = {.lex_state = 74}, + [2092] = {.lex_state = 74}, + [2093] = {.lex_state = 74}, + [2094] = {.lex_state = 74}, + [2095] = {.lex_state = 74}, + [2096] = {.lex_state = 74}, + [2097] = {.lex_state = 74}, + [2098] = {.lex_state = 74}, + [2099] = {.lex_state = 74}, + [2100] = {.lex_state = 74}, + [2101] = {.lex_state = 74}, + [2102] = {.lex_state = 74}, + [2103] = {.lex_state = 74, .external_lex_state = 2}, + [2104] = {.lex_state = 74}, + [2105] = {.lex_state = 74}, + [2106] = {.lex_state = 74}, + [2107] = {.lex_state = 74}, + [2108] = {.lex_state = 74}, + [2109] = {.lex_state = 74}, + [2110] = {.lex_state = 74}, + [2111] = {.lex_state = 74}, + [2112] = {.lex_state = 74}, + [2113] = {.lex_state = 74}, + [2114] = {.lex_state = 74}, + [2115] = {.lex_state = 74}, + [2116] = {.lex_state = 74}, + [2117] = {.lex_state = 74}, + [2118] = {.lex_state = 74}, + [2119] = {.lex_state = 74}, + [2120] = {.lex_state = 74}, + [2121] = {.lex_state = 74}, + [2122] = {.lex_state = 74}, + [2123] = {.lex_state = 74}, + [2124] = {.lex_state = 74}, + [2125] = {.lex_state = 74}, + [2126] = {.lex_state = 74}, + [2127] = {.lex_state = 74}, + [2128] = {.lex_state = 74}, + [2129] = {.lex_state = 74}, + [2130] = {.lex_state = 74}, + [2131] = {.lex_state = 74}, + [2132] = {.lex_state = 74}, + [2133] = {.lex_state = 74}, + [2134] = {.lex_state = 74}, + [2135] = {.lex_state = 74}, + [2136] = {.lex_state = 74}, + [2137] = {.lex_state = 74}, + [2138] = {.lex_state = 74}, + [2139] = {.lex_state = 74}, + [2140] = {.lex_state = 74}, + [2141] = {.lex_state = 74}, + [2142] = {.lex_state = 74, .external_lex_state = 2}, + [2143] = {.lex_state = 74}, + [2144] = {.lex_state = 74}, + [2145] = {.lex_state = 74}, + [2146] = {.lex_state = 74}, + [2147] = {.lex_state = 74}, + [2148] = {.lex_state = 74}, + [2149] = {.lex_state = 74}, + [2150] = {.lex_state = 74}, + [2151] = {.lex_state = 74}, + [2152] = {.lex_state = 74}, [2153] = {.lex_state = 5, .external_lex_state = 11}, - [2154] = {.lex_state = 75}, + [2154] = {.lex_state = 74}, [2155] = {.lex_state = 5, .external_lex_state = 11}, - [2156] = {.lex_state = 75}, - [2157] = {.lex_state = 75}, - [2158] = {.lex_state = 14}, - [2159] = {.lex_state = 75}, - [2160] = {.lex_state = 75}, - [2161] = {.lex_state = 75, .external_lex_state = 2}, - [2162] = {.lex_state = 75}, - [2163] = {.lex_state = 14}, - [2164] = {.lex_state = 14}, - [2165] = {.lex_state = 14}, - [2166] = {.lex_state = 14}, - [2167] = {.lex_state = 75}, - [2168] = {.lex_state = 14}, - [2169] = {.lex_state = 75}, - [2170] = {.lex_state = 14}, - [2171] = {.lex_state = 75, .external_lex_state = 2}, - [2172] = {.lex_state = 14}, - [2173] = {.lex_state = 75}, - [2174] = {.lex_state = 75}, - [2175] = {.lex_state = 14}, - [2176] = {.lex_state = 14}, - [2177] = {.lex_state = 14}, - [2178] = {.lex_state = 14}, - [2179] = {.lex_state = 14}, - [2180] = {.lex_state = 14}, - [2181] = {.lex_state = 14}, - [2182] = {.lex_state = 75}, - [2183] = {.lex_state = 75, .external_lex_state = 2}, - [2184] = {.lex_state = 75}, - [2185] = {.lex_state = 75}, - [2186] = {.lex_state = 75}, - [2187] = {.lex_state = 75}, - [2188] = {.lex_state = 14}, - [2189] = {.lex_state = 75}, - [2190] = {.lex_state = 75}, - [2191] = {.lex_state = 75}, - [2192] = {.lex_state = 75}, - [2193] = {.lex_state = 75}, - [2194] = {.lex_state = 75}, - [2195] = {.lex_state = 75}, + [2156] = {.lex_state = 74}, + [2157] = {.lex_state = 74}, + [2158] = {.lex_state = 74}, + [2159] = {.lex_state = 74}, + [2160] = {.lex_state = 74}, + [2161] = {.lex_state = 74, .external_lex_state = 2}, + [2162] = {.lex_state = 74}, + [2163] = {.lex_state = 74}, + [2164] = {.lex_state = 74}, + [2165] = {.lex_state = 74}, + [2166] = {.lex_state = 74}, + [2167] = {.lex_state = 74}, + [2168] = {.lex_state = 74}, + [2169] = {.lex_state = 74}, + [2170] = {.lex_state = 74}, + [2171] = {.lex_state = 74, .external_lex_state = 2}, + [2172] = {.lex_state = 74}, + [2173] = {.lex_state = 14}, + [2174] = {.lex_state = 74}, + [2175] = {.lex_state = 74}, + [2176] = {.lex_state = 74}, + [2177] = {.lex_state = 74}, + [2178] = {.lex_state = 74}, + [2179] = {.lex_state = 74}, + [2180] = {.lex_state = 74}, + [2181] = {.lex_state = 74}, + [2182] = {.lex_state = 74}, + [2183] = {.lex_state = 74, .external_lex_state = 2}, + [2184] = {.lex_state = 74}, + [2185] = {.lex_state = 74}, + [2186] = {.lex_state = 74}, + [2187] = {.lex_state = 74}, + [2188] = {.lex_state = 74}, + [2189] = {.lex_state = 74}, + [2190] = {.lex_state = 74}, + [2191] = {.lex_state = 74}, + [2192] = {.lex_state = 74}, + [2193] = {.lex_state = 74}, + [2194] = {.lex_state = 74}, + [2195] = {.lex_state = 74}, [2196] = {.lex_state = 5, .external_lex_state = 11}, - [2197] = {.lex_state = 75}, - [2198] = {.lex_state = 75}, - [2199] = {.lex_state = 75, .external_lex_state = 2}, - [2200] = {.lex_state = 75}, + [2197] = {.lex_state = 74}, + [2198] = {.lex_state = 74}, + [2199] = {.lex_state = 74, .external_lex_state = 2}, + [2200] = {.lex_state = 74}, [2201] = {.lex_state = 5, .external_lex_state = 11}, - [2202] = {.lex_state = 14}, - [2203] = {.lex_state = 75}, - [2204] = {.lex_state = 75}, - [2205] = {.lex_state = 75}, - [2206] = {.lex_state = 14}, - [2207] = {.lex_state = 75}, - [2208] = {.lex_state = 75}, - [2209] = {.lex_state = 14}, - [2210] = {.lex_state = 75}, - [2211] = {.lex_state = 75}, - [2212] = {.lex_state = 75}, - [2213] = {.lex_state = 75}, - [2214] = {.lex_state = 75}, - [2215] = {.lex_state = 75}, - [2216] = {.lex_state = 75}, - [2217] = {.lex_state = 75, .external_lex_state = 2}, - [2218] = {.lex_state = 75}, - [2219] = {.lex_state = 75}, - [2220] = {.lex_state = 75, .external_lex_state = 2}, - [2221] = {.lex_state = 75}, - [2222] = {.lex_state = 75, .external_lex_state = 2}, - [2223] = {.lex_state = 75, .external_lex_state = 2}, - [2224] = {.lex_state = 75}, - [2225] = {.lex_state = 75}, - [2226] = {.lex_state = 75}, - [2227] = {.lex_state = 75, .external_lex_state = 2}, - [2228] = {.lex_state = 14}, - [2229] = {.lex_state = 75}, - [2230] = {.lex_state = 75}, - [2231] = {.lex_state = 75}, - [2232] = {.lex_state = 75}, - [2233] = {.lex_state = 75, .external_lex_state = 2}, - [2234] = {.lex_state = 14}, - [2235] = {.lex_state = 75}, - [2236] = {.lex_state = 75, .external_lex_state = 2}, - [2237] = {.lex_state = 75, .external_lex_state = 2}, - [2238] = {.lex_state = 75}, - [2239] = {.lex_state = 75}, - [2240] = {.lex_state = 75, .external_lex_state = 2}, - [2241] = {.lex_state = 75}, - [2242] = {.lex_state = 75, .external_lex_state = 2}, - [2243] = {.lex_state = 75}, - [2244] = {.lex_state = 75}, - [2245] = {.lex_state = 75}, - [2246] = {.lex_state = 75}, - [2247] = {.lex_state = 75}, - [2248] = {.lex_state = 75}, - [2249] = {.lex_state = 75}, - [2250] = {.lex_state = 75}, - [2251] = {.lex_state = 75}, - [2252] = {.lex_state = 75, .external_lex_state = 2}, - [2253] = {.lex_state = 75}, - [2254] = {.lex_state = 75}, - [2255] = {.lex_state = 75}, - [2256] = {.lex_state = 75}, - [2257] = {.lex_state = 75}, - [2258] = {.lex_state = 75}, - [2259] = {.lex_state = 14}, - [2260] = {.lex_state = 75}, - [2261] = {.lex_state = 75}, - [2262] = {.lex_state = 75}, - [2263] = {.lex_state = 75}, - [2264] = {.lex_state = 75}, - [2265] = {.lex_state = 75}, - [2266] = {.lex_state = 75}, - [2267] = {.lex_state = 75}, - [2268] = {.lex_state = 14}, - [2269] = {.lex_state = 75}, - [2270] = {.lex_state = 75, .external_lex_state = 2}, - [2271] = {.lex_state = 75}, - [2272] = {.lex_state = 75}, - [2273] = {.lex_state = 75, .external_lex_state = 2}, - [2274] = {.lex_state = 75}, - [2275] = {.lex_state = 75}, - [2276] = {.lex_state = 75}, - [2277] = {.lex_state = 75}, + [2202] = {.lex_state = 74}, + [2203] = {.lex_state = 74}, + [2204] = {.lex_state = 74}, + [2205] = {.lex_state = 74}, + [2206] = {.lex_state = 74}, + [2207] = {.lex_state = 74}, + [2208] = {.lex_state = 74}, + [2209] = {.lex_state = 74}, + [2210] = {.lex_state = 74}, + [2211] = {.lex_state = 74}, + [2212] = {.lex_state = 74}, + [2213] = {.lex_state = 74}, + [2214] = {.lex_state = 74}, + [2215] = {.lex_state = 74}, + [2216] = {.lex_state = 74}, + [2217] = {.lex_state = 74, .external_lex_state = 2}, + [2218] = {.lex_state = 74}, + [2219] = {.lex_state = 74}, + [2220] = {.lex_state = 74, .external_lex_state = 2}, + [2221] = {.lex_state = 74}, + [2222] = {.lex_state = 74, .external_lex_state = 2}, + [2223] = {.lex_state = 74, .external_lex_state = 2}, + [2224] = {.lex_state = 74}, + [2225] = {.lex_state = 74}, + [2226] = {.lex_state = 74}, + [2227] = {.lex_state = 74, .external_lex_state = 2}, + [2228] = {.lex_state = 74}, + [2229] = {.lex_state = 74}, + [2230] = {.lex_state = 74}, + [2231] = {.lex_state = 74}, + [2232] = {.lex_state = 74}, + [2233] = {.lex_state = 74, .external_lex_state = 2}, + [2234] = {.lex_state = 74}, + [2235] = {.lex_state = 74}, + [2236] = {.lex_state = 74, .external_lex_state = 2}, + [2237] = {.lex_state = 74, .external_lex_state = 2}, + [2238] = {.lex_state = 74}, + [2239] = {.lex_state = 74}, + [2240] = {.lex_state = 74, .external_lex_state = 2}, + [2241] = {.lex_state = 74}, + [2242] = {.lex_state = 74, .external_lex_state = 2}, + [2243] = {.lex_state = 74}, + [2244] = {.lex_state = 74}, + [2245] = {.lex_state = 74}, + [2246] = {.lex_state = 74}, + [2247] = {.lex_state = 74}, + [2248] = {.lex_state = 74}, + [2249] = {.lex_state = 74}, + [2250] = {.lex_state = 74}, + [2251] = {.lex_state = 74}, + [2252] = {.lex_state = 74, .external_lex_state = 2}, + [2253] = {.lex_state = 74}, + [2254] = {.lex_state = 74}, + [2255] = {.lex_state = 74}, + [2256] = {.lex_state = 74}, + [2257] = {.lex_state = 74}, + [2258] = {.lex_state = 74}, + [2259] = {.lex_state = 74}, + [2260] = {.lex_state = 74}, + [2261] = {.lex_state = 74}, + [2262] = {.lex_state = 74}, + [2263] = {.lex_state = 74}, + [2264] = {.lex_state = 74}, + [2265] = {.lex_state = 74}, + [2266] = {.lex_state = 74}, + [2267] = {.lex_state = 74}, + [2268] = {.lex_state = 74}, + [2269] = {.lex_state = 74}, + [2270] = {.lex_state = 74, .external_lex_state = 2}, + [2271] = {.lex_state = 74}, + [2272] = {.lex_state = 74}, + [2273] = {.lex_state = 74, .external_lex_state = 2}, + [2274] = {.lex_state = 74}, + [2275] = {.lex_state = 74}, + [2276] = {.lex_state = 74}, + [2277] = {.lex_state = 74}, [2278] = {.lex_state = 5, .external_lex_state = 11}, - [2279] = {.lex_state = 75}, - [2280] = {.lex_state = 75}, - [2281] = {.lex_state = 75}, - [2282] = {.lex_state = 75}, - [2283] = {.lex_state = 75}, - [2284] = {.lex_state = 75, .external_lex_state = 2}, - [2285] = {.lex_state = 75}, - [2286] = {.lex_state = 75}, - [2287] = {.lex_state = 75, .external_lex_state = 2}, - [2288] = {.lex_state = 75}, - [2289] = {.lex_state = 75, .external_lex_state = 2}, - [2290] = {.lex_state = 75, .external_lex_state = 2}, - [2291] = {.lex_state = 75}, - [2292] = {.lex_state = 14}, - [2293] = {.lex_state = 75}, - [2294] = {.lex_state = 75, .external_lex_state = 2}, - [2295] = {.lex_state = 75}, - [2296] = {.lex_state = 75}, - [2297] = {.lex_state = 75}, - [2298] = {.lex_state = 75}, - [2299] = {.lex_state = 75}, - [2300] = {.lex_state = 75}, - [2301] = {.lex_state = 75}, - [2302] = {.lex_state = 75}, - [2303] = {.lex_state = 75}, - [2304] = {.lex_state = 75}, - [2305] = {.lex_state = 75}, - [2306] = {.lex_state = 75, .external_lex_state = 2}, - [2307] = {.lex_state = 75}, - [2308] = {.lex_state = 75, .external_lex_state = 2}, - [2309] = {.lex_state = 75}, - [2310] = {.lex_state = 75}, - [2311] = {.lex_state = 75}, - [2312] = {.lex_state = 75}, - [2313] = {.lex_state = 75, .external_lex_state = 2}, - [2314] = {.lex_state = 75}, - [2315] = {.lex_state = 75, .external_lex_state = 2}, - [2316] = {.lex_state = 75}, - [2317] = {.lex_state = 75}, - [2318] = {.lex_state = 75}, - [2319] = {.lex_state = 75}, - [2320] = {.lex_state = 75}, - [2321] = {.lex_state = 75}, - [2322] = {.lex_state = 75}, - [2323] = {.lex_state = 75}, - [2324] = {.lex_state = 75}, - [2325] = {.lex_state = 75}, - [2326] = {.lex_state = 75}, - [2327] = {.lex_state = 75}, - [2328] = {.lex_state = 75, .external_lex_state = 2}, - [2329] = {.lex_state = 75}, - [2330] = {.lex_state = 75}, - [2331] = {.lex_state = 75}, - [2332] = {.lex_state = 14}, - [2333] = {.lex_state = 75, .external_lex_state = 2}, - [2334] = {.lex_state = 75}, - [2335] = {.lex_state = 75, .external_lex_state = 2}, - [2336] = {.lex_state = 75}, - [2337] = {.lex_state = 75}, - [2338] = {.lex_state = 75, .external_lex_state = 2}, - [2339] = {.lex_state = 75}, - [2340] = {.lex_state = 75, .external_lex_state = 2}, - [2341] = {.lex_state = 75}, - [2342] = {.lex_state = 75}, - [2343] = {.lex_state = 75}, - [2344] = {.lex_state = 75}, - [2345] = {.lex_state = 14}, - [2346] = {.lex_state = 75}, - [2347] = {.lex_state = 75}, - [2348] = {.lex_state = 75}, - [2349] = {.lex_state = 75, .external_lex_state = 2}, - [2350] = {.lex_state = 75}, - [2351] = {.lex_state = 75}, - [2352] = {.lex_state = 75}, - [2353] = {.lex_state = 75}, - [2354] = {.lex_state = 75}, - [2355] = {.lex_state = 75, .external_lex_state = 2}, - [2356] = {.lex_state = 14}, - [2357] = {.lex_state = 75}, - [2358] = {.lex_state = 75}, - [2359] = {.lex_state = 75}, - [2360] = {.lex_state = 75}, - [2361] = {.lex_state = 14}, - [2362] = {.lex_state = 75}, - [2363] = {.lex_state = 75, .external_lex_state = 2}, - [2364] = {.lex_state = 75, .external_lex_state = 2}, - [2365] = {.lex_state = 75}, - [2366] = {.lex_state = 75, .external_lex_state = 2}, - [2367] = {.lex_state = 75}, - [2368] = {.lex_state = 75, .external_lex_state = 2}, - [2369] = {.lex_state = 75, .external_lex_state = 2}, - [2370] = {.lex_state = 75}, + [2279] = {.lex_state = 74}, + [2280] = {.lex_state = 74}, + [2281] = {.lex_state = 74}, + [2282] = {.lex_state = 74}, + [2283] = {.lex_state = 74}, + [2284] = {.lex_state = 74, .external_lex_state = 2}, + [2285] = {.lex_state = 74}, + [2286] = {.lex_state = 74}, + [2287] = {.lex_state = 74, .external_lex_state = 2}, + [2288] = {.lex_state = 74}, + [2289] = {.lex_state = 74, .external_lex_state = 2}, + [2290] = {.lex_state = 74, .external_lex_state = 2}, + [2291] = {.lex_state = 74}, + [2292] = {.lex_state = 74}, + [2293] = {.lex_state = 74}, + [2294] = {.lex_state = 74, .external_lex_state = 2}, + [2295] = {.lex_state = 74}, + [2296] = {.lex_state = 74}, + [2297] = {.lex_state = 74}, + [2298] = {.lex_state = 74}, + [2299] = {.lex_state = 74}, + [2300] = {.lex_state = 74}, + [2301] = {.lex_state = 74}, + [2302] = {.lex_state = 74}, + [2303] = {.lex_state = 74}, + [2304] = {.lex_state = 74}, + [2305] = {.lex_state = 74}, + [2306] = {.lex_state = 74, .external_lex_state = 2}, + [2307] = {.lex_state = 74}, + [2308] = {.lex_state = 74, .external_lex_state = 2}, + [2309] = {.lex_state = 74}, + [2310] = {.lex_state = 74}, + [2311] = {.lex_state = 74}, + [2312] = {.lex_state = 74}, + [2313] = {.lex_state = 74, .external_lex_state = 2}, + [2314] = {.lex_state = 74}, + [2315] = {.lex_state = 74, .external_lex_state = 2}, + [2316] = {.lex_state = 74}, + [2317] = {.lex_state = 74}, + [2318] = {.lex_state = 74}, + [2319] = {.lex_state = 74}, + [2320] = {.lex_state = 74}, + [2321] = {.lex_state = 74}, + [2322] = {.lex_state = 74}, + [2323] = {.lex_state = 74}, + [2324] = {.lex_state = 74}, + [2325] = {.lex_state = 74}, + [2326] = {.lex_state = 74}, + [2327] = {.lex_state = 74}, + [2328] = {.lex_state = 74, .external_lex_state = 2}, + [2329] = {.lex_state = 74}, + [2330] = {.lex_state = 74}, + [2331] = {.lex_state = 74}, + [2332] = {.lex_state = 74}, + [2333] = {.lex_state = 74, .external_lex_state = 2}, + [2334] = {.lex_state = 74}, + [2335] = {.lex_state = 74, .external_lex_state = 2}, + [2336] = {.lex_state = 74}, + [2337] = {.lex_state = 74}, + [2338] = {.lex_state = 74, .external_lex_state = 2}, + [2339] = {.lex_state = 74}, + [2340] = {.lex_state = 74, .external_lex_state = 2}, + [2341] = {.lex_state = 74}, + [2342] = {.lex_state = 74}, + [2343] = {.lex_state = 74}, + [2344] = {.lex_state = 74}, + [2345] = {.lex_state = 74}, + [2346] = {.lex_state = 74}, + [2347] = {.lex_state = 74}, + [2348] = {.lex_state = 74}, + [2349] = {.lex_state = 74, .external_lex_state = 2}, + [2350] = {.lex_state = 74}, + [2351] = {.lex_state = 74}, + [2352] = {.lex_state = 74}, + [2353] = {.lex_state = 74}, + [2354] = {.lex_state = 74}, + [2355] = {.lex_state = 74, .external_lex_state = 2}, + [2356] = {.lex_state = 74}, + [2357] = {.lex_state = 74}, + [2358] = {.lex_state = 74}, + [2359] = {.lex_state = 74}, + [2360] = {.lex_state = 74}, + [2361] = {.lex_state = 74}, + [2362] = {.lex_state = 74}, + [2363] = {.lex_state = 74, .external_lex_state = 2}, + [2364] = {.lex_state = 74, .external_lex_state = 2}, + [2365] = {.lex_state = 74}, + [2366] = {.lex_state = 74, .external_lex_state = 2}, + [2367] = {.lex_state = 74}, + [2368] = {.lex_state = 74, .external_lex_state = 2}, + [2369] = {.lex_state = 74, .external_lex_state = 2}, + [2370] = {.lex_state = 74}, [2371] = {.lex_state = 5, .external_lex_state = 11}, - [2372] = {.lex_state = 75}, - [2373] = {.lex_state = 75}, - [2374] = {.lex_state = 75}, - [2375] = {.lex_state = 75}, - [2376] = {.lex_state = 75}, - [2377] = {.lex_state = 75}, - [2378] = {.lex_state = 75, .external_lex_state = 2}, - [2379] = {.lex_state = 75}, - [2380] = {.lex_state = 75}, - [2381] = {.lex_state = 75, .external_lex_state = 2}, + [2372] = {.lex_state = 74}, + [2373] = {.lex_state = 74}, + [2374] = {.lex_state = 74}, + [2375] = {.lex_state = 74}, + [2376] = {.lex_state = 74}, + [2377] = {.lex_state = 74}, + [2378] = {.lex_state = 74, .external_lex_state = 2}, + [2379] = {.lex_state = 74}, + [2380] = {.lex_state = 74}, + [2381] = {.lex_state = 74, .external_lex_state = 2}, [2382] = {.lex_state = 5, .external_lex_state = 11}, [2383] = {.lex_state = 5, .external_lex_state = 11}, - [2384] = {.lex_state = 75}, - [2385] = {.lex_state = 75, .external_lex_state = 2}, - [2386] = {.lex_state = 75}, - [2387] = {.lex_state = 75}, - [2388] = {.lex_state = 75, .external_lex_state = 2}, - [2389] = {.lex_state = 75, .external_lex_state = 2}, - [2390] = {.lex_state = 75, .external_lex_state = 2}, - [2391] = {.lex_state = 75}, - [2392] = {.lex_state = 75}, - [2393] = {.lex_state = 75}, - [2394] = {.lex_state = 75, .external_lex_state = 2}, - [2395] = {.lex_state = 75}, - [2396] = {.lex_state = 75, .external_lex_state = 2}, - [2397] = {.lex_state = 75}, - [2398] = {.lex_state = 75}, - [2399] = {.lex_state = 75}, - [2400] = {.lex_state = 75}, - [2401] = {.lex_state = 75, .external_lex_state = 2}, - [2402] = {.lex_state = 75}, - [2403] = {.lex_state = 75, .external_lex_state = 2}, - [2404] = {.lex_state = 75}, - [2405] = {.lex_state = 75}, - [2406] = {.lex_state = 75}, - [2407] = {.lex_state = 75}, - [2408] = {.lex_state = 75, .external_lex_state = 2}, - [2409] = {.lex_state = 75}, - [2410] = {.lex_state = 75}, - [2411] = {.lex_state = 75}, - [2412] = {.lex_state = 75}, - [2413] = {.lex_state = 75}, - [2414] = {.lex_state = 75}, - [2415] = {.lex_state = 75}, - [2416] = {.lex_state = 75}, - [2417] = {.lex_state = 75}, - [2418] = {.lex_state = 75}, - [2419] = {.lex_state = 75}, - [2420] = {.lex_state = 75}, - [2421] = {.lex_state = 75, .external_lex_state = 2}, - [2422] = {.lex_state = 75}, - [2423] = {.lex_state = 75}, - [2424] = {.lex_state = 75}, - [2425] = {.lex_state = 75}, - [2426] = {.lex_state = 75}, - [2427] = {.lex_state = 75, .external_lex_state = 2}, - [2428] = {.lex_state = 75}, - [2429] = {.lex_state = 75}, + [2384] = {.lex_state = 74}, + [2385] = {.lex_state = 74, .external_lex_state = 2}, + [2386] = {.lex_state = 74}, + [2387] = {.lex_state = 74}, + [2388] = {.lex_state = 74, .external_lex_state = 2}, + [2389] = {.lex_state = 74, .external_lex_state = 2}, + [2390] = {.lex_state = 74, .external_lex_state = 2}, + [2391] = {.lex_state = 74}, + [2392] = {.lex_state = 74}, + [2393] = {.lex_state = 74}, + [2394] = {.lex_state = 74, .external_lex_state = 2}, + [2395] = {.lex_state = 74}, + [2396] = {.lex_state = 74, .external_lex_state = 2}, + [2397] = {.lex_state = 74}, + [2398] = {.lex_state = 74}, + [2399] = {.lex_state = 74}, + [2400] = {.lex_state = 74}, + [2401] = {.lex_state = 74, .external_lex_state = 2}, + [2402] = {.lex_state = 74}, + [2403] = {.lex_state = 74, .external_lex_state = 2}, + [2404] = {.lex_state = 74}, + [2405] = {.lex_state = 74}, + [2406] = {.lex_state = 74}, + [2407] = {.lex_state = 74}, + [2408] = {.lex_state = 74, .external_lex_state = 2}, + [2409] = {.lex_state = 74}, + [2410] = {.lex_state = 74}, + [2411] = {.lex_state = 74}, + [2412] = {.lex_state = 74}, + [2413] = {.lex_state = 74}, + [2414] = {.lex_state = 74}, + [2415] = {.lex_state = 74}, + [2416] = {.lex_state = 74}, + [2417] = {.lex_state = 74}, + [2418] = {.lex_state = 74}, + [2419] = {.lex_state = 74}, + [2420] = {.lex_state = 74}, + [2421] = {.lex_state = 74, .external_lex_state = 2}, + [2422] = {.lex_state = 74}, + [2423] = {.lex_state = 74}, + [2424] = {.lex_state = 74}, + [2425] = {.lex_state = 74}, + [2426] = {.lex_state = 74}, + [2427] = {.lex_state = 74, .external_lex_state = 2}, + [2428] = {.lex_state = 74}, + [2429] = {.lex_state = 74}, [2430] = {.lex_state = 5, .external_lex_state = 11}, - [2431] = {.lex_state = 75, .external_lex_state = 2}, - [2432] = {.lex_state = 75, .external_lex_state = 2}, - [2433] = {.lex_state = 75, .external_lex_state = 2}, - [2434] = {.lex_state = 75}, - [2435] = {.lex_state = 75, .external_lex_state = 2}, - [2436] = {.lex_state = 75}, - [2437] = {.lex_state = 75}, - [2438] = {.lex_state = 75, .external_lex_state = 2}, - [2439] = {.lex_state = 75}, - [2440] = {.lex_state = 75}, - [2441] = {.lex_state = 75}, - [2442] = {.lex_state = 75, .external_lex_state = 2}, - [2443] = {.lex_state = 75}, - [2444] = {.lex_state = 75}, - [2445] = {.lex_state = 75}, - [2446] = {.lex_state = 75}, - [2447] = {.lex_state = 75, .external_lex_state = 11}, - [2448] = {.lex_state = 75}, - [2449] = {.lex_state = 75, .external_lex_state = 11}, - [2450] = {.lex_state = 75}, - [2451] = {.lex_state = 75}, - [2452] = {.lex_state = 75}, - [2453] = {.lex_state = 75}, - [2454] = {.lex_state = 75}, - [2455] = {.lex_state = 75}, - [2456] = {.lex_state = 75}, - [2457] = {.lex_state = 75}, - [2458] = {.lex_state = 75}, - [2459] = {.lex_state = 75}, - [2460] = {.lex_state = 75}, - [2461] = {.lex_state = 75}, - [2462] = {.lex_state = 75}, - [2463] = {.lex_state = 75}, - [2464] = {.lex_state = 75, .external_lex_state = 11}, - [2465] = {.lex_state = 75}, - [2466] = {.lex_state = 75}, - [2467] = {.lex_state = 75}, - [2468] = {.lex_state = 75}, - [2469] = {.lex_state = 75}, - [2470] = {.lex_state = 14}, - [2471] = {.lex_state = 75}, - [2472] = {.lex_state = 14}, - [2473] = {.lex_state = 75}, - [2474] = {.lex_state = 14}, - [2475] = {.lex_state = 75}, - [2476] = {.lex_state = 14}, - [2477] = {.lex_state = 14}, - [2478] = {.lex_state = 75}, - [2479] = {.lex_state = 14}, - [2480] = {.lex_state = 75}, - [2481] = {.lex_state = 75}, - [2482] = {.lex_state = 75}, - [2483] = {.lex_state = 75}, - [2484] = {.lex_state = 14}, - [2485] = {.lex_state = 75, .external_lex_state = 13}, - [2486] = {.lex_state = 75, .external_lex_state = 13}, - [2487] = {.lex_state = 75}, - [2488] = {.lex_state = 14}, - [2489] = {.lex_state = 14}, - [2490] = {.lex_state = 14}, - [2491] = {.lex_state = 75}, - [2492] = {.lex_state = 14}, - [2493] = {.lex_state = 75}, - [2494] = {.lex_state = 75}, - [2495] = {.lex_state = 75}, - [2496] = {.lex_state = 75}, - [2497] = {.lex_state = 75}, - [2498] = {.lex_state = 14}, - [2499] = {.lex_state = 14}, - [2500] = {.lex_state = 75}, - [2501] = {.lex_state = 75}, - [2502] = {.lex_state = 75}, - [2503] = {.lex_state = 75}, - [2504] = {.lex_state = 75}, - [2505] = {.lex_state = 75}, - [2506] = {.lex_state = 14}, - [2507] = {.lex_state = 14}, - [2508] = {.lex_state = 75}, - [2509] = {.lex_state = 75}, - [2510] = {.lex_state = 75}, - [2511] = {.lex_state = 14}, - [2512] = {.lex_state = 75}, - [2513] = {.lex_state = 14}, - [2514] = {.lex_state = 14}, - [2515] = {.lex_state = 14}, - [2516] = {.lex_state = 75, .external_lex_state = 11}, - [2517] = {.lex_state = 75, .external_lex_state = 11}, - [2518] = {.lex_state = 14}, - [2519] = {.lex_state = 14}, - [2520] = {.lex_state = 75}, - [2521] = {.lex_state = 14}, - [2522] = {.lex_state = 75}, - [2523] = {.lex_state = 75}, - [2524] = {.lex_state = 75}, - [2525] = {.lex_state = 75}, - [2526] = {.lex_state = 75}, - [2527] = {.lex_state = 14}, - [2528] = {.lex_state = 14}, - [2529] = {.lex_state = 14}, - [2530] = {.lex_state = 75}, - [2531] = {.lex_state = 14}, - [2532] = {.lex_state = 75}, + [2431] = {.lex_state = 74, .external_lex_state = 2}, + [2432] = {.lex_state = 74, .external_lex_state = 2}, + [2433] = {.lex_state = 74, .external_lex_state = 2}, + [2434] = {.lex_state = 74}, + [2435] = {.lex_state = 74, .external_lex_state = 2}, + [2436] = {.lex_state = 74}, + [2437] = {.lex_state = 74}, + [2438] = {.lex_state = 74, .external_lex_state = 2}, + [2439] = {.lex_state = 74}, + [2440] = {.lex_state = 74}, + [2441] = {.lex_state = 74}, + [2442] = {.lex_state = 74, .external_lex_state = 2}, + [2443] = {.lex_state = 74}, + [2444] = {.lex_state = 74}, + [2445] = {.lex_state = 74}, + [2446] = {.lex_state = 74}, + [2447] = {.lex_state = 74, .external_lex_state = 11}, + [2448] = {.lex_state = 74}, + [2449] = {.lex_state = 74, .external_lex_state = 11}, + [2450] = {.lex_state = 74}, + [2451] = {.lex_state = 74}, + [2452] = {.lex_state = 74}, + [2453] = {.lex_state = 74}, + [2454] = {.lex_state = 74}, + [2455] = {.lex_state = 74}, + [2456] = {.lex_state = 74}, + [2457] = {.lex_state = 74}, + [2458] = {.lex_state = 74}, + [2459] = {.lex_state = 74}, + [2460] = {.lex_state = 74}, + [2461] = {.lex_state = 74}, + [2462] = {.lex_state = 74}, + [2463] = {.lex_state = 74}, + [2464] = {.lex_state = 74, .external_lex_state = 11}, + [2465] = {.lex_state = 74}, + [2466] = {.lex_state = 74}, + [2467] = {.lex_state = 74}, + [2468] = {.lex_state = 74}, + [2469] = {.lex_state = 74}, + [2470] = {.lex_state = 74}, + [2471] = {.lex_state = 74}, + [2472] = {.lex_state = 74}, + [2473] = {.lex_state = 74}, + [2474] = {.lex_state = 74}, + [2475] = {.lex_state = 74}, + [2476] = {.lex_state = 74}, + [2477] = {.lex_state = 74}, + [2478] = {.lex_state = 74}, + [2479] = {.lex_state = 74}, + [2480] = {.lex_state = 74}, + [2481] = {.lex_state = 74}, + [2482] = {.lex_state = 74}, + [2483] = {.lex_state = 74}, + [2484] = {.lex_state = 74}, + [2485] = {.lex_state = 74, .external_lex_state = 13}, + [2486] = {.lex_state = 74, .external_lex_state = 13}, + [2487] = {.lex_state = 74}, + [2488] = {.lex_state = 74}, + [2489] = {.lex_state = 74}, + [2490] = {.lex_state = 74}, + [2491] = {.lex_state = 74}, + [2492] = {.lex_state = 74}, + [2493] = {.lex_state = 74}, + [2494] = {.lex_state = 74}, + [2495] = {.lex_state = 74}, + [2496] = {.lex_state = 74}, + [2497] = {.lex_state = 74}, + [2498] = {.lex_state = 74}, + [2499] = {.lex_state = 74}, + [2500] = {.lex_state = 74}, + [2501] = {.lex_state = 74}, + [2502] = {.lex_state = 74}, + [2503] = {.lex_state = 74}, + [2504] = {.lex_state = 74}, + [2505] = {.lex_state = 74}, + [2506] = {.lex_state = 74}, + [2507] = {.lex_state = 74}, + [2508] = {.lex_state = 74}, + [2509] = {.lex_state = 74}, + [2510] = {.lex_state = 74}, + [2511] = {.lex_state = 74}, + [2512] = {.lex_state = 74}, + [2513] = {.lex_state = 74}, + [2514] = {.lex_state = 74}, + [2515] = {.lex_state = 74}, + [2516] = {.lex_state = 74, .external_lex_state = 11}, + [2517] = {.lex_state = 74, .external_lex_state = 11}, + [2518] = {.lex_state = 74}, + [2519] = {.lex_state = 74}, + [2520] = {.lex_state = 74}, + [2521] = {.lex_state = 74}, + [2522] = {.lex_state = 74}, + [2523] = {.lex_state = 74}, + [2524] = {.lex_state = 74}, + [2525] = {.lex_state = 74}, + [2526] = {.lex_state = 74}, + [2527] = {.lex_state = 74}, + [2528] = {.lex_state = 74}, + [2529] = {.lex_state = 74}, + [2530] = {.lex_state = 74}, + [2531] = {.lex_state = 74}, + [2532] = {.lex_state = 74}, [2533] = {.lex_state = 14}, - [2534] = {.lex_state = 75}, + [2534] = {.lex_state = 74}, [2535] = {.lex_state = 14}, - [2536] = {.lex_state = 75}, - [2537] = {.lex_state = 75}, - [2538] = {.lex_state = 14}, - [2539] = {.lex_state = 75}, - [2540] = {.lex_state = 75}, - [2541] = {.lex_state = 75}, - [2542] = {.lex_state = 75}, - [2543] = {.lex_state = 75}, - [2544] = {.lex_state = 14}, - [2545] = {.lex_state = 14}, - [2546] = {.lex_state = 14}, - [2547] = {.lex_state = 14}, - [2548] = {.lex_state = 14}, - [2549] = {.lex_state = 75}, - [2550] = {.lex_state = 14}, - [2551] = {.lex_state = 14}, - [2552] = {.lex_state = 75}, - [2553] = {.lex_state = 75}, - [2554] = {.lex_state = 75}, - [2555] = {.lex_state = 14}, - [2556] = {.lex_state = 75}, - [2557] = {.lex_state = 14}, - [2558] = {.lex_state = 14}, - [2559] = {.lex_state = 75}, - [2560] = {.lex_state = 14}, - [2561] = {.lex_state = 14}, - [2562] = {.lex_state = 75}, - [2563] = {.lex_state = 75}, - [2564] = {.lex_state = 75}, - [2565] = {.lex_state = 14}, - [2566] = {.lex_state = 14}, - [2567] = {.lex_state = 75}, + [2536] = {.lex_state = 74}, + [2537] = {.lex_state = 74}, + [2538] = {.lex_state = 74}, + [2539] = {.lex_state = 74}, + [2540] = {.lex_state = 74}, + [2541] = {.lex_state = 74}, + [2542] = {.lex_state = 74}, + [2543] = {.lex_state = 74}, + [2544] = {.lex_state = 74}, + [2545] = {.lex_state = 74}, + [2546] = {.lex_state = 74}, + [2547] = {.lex_state = 74}, + [2548] = {.lex_state = 74}, + [2549] = {.lex_state = 74}, + [2550] = {.lex_state = 74}, + [2551] = {.lex_state = 74}, + [2552] = {.lex_state = 74}, + [2553] = {.lex_state = 74}, + [2554] = {.lex_state = 74}, + [2555] = {.lex_state = 74}, + [2556] = {.lex_state = 74}, + [2557] = {.lex_state = 74}, + [2558] = {.lex_state = 74}, + [2559] = {.lex_state = 74}, + [2560] = {.lex_state = 74}, + [2561] = {.lex_state = 74}, + [2562] = {.lex_state = 74}, + [2563] = {.lex_state = 74}, + [2564] = {.lex_state = 74}, + [2565] = {.lex_state = 74}, + [2566] = {.lex_state = 74}, + [2567] = {.lex_state = 74}, [2568] = {.lex_state = 14}, - [2569] = {.lex_state = 14}, + [2569] = {.lex_state = 74}, [2570] = {.lex_state = 14}, - [2571] = {.lex_state = 14}, - [2572] = {.lex_state = 75, .external_lex_state = 13}, - [2573] = {.lex_state = 75, .external_lex_state = 13}, - [2574] = {.lex_state = 14}, - [2575] = {.lex_state = 75}, - [2576] = {.lex_state = 75}, - [2577] = {.lex_state = 14}, - [2578] = {.lex_state = 75}, - [2579] = {.lex_state = 75}, - [2580] = {.lex_state = 75}, - [2581] = {.lex_state = 14}, - [2582] = {.lex_state = 75}, - [2583] = {.lex_state = 14}, - [2584] = {.lex_state = 75}, - [2585] = {.lex_state = 75}, - [2586] = {.lex_state = 14}, - [2587] = {.lex_state = 75}, - [2588] = {.lex_state = 75}, - [2589] = {.lex_state = 14}, - [2590] = {.lex_state = 75}, - [2591] = {.lex_state = 75}, - [2592] = {.lex_state = 75}, - [2593] = {.lex_state = 14}, - [2594] = {.lex_state = 14}, - [2595] = {.lex_state = 14}, - [2596] = {.lex_state = 75}, - [2597] = {.lex_state = 14}, - [2598] = {.lex_state = 75}, - [2599] = {.lex_state = 75}, - [2600] = {.lex_state = 75}, - [2601] = {.lex_state = 75}, - [2602] = {.lex_state = 75}, - [2603] = {.lex_state = 75}, - [2604] = {.lex_state = 75}, - [2605] = {.lex_state = 14}, - [2606] = {.lex_state = 75}, - [2607] = {.lex_state = 14}, - [2608] = {.lex_state = 75}, - [2609] = {.lex_state = 14}, - [2610] = {.lex_state = 75}, - [2611] = {.lex_state = 14}, - [2612] = {.lex_state = 75}, - [2613] = {.lex_state = 75}, - [2614] = {.lex_state = 75}, - [2615] = {.lex_state = 75}, - [2616] = {.lex_state = 14}, - [2617] = {.lex_state = 75}, - [2618] = {.lex_state = 75}, - [2619] = {.lex_state = 75}, - [2620] = {.lex_state = 75}, - [2621] = {.lex_state = 14}, - [2622] = {.lex_state = 14}, - [2623] = {.lex_state = 75}, - [2624] = {.lex_state = 75}, - [2625] = {.lex_state = 75}, - [2626] = {.lex_state = 75}, - [2627] = {.lex_state = 14}, - [2628] = {.lex_state = 75}, - [2629] = {.lex_state = 75}, - [2630] = {.lex_state = 75}, - [2631] = {.lex_state = 75}, - [2632] = {.lex_state = 75}, - [2633] = {.lex_state = 75}, - [2634] = {.lex_state = 75}, - [2635] = {.lex_state = 14}, - [2636] = {.lex_state = 75}, - [2637] = {.lex_state = 75}, - [2638] = {.lex_state = 14}, - [2639] = {.lex_state = 75}, - [2640] = {.lex_state = 75}, - [2641] = {.lex_state = 14}, - [2642] = {.lex_state = 75}, - [2643] = {.lex_state = 75}, - [2644] = {.lex_state = 75}, - [2645] = {.lex_state = 14}, - [2646] = {.lex_state = 75}, - [2647] = {.lex_state = 75, .external_lex_state = 11}, - [2648] = {.lex_state = 75}, - [2649] = {.lex_state = 14}, - [2650] = {.lex_state = 75}, - [2651] = {.lex_state = 75}, - [2652] = {.lex_state = 75}, - [2653] = {.lex_state = 75}, - [2654] = {.lex_state = 75}, - [2655] = {.lex_state = 75}, - [2656] = {.lex_state = 75}, - [2657] = {.lex_state = 75}, - [2658] = {.lex_state = 75}, - [2659] = {.lex_state = 75}, - [2660] = {.lex_state = 75}, - [2661] = {.lex_state = 75}, - [2662] = {.lex_state = 75}, - [2663] = {.lex_state = 75}, - [2664] = {.lex_state = 75}, - [2665] = {.lex_state = 75}, - [2666] = {.lex_state = 75}, - [2667] = {.lex_state = 75}, - [2668] = {.lex_state = 75}, - [2669] = {.lex_state = 75}, + [2571] = {.lex_state = 74}, + [2572] = {.lex_state = 74, .external_lex_state = 13}, + [2573] = {.lex_state = 74, .external_lex_state = 13}, + [2574] = {.lex_state = 74}, + [2575] = {.lex_state = 74}, + [2576] = {.lex_state = 74}, + [2577] = {.lex_state = 74}, + [2578] = {.lex_state = 74}, + [2579] = {.lex_state = 74}, + [2580] = {.lex_state = 74}, + [2581] = {.lex_state = 74}, + [2582] = {.lex_state = 74}, + [2583] = {.lex_state = 74}, + [2584] = {.lex_state = 74}, + [2585] = {.lex_state = 74}, + [2586] = {.lex_state = 74}, + [2587] = {.lex_state = 74}, + [2588] = {.lex_state = 74}, + [2589] = {.lex_state = 74}, + [2590] = {.lex_state = 74}, + [2591] = {.lex_state = 74}, + [2592] = {.lex_state = 74}, + [2593] = {.lex_state = 74}, + [2594] = {.lex_state = 74}, + [2595] = {.lex_state = 74}, + [2596] = {.lex_state = 74}, + [2597] = {.lex_state = 74}, + [2598] = {.lex_state = 74}, + [2599] = {.lex_state = 74}, + [2600] = {.lex_state = 74}, + [2601] = {.lex_state = 74}, + [2602] = {.lex_state = 74}, + [2603] = {.lex_state = 74}, + [2604] = {.lex_state = 74}, + [2605] = {.lex_state = 74}, + [2606] = {.lex_state = 74}, + [2607] = {.lex_state = 74}, + [2608] = {.lex_state = 74}, + [2609] = {.lex_state = 74}, + [2610] = {.lex_state = 74}, + [2611] = {.lex_state = 74}, + [2612] = {.lex_state = 74}, + [2613] = {.lex_state = 74}, + [2614] = {.lex_state = 74}, + [2615] = {.lex_state = 74}, + [2616] = {.lex_state = 74}, + [2617] = {.lex_state = 74}, + [2618] = {.lex_state = 74}, + [2619] = {.lex_state = 74}, + [2620] = {.lex_state = 74}, + [2621] = {.lex_state = 74}, + [2622] = {.lex_state = 74}, + [2623] = {.lex_state = 74}, + [2624] = {.lex_state = 74}, + [2625] = {.lex_state = 74}, + [2626] = {.lex_state = 74}, + [2627] = {.lex_state = 74}, + [2628] = {.lex_state = 74}, + [2629] = {.lex_state = 74}, + [2630] = {.lex_state = 74}, + [2631] = {.lex_state = 74}, + [2632] = {.lex_state = 74}, + [2633] = {.lex_state = 74}, + [2634] = {.lex_state = 74}, + [2635] = {.lex_state = 74}, + [2636] = {.lex_state = 74}, + [2637] = {.lex_state = 74}, + [2638] = {.lex_state = 74}, + [2639] = {.lex_state = 74}, + [2640] = {.lex_state = 74}, + [2641] = {.lex_state = 74}, + [2642] = {.lex_state = 74}, + [2643] = {.lex_state = 74}, + [2644] = {.lex_state = 74}, + [2645] = {.lex_state = 74}, + [2646] = {.lex_state = 74}, + [2647] = {.lex_state = 74, .external_lex_state = 11}, + [2648] = {.lex_state = 74}, + [2649] = {.lex_state = 74}, + [2650] = {.lex_state = 74}, + [2651] = {.lex_state = 74}, + [2652] = {.lex_state = 74}, + [2653] = {.lex_state = 74}, + [2654] = {.lex_state = 74}, + [2655] = {.lex_state = 74}, + [2656] = {.lex_state = 74}, + [2657] = {.lex_state = 74}, + [2658] = {.lex_state = 74}, + [2659] = {.lex_state = 74}, + [2660] = {.lex_state = 74}, + [2661] = {.lex_state = 74}, + [2662] = {.lex_state = 74}, + [2663] = {.lex_state = 74}, + [2664] = {.lex_state = 74}, + [2665] = {.lex_state = 74}, + [2666] = {.lex_state = 74}, + [2667] = {.lex_state = 74}, + [2668] = {.lex_state = 74}, + [2669] = {.lex_state = 74}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -27618,7 +27617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(557), [anon_sym_DOT] = ACTIONS(567), [anon_sym_STAR] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(557), [aux_sym_include_expression_token1] = ACTIONS(615), [aux_sym_include_once_expression_token1] = ACTIONS(617), @@ -27761,7 +27760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(557), [anon_sym_DOT] = ACTIONS(567), [anon_sym_STAR] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(557), [aux_sym_include_expression_token1] = ACTIONS(645), [aux_sym_include_once_expression_token1] = ACTIONS(647), @@ -27902,7 +27901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(557), [anon_sym_DOT] = ACTIONS(567), [anon_sym_STAR] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(557), [aux_sym_include_expression_token1] = ACTIONS(125), [aux_sym_include_once_expression_token1] = ACTIONS(127), @@ -28044,7 +28043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(557), [anon_sym_DOT] = ACTIONS(567), [anon_sym_STAR] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(557), [aux_sym_include_expression_token1] = ACTIONS(687), [aux_sym_include_once_expression_token1] = ACTIONS(689), @@ -76473,7 +76472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { static const uint16_t ts_small_parse_table[] = { [0] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1556), 21, anon_sym_AMP, @@ -76540,9 +76539,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [70] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1560), 21, + ACTIONS(1562), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76564,7 +76563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1558), 41, + ACTIONS(1560), 41, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76607,9 +76606,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [140] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1564), 21, + ACTIONS(1566), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76631,7 +76630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1562), 41, + ACTIONS(1564), 41, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76674,9 +76673,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [210] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1568), 21, + ACTIONS(1570), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76698,7 +76697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1566), 41, + ACTIONS(1568), 41, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76741,13 +76740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [280] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(591), 1, sym_arguments, - ACTIONS(1572), 21, + ACTIONS(1574), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76769,7 +76768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1570), 38, + ACTIONS(1572), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76809,13 +76808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [353] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(581), 1, sym_arguments, - ACTIONS(1578), 21, + ACTIONS(1580), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76837,7 +76836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1576), 38, + ACTIONS(1578), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76877,13 +76876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [426] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(586), 1, sym_arguments, - ACTIONS(1582), 21, + ACTIONS(1584), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76905,7 +76904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1580), 38, + ACTIONS(1582), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -76945,13 +76944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [499] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(584), 1, sym_arguments, - ACTIONS(1586), 21, + ACTIONS(1588), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -76973,7 +76972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1584), 38, + ACTIONS(1586), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77013,13 +77012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [572] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(582), 1, sym_arguments, - ACTIONS(1590), 21, + ACTIONS(1592), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77041,7 +77040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1588), 38, + ACTIONS(1590), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77081,24 +77080,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [645] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - ACTIONS(1596), 1, + ACTIONS(1598), 1, anon_sym_EQ, STATE(592), 1, sym_arguments, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1602), 13, + ACTIONS(1604), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -77112,7 +77111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1592), 18, + ACTIONS(1594), 18, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77131,7 +77130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1594), 20, + ACTIONS(1596), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -77153,9 +77152,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [726] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1606), 21, + ACTIONS(1608), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77177,7 +77176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1604), 39, + ACTIONS(1606), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77218,9 +77217,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [794] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1610), 21, + ACTIONS(1612), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77242,7 +77241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1608), 39, + ACTIONS(1610), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77283,9 +77282,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [862] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1614), 21, + ACTIONS(1616), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77307,7 +77306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 39, + ACTIONS(1614), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77348,9 +77347,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [930] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1618), 21, + ACTIONS(1620), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77372,7 +77371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 39, + ACTIONS(1618), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77413,9 +77412,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [998] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1622), 21, + ACTIONS(1624), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77437,7 +77436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1620), 39, + ACTIONS(1622), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77478,9 +77477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1066] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1626), 21, + ACTIONS(1628), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77502,7 +77501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1624), 39, + ACTIONS(1626), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77543,9 +77542,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1134] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1630), 21, + ACTIONS(1632), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77567,7 +77566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1628), 39, + ACTIONS(1630), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77608,9 +77607,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1202] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1634), 21, + ACTIONS(1636), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77632,7 +77631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1632), 39, + ACTIONS(1634), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77673,9 +77672,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1270] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1638), 21, + ACTIONS(1640), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77697,7 +77696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1636), 39, + ACTIONS(1638), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77738,9 +77737,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1338] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1642), 21, + ACTIONS(1644), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77762,7 +77761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1640), 39, + ACTIONS(1642), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77803,9 +77802,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1406] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1646), 21, + ACTIONS(1648), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77827,7 +77826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1644), 39, + ACTIONS(1646), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77868,9 +77867,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1474] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1650), 21, + ACTIONS(1652), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77892,7 +77891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1648), 39, + ACTIONS(1650), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77933,9 +77932,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1542] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1654), 21, + ACTIONS(1656), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77957,7 +77956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1652), 39, + ACTIONS(1654), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -77998,20 +77997,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1610] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1596), 1, + ACTIONS(1598), 1, anon_sym_EQ, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1602), 13, + ACTIONS(1604), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78025,7 +78024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1592), 18, + ACTIONS(1594), 18, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78044,7 +78043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1594), 20, + ACTIONS(1596), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -78066,24 +78065,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1685] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - ACTIONS(1656), 1, + ACTIONS(1658), 1, anon_sym_EQ, STATE(592), 1, sym_arguments, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1658), 13, + ACTIONS(1660), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78097,7 +78096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1592), 16, + ACTIONS(1594), 16, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78114,7 +78113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1594), 20, + ACTIONS(1596), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -78136,24 +78135,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1764] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - ACTIONS(1660), 1, + ACTIONS(1662), 1, anon_sym_EQ, STATE(592), 1, sym_arguments, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1662), 13, + ACTIONS(1664), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78167,7 +78166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1592), 16, + ACTIONS(1594), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -78184,7 +78183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78205,13 +78204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1842] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, STATE(613), 1, sym_arguments, - ACTIONS(1590), 20, + ACTIONS(1592), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -78232,7 +78231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1588), 35, + ACTIONS(1590), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78269,24 +78268,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [1911] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, - anon_sym_LPAREN, ACTIONS(1666), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, anon_sym_EQ, STATE(627), 1, sym_arguments, - ACTIONS(1668), 2, + ACTIONS(1670), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1670), 13, + ACTIONS(1672), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78300,7 +78299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1592), 15, + ACTIONS(1594), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78316,7 +78315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78337,13 +78336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [1988] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, STATE(618), 1, sym_arguments, - ACTIONS(1582), 20, + ACTIONS(1584), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -78364,7 +78363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1580), 35, + ACTIONS(1582), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78401,24 +78400,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2057] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1596), 1, + ACTIONS(1598), 1, anon_sym_EQ, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, STATE(627), 1, sym_arguments, - ACTIONS(1668), 2, + ACTIONS(1670), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1602), 13, + ACTIONS(1604), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78432,7 +78431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1592), 15, + ACTIONS(1594), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78448,7 +78447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78469,30 +78468,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2134] = 12, - ACTIONS(3), 1, - sym_comment, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1574), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1576), 1, anon_sym_LPAREN, - ACTIONS(1656), 1, + ACTIONS(1658), 1, anon_sym_EQ, - ACTIONS(1672), 1, + ACTIONS(1674), 1, anon_sym_RPAREN, STATE(592), 1, sym_arguments, STATE(2099), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1592), 12, + ACTIONS(1594), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -78505,7 +78504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1658), 13, + ACTIONS(1660), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78519,7 +78518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78540,13 +78539,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2217] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, STATE(623), 1, sym_arguments, - ACTIONS(1586), 20, + ACTIONS(1588), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -78567,7 +78566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1584), 35, + ACTIONS(1586), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78604,24 +78603,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2286] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - ACTIONS(1596), 1, + ACTIONS(1598), 1, anon_sym_EQ, STATE(592), 1, sym_arguments, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1592), 12, + ACTIONS(1594), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -78634,7 +78633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1602), 16, + ACTIONS(1604), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, @@ -78651,7 +78650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_RBRACK, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78672,13 +78671,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2363] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, STATE(615), 1, sym_arguments, - ACTIONS(1578), 20, + ACTIONS(1580), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -78699,7 +78698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1576), 35, + ACTIONS(1578), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78736,13 +78735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2432] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, STATE(617), 1, sym_arguments, - ACTIONS(1572), 20, + ACTIONS(1574), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -78763,7 +78762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1570), 35, + ACTIONS(1572), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78800,20 +78799,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2501] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1656), 1, + ACTIONS(1658), 1, anon_sym_EQ, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1658), 13, + ACTIONS(1660), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78827,7 +78826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1592), 16, + ACTIONS(1594), 16, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -78844,7 +78843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1594), 20, + ACTIONS(1596), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -78866,9 +78865,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2574] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1630), 20, + ACTIONS(1632), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -78889,7 +78888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1628), 36, + ACTIONS(1630), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78927,24 +78926,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2638] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - ACTIONS(1674), 1, + ACTIONS(1676), 1, anon_sym_EQ, STATE(592), 1, sym_arguments, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1676), 13, + ACTIONS(1678), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78958,7 +78957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1592), 14, + ACTIONS(1594), 14, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -78973,7 +78972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78994,27 +78993,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2714] = 10, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - ACTIONS(1656), 1, + ACTIONS(1658), 1, anon_sym_EQ, STATE(592), 1, sym_arguments, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1678), 2, + ACTIONS(1680), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1592), 12, + ACTIONS(1594), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -79027,7 +79026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1658), 13, + ACTIONS(1660), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79041,7 +79040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79062,9 +79061,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [2792] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1634), 20, + ACTIONS(1636), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79085,7 +79084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1632), 36, + ACTIONS(1634), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79123,9 +79122,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2856] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1654), 20, + ACTIONS(1656), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79146,7 +79145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1652), 36, + ACTIONS(1654), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79184,9 +79183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2920] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1622), 20, + ACTIONS(1624), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79207,7 +79206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1620), 36, + ACTIONS(1622), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79245,9 +79244,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [2984] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1610), 20, + ACTIONS(1612), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79268,7 +79267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1608), 36, + ACTIONS(1610), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79306,9 +79305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3048] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1568), 20, + ACTIONS(1570), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79329,7 +79328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1566), 36, + ACTIONS(1568), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79367,9 +79366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3112] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1606), 20, + ACTIONS(1608), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79390,7 +79389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1604), 36, + ACTIONS(1606), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79428,9 +79427,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3176] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1614), 20, + ACTIONS(1616), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79451,7 +79450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 36, + ACTIONS(1614), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79489,9 +79488,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3240] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1646), 20, + ACTIONS(1648), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79512,7 +79511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1644), 36, + ACTIONS(1646), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79550,9 +79549,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3304] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1626), 20, + ACTIONS(1628), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79573,7 +79572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1624), 36, + ACTIONS(1626), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79611,9 +79610,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3368] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1642), 20, + ACTIONS(1644), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79634,7 +79633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1640), 36, + ACTIONS(1642), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79672,9 +79671,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3432] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1564), 20, + ACTIONS(1566), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79695,7 +79694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1562), 36, + ACTIONS(1564), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79733,27 +79732,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3496] = 10, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - ACTIONS(1656), 1, + ACTIONS(1658), 1, anon_sym_EQ, STATE(592), 1, sym_arguments, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1680), 2, + ACTIONS(1682), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1592), 12, + ACTIONS(1594), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -79766,7 +79765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1658), 13, + ACTIONS(1660), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79780,7 +79779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79801,20 +79800,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [3574] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1660), 1, + ACTIONS(1662), 1, anon_sym_EQ, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1662), 13, + ACTIONS(1664), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79828,7 +79827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1592), 16, + ACTIONS(1594), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -79845,7 +79844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79866,9 +79865,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [3646] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1618), 20, + ACTIONS(1620), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79889,7 +79888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 36, + ACTIONS(1618), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79927,9 +79926,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3710] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1638), 20, + ACTIONS(1640), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79950,7 +79949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1636), 36, + ACTIONS(1638), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79988,27 +79987,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3774] = 10, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - ACTIONS(1660), 1, + ACTIONS(1662), 1, anon_sym_EQ, STATE(592), 1, sym_arguments, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1682), 2, + ACTIONS(1684), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1592), 12, + ACTIONS(1594), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80021,7 +80020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1662), 13, + ACTIONS(1664), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80035,7 +80034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80056,7 +80055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [3852] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1556), 20, anon_sym_AMP, @@ -80117,9 +80116,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3916] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1650), 20, + ACTIONS(1652), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80140,7 +80139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1648), 36, + ACTIONS(1650), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80178,9 +80177,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [3980] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1560), 20, + ACTIONS(1562), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80201,7 +80200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1558), 36, + ACTIONS(1560), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80239,26 +80238,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [4044] = 10, - ACTIONS(3), 1, - sym_comment, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1656), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1658), 1, anon_sym_EQ, - ACTIONS(1672), 1, + ACTIONS(1674), 1, anon_sym_RPAREN, STATE(2099), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1592), 12, + ACTIONS(1594), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80271,7 +80270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1658), 13, + ACTIONS(1660), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80285,7 +80284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80306,20 +80305,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4121] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1596), 1, + ACTIONS(1598), 1, anon_sym_EQ, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1592), 12, + ACTIONS(1594), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80332,7 +80331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1602), 16, + ACTIONS(1604), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, @@ -80349,7 +80348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_RBRACK, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80370,20 +80369,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4192] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1596), 1, + ACTIONS(1598), 1, anon_sym_EQ, - ACTIONS(1668), 2, + ACTIONS(1670), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1602), 13, + ACTIONS(1604), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80397,7 +80396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1592), 15, + ACTIONS(1594), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80413,7 +80412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80434,20 +80433,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4263] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1666), 1, + ACTIONS(1668), 1, anon_sym_EQ, - ACTIONS(1668), 2, + ACTIONS(1670), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1670), 13, + ACTIONS(1672), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80461,7 +80460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1592), 15, + ACTIONS(1594), 15, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80477,7 +80476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80498,27 +80497,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4334] = 10, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - ACTIONS(1660), 1, + ACTIONS(1662), 1, anon_sym_EQ, STATE(592), 1, sym_arguments, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1685), 2, + ACTIONS(1687), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1592), 11, + ACTIONS(1594), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -80530,7 +80529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1662), 13, + ACTIONS(1664), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80544,7 +80543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80565,20 +80564,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4411] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1674), 1, + ACTIONS(1676), 1, anon_sym_EQ, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1676), 13, + ACTIONS(1678), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80592,7 +80591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1592), 14, + ACTIONS(1594), 14, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -80607,7 +80606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80628,23 +80627,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4481] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1660), 1, + ACTIONS(1662), 1, anon_sym_EQ, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1682), 2, + ACTIONS(1684), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1592), 12, + ACTIONS(1594), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80657,7 +80656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1662), 13, + ACTIONS(1664), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80671,7 +80670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80692,23 +80691,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4553] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1656), 1, + ACTIONS(1658), 1, anon_sym_EQ, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1680), 2, + ACTIONS(1682), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1592), 12, + ACTIONS(1594), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80721,7 +80720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1658), 13, + ACTIONS(1660), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80735,7 +80734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80756,23 +80755,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4625] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1656), 1, + ACTIONS(1658), 1, anon_sym_EQ, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1678), 2, + ACTIONS(1680), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1592), 12, + ACTIONS(1594), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -80785,7 +80784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1658), 13, + ACTIONS(1660), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80799,7 +80798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80820,23 +80819,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4697] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1660), 1, + ACTIONS(1662), 1, anon_sym_EQ, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1685), 2, + ACTIONS(1687), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1592), 11, + ACTIONS(1594), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -80848,7 +80847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1662), 13, + ACTIONS(1664), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80862,7 +80861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1594), 19, + ACTIONS(1596), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80883,9 +80882,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, [4768] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1688), 21, + ACTIONS(1690), 22, anon_sym_AMP, aux_sym_function_static_declaration_token1, aux_sym_namespace_aliasing_clause_token1, @@ -80906,8 +80905,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, + anon_sym_SLASH, sym_name, - ACTIONS(1690), 29, + ACTIONS(1692), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -80935,7 +80935,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [4826] = 25, ACTIONS(27), 1, @@ -80946,24 +80945,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_modifier_token1, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, - sym_name, + ACTIONS(1558), 1, + sym_comment, ACTIONS(1694), 1, - aux_sym_function_static_declaration_token1, + sym_name, ACTIONS(1696), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1698), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1700), 1, - aux_sym_readonly_modifier_token1, ACTIONS(1702), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1704), 1, sym_var_modifier, - ACTIONS(1706), 1, - anon_sym_LPAREN, ACTIONS(1708), 1, - anon_sym_QMARK, + anon_sym_LPAREN, ACTIONS(1710), 1, - anon_sym_DOLLAR, + anon_sym_QMARK, ACTIONS(1712), 1, - sym_comment, + anon_sym_DOLLAR, STATE(1428), 1, sym_qualified_name, STATE(1696), 1, @@ -80978,7 +80977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2558), 1, sym_namespace_name_as_prefix, - ACTIONS(1704), 3, + ACTIONS(1706), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -80999,7 +80998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, aux_sym_property_declaration_repeat1, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -81022,24 +81021,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_modifier_token1, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, - sym_name, + ACTIONS(1558), 1, + sym_comment, ACTIONS(1694), 1, - aux_sym_function_static_declaration_token1, + sym_name, ACTIONS(1696), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1698), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1700), 1, - aux_sym_readonly_modifier_token1, ACTIONS(1702), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1704), 1, sym_var_modifier, - ACTIONS(1706), 1, - anon_sym_LPAREN, ACTIONS(1708), 1, - anon_sym_QMARK, + anon_sym_LPAREN, ACTIONS(1710), 1, - anon_sym_DOLLAR, + anon_sym_QMARK, ACTIONS(1712), 1, - sym_comment, + anon_sym_DOLLAR, STATE(1428), 1, sym_qualified_name, STATE(1696), 1, @@ -81054,7 +81053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2558), 1, sym_namespace_name_as_prefix, - ACTIONS(1704), 3, + ACTIONS(1706), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, @@ -81075,7 +81074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, aux_sym_property_declaration_repeat1, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -81090,13 +81089,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [5028] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(680), 1, sym_arguments, - ACTIONS(1578), 12, + ACTIONS(1580), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81109,7 +81108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 33, + anon_sym_SLASH, + ACTIONS(1578), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81141,16 +81141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5087] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(678), 1, sym_arguments, - ACTIONS(1572), 12, + ACTIONS(1574), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81163,7 +81162,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1570), 33, + anon_sym_SLASH, + ACTIONS(1572), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81195,16 +81195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5146] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(669), 1, sym_arguments, - ACTIONS(1582), 12, + ACTIONS(1584), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81217,7 +81216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 33, + anon_sym_SLASH, + ACTIONS(1582), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81249,16 +81249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5205] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(673), 1, sym_arguments, - ACTIONS(1586), 12, + ACTIONS(1588), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81271,7 +81270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1584), 33, + anon_sym_SLASH, + ACTIONS(1586), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81303,16 +81303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5264] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(666), 1, sym_arguments, - ACTIONS(1590), 12, + ACTIONS(1592), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81325,7 +81324,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1588), 33, + anon_sym_SLASH, + ACTIONS(1590), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81357,12 +81357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5323] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -81370,13 +81369,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1718), 11, + ACTIONS(1718), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81388,7 +81387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 27, + anon_sym_SLASH, + ACTIONS(1716), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81414,7 +81414,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5388] = 26, ACTIONS(3), 1, @@ -81423,7 +81422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1694), 1, sym_name, ACTIONS(1723), 1, anon_sym_AMP, @@ -81477,7 +81476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -81492,9 +81491,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [5489] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1614), 12, + ACTIONS(1616), 13, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -81507,7 +81506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1612), 35, + anon_sym_SLASH, + ACTIONS(1614), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81541,22 +81541,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5544] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(664), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 12, + ACTIONS(1598), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81569,7 +81568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1602), 28, + anon_sym_SLASH, + ACTIONS(1604), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81596,7 +81596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5605] = 26, ACTIONS(3), 1, @@ -81605,7 +81604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1694), 1, sym_name, ACTIONS(1723), 1, anon_sym_AMP, @@ -81659,7 +81658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -81674,9 +81673,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [5706] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -81684,13 +81683,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81702,7 +81701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 27, + anon_sym_SLASH, + ACTIONS(1594), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81728,10 +81728,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5771] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, @@ -81741,13 +81740,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81759,7 +81758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 27, + anon_sym_SLASH, + ACTIONS(1594), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81785,10 +81785,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5836] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -81798,13 +81797,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1745), 11, + ACTIONS(1745), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81816,7 +81815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1743), 27, + anon_sym_SLASH, + ACTIONS(1743), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81842,25 +81842,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5901] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(664), 1, sym_arguments, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 12, + ACTIONS(1596), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -81873,7 +81872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 26, + anon_sym_SLASH, + ACTIONS(1594), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -81898,7 +81898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [5964] = 25, ACTIONS(3), 1, @@ -81907,7 +81906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1694), 1, sym_name, ACTIONS(1723), 1, anon_sym_AMP, @@ -81959,7 +81958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -81980,7 +81979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1694), 1, sym_name, ACTIONS(1723), 1, anon_sym_AMP, @@ -82032,7 +82031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -82047,9 +82046,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [6160] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1642), 12, + ACTIONS(1644), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82062,7 +82061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1640), 34, + anon_sym_SLASH, + ACTIONS(1642), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82095,7 +82095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6214] = 24, ACTIONS(3), 1, @@ -82170,9 +82169,9 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [6310] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1654), 12, + ACTIONS(1656), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82185,7 +82184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1652), 34, + anon_sym_SLASH, + ACTIONS(1654), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82218,12 +82218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6364] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1630), 12, + ACTIONS(1632), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82236,7 +82235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1628), 34, + anon_sym_SLASH, + ACTIONS(1630), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82269,12 +82269,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6418] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1556), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82287,7 +82286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1554), 34, + anon_sym_SLASH, + ACTIONS(1554), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82320,7 +82320,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6472] = 25, ACTIONS(3), 1, @@ -82329,7 +82328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1694), 1, sym_name, ACTIONS(1723), 1, anon_sym_AMP, @@ -82381,7 +82380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -82396,9 +82395,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [6570] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1650), 12, + ACTIONS(1652), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82411,7 +82410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1648), 34, + anon_sym_SLASH, + ACTIONS(1650), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82444,12 +82444,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6624] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1564), 12, + ACTIONS(1566), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82462,7 +82461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1562), 34, + anon_sym_SLASH, + ACTIONS(1564), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82495,12 +82495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6678] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1610), 12, + ACTIONS(1612), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82513,7 +82512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1608), 34, + anon_sym_SLASH, + ACTIONS(1610), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82546,7 +82546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6732] = 24, ACTIONS(3), 1, @@ -82621,9 +82620,9 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [6828] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1638), 12, + ACTIONS(1640), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82636,7 +82635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1636), 34, + anon_sym_SLASH, + ACTIONS(1638), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82669,12 +82669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6882] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1628), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82687,7 +82686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1624), 34, + anon_sym_SLASH, + ACTIONS(1626), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82720,12 +82720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6936] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1622), 12, + ACTIONS(1624), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82738,7 +82737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1620), 34, + anon_sym_SLASH, + ACTIONS(1622), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82771,7 +82771,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [6990] = 25, ACTIONS(3), 1, @@ -82780,7 +82779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1694), 1, sym_name, ACTIONS(1723), 1, anon_sym_AMP, @@ -82832,7 +82831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -82847,13 +82846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [7088] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(586), 1, sym_arguments, - ACTIONS(1775), 11, + ACTIONS(1775), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82865,7 +82864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1773), 33, + anon_sym_SLASH, + ACTIONS(1773), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82897,12 +82897,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7146] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1618), 12, + ACTIONS(1620), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82915,7 +82914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1616), 34, + anon_sym_SLASH, + ACTIONS(1618), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -82948,16 +82948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7200] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(588), 1, sym_arguments, - ACTIONS(1779), 11, + ACTIONS(1779), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -82969,7 +82968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1777), 33, + anon_sym_SLASH, + ACTIONS(1777), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83001,12 +83001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7258] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1568), 12, + ACTIONS(1570), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83019,7 +83018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1566), 34, + anon_sym_SLASH, + ACTIONS(1568), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83052,12 +83052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7312] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1560), 12, + ACTIONS(1562), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83070,7 +83069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1558), 34, + anon_sym_SLASH, + ACTIONS(1560), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83103,12 +83103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7366] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1614), 12, + ACTIONS(1616), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83121,7 +83120,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1612), 34, + anon_sym_SLASH, + ACTIONS(1614), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83154,12 +83154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7420] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1646), 12, + ACTIONS(1648), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83172,7 +83171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1644), 34, + anon_sym_SLASH, + ACTIONS(1646), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83205,12 +83205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7474] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1634), 12, + ACTIONS(1636), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83223,7 +83222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1632), 34, + anon_sym_SLASH, + ACTIONS(1634), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83256,12 +83256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7528] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1606), 12, + ACTIONS(1608), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83274,7 +83273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1604), 34, + anon_sym_SLASH, + ACTIONS(1606), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83307,18 +83307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7582] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 12, + ACTIONS(1598), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83331,7 +83330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1602), 28, + anon_sym_SLASH, + ACTIONS(1604), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83358,22 +83358,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7637] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(592), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83385,7 +83384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 27, + anon_sym_SLASH, + ACTIONS(1594), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83411,16 +83411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7696] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(586), 1, sym_arguments, - ACTIONS(1582), 11, + ACTIONS(1584), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83432,7 +83431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 32, + anon_sym_SLASH, + ACTIONS(1582), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83463,10 +83463,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7753] = 22, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1781), 1, sym_name, @@ -83535,19 +83534,19 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [7844] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(664), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83559,7 +83558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 27, + anon_sym_SLASH, + ACTIONS(1594), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83585,14 +83585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7903] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, STATE(586), 1, sym_arguments, - ACTIONS(1582), 11, + ACTIONS(1584), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83604,7 +83603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 33, + anon_sym_SLASH, + ACTIONS(1582), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83636,7 +83636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [7958] = 24, ACTIONS(27), 1, @@ -83655,7 +83654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -83710,19 +83709,19 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [8053] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(746), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1820), 11, + ACTIONS(1820), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83734,7 +83733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1818), 27, + anon_sym_SLASH, + ACTIONS(1818), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83760,22 +83760,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8112] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(664), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83787,7 +83786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 27, + anon_sym_SLASH, + ACTIONS(1594), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83813,16 +83813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8171] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(582), 1, sym_arguments, - ACTIONS(1590), 11, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83834,7 +83833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1588), 32, + anon_sym_SLASH, + ACTIONS(1590), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83865,22 +83865,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8228] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(592), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1718), 11, + ACTIONS(1718), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83892,7 +83891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 27, + anon_sym_SLASH, + ACTIONS(1716), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83918,16 +83918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8287] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(581), 1, sym_arguments, - ACTIONS(1578), 11, + ACTIONS(1580), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83939,7 +83938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 32, + anon_sym_SLASH, + ACTIONS(1578), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83970,22 +83970,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8344] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(592), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1718), 11, + ACTIONS(1718), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83997,7 +83996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 27, + anon_sym_SLASH, + ACTIONS(1716), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84023,7 +84023,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8403] = 24, ACTIONS(27), 1, @@ -84042,7 +84041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -84109,7 +84108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -84166,13 +84165,13 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [8589] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(591), 1, sym_arguments, - ACTIONS(1572), 11, + ACTIONS(1574), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84184,7 +84183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1570), 32, + anon_sym_SLASH, + ACTIONS(1572), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84215,7 +84215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8646] = 22, ACTIONS(27), 1, @@ -84230,7 +84229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -84287,13 +84286,13 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [8737] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(669), 1, sym_arguments, - ACTIONS(1775), 11, + ACTIONS(1775), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84305,7 +84304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1773), 32, + anon_sym_SLASH, + ACTIONS(1773), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84336,7 +84336,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8794] = 24, ACTIONS(3), 1, @@ -84345,7 +84344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1694), 1, sym_name, ACTIONS(1723), 1, anon_sym_AMP, @@ -84395,7 +84394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -84410,13 +84409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [8889] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(584), 1, sym_arguments, - ACTIONS(1586), 11, + ACTIONS(1588), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84428,7 +84427,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1584), 32, + anon_sym_SLASH, + ACTIONS(1586), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84459,16 +84459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [8946] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(679), 1, sym_arguments, - ACTIONS(1779), 11, + ACTIONS(1779), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84480,7 +84479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1777), 32, + anon_sym_SLASH, + ACTIONS(1777), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84511,17 +84511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9003] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1835), 1, anon_sym_EQ, ACTIONS(1832), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1830), 11, + ACTIONS(1830), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84533,7 +84532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1828), 31, + anon_sym_SLASH, + ACTIONS(1828), 30, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, @@ -84563,22 +84563,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9060] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(592), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84590,7 +84589,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 27, + anon_sym_SLASH, + ACTIONS(1594), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84616,22 +84616,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9119] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(746), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1839), 11, + ACTIONS(1839), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84643,7 +84642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1837), 27, + anon_sym_SLASH, + ACTIONS(1837), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84669,16 +84669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9178] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(732), 1, sym_arguments, - ACTIONS(1572), 11, + ACTIONS(1574), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84690,7 +84689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1570), 32, + anon_sym_SLASH, + ACTIONS(1572), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84721,16 +84721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9235] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(733), 1, sym_arguments, - ACTIONS(1578), 11, + ACTIONS(1580), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84742,7 +84741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 32, + anon_sym_SLASH, + ACTIONS(1578), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84773,22 +84773,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9292] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(759), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1745), 11, + ACTIONS(1745), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84800,7 +84799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1743), 27, + anon_sym_SLASH, + ACTIONS(1743), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84826,22 +84826,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9351] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1841), 1, anon_sym_LPAREN, STATE(964), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1745), 11, + ACTIONS(1745), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84853,7 +84852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1743), 27, + anon_sym_SLASH, + ACTIONS(1743), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84879,22 +84879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9410] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(759), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1745), 11, + ACTIONS(1745), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84906,7 +84905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1743), 27, + anon_sym_SLASH, + ACTIONS(1743), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84932,16 +84932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9469] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(737), 1, sym_arguments, - ACTIONS(1590), 11, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84953,7 +84952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1588), 32, + anon_sym_SLASH, + ACTIONS(1590), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -84984,21 +84984,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9526] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1600), 2, + ACTIONS(1602), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 12, + ACTIONS(1596), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85011,7 +85010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 26, + anon_sym_SLASH, + ACTIONS(1594), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85036,16 +85036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9583] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(738), 1, sym_arguments, - ACTIONS(1586), 11, + ACTIONS(1588), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85057,7 +85056,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1584), 32, + anon_sym_SLASH, + ACTIONS(1586), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85088,16 +85088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9640] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(740), 1, sym_arguments, - ACTIONS(1582), 11, + ACTIONS(1584), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85109,7 +85108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 32, + anon_sym_SLASH, + ACTIONS(1582), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85140,14 +85140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9697] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, STATE(591), 1, sym_arguments, - ACTIONS(1572), 11, + ACTIONS(1574), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85159,7 +85158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1570), 33, + anon_sym_SLASH, + ACTIONS(1572), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85191,14 +85191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9752] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, STATE(581), 1, sym_arguments, - ACTIONS(1578), 11, + ACTIONS(1580), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85210,7 +85209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 33, + anon_sym_SLASH, + ACTIONS(1578), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85242,22 +85242,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9807] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(746), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1598), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85269,7 +85268,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1602), 27, + anon_sym_SLASH, + ACTIONS(1604), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85295,14 +85295,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9866] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, STATE(582), 1, sym_arguments, - ACTIONS(1590), 11, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85314,7 +85313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1588), 33, + anon_sym_SLASH, + ACTIONS(1590), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85346,14 +85346,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9921] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, STATE(584), 1, sym_arguments, - ACTIONS(1586), 11, + ACTIONS(1588), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85365,7 +85364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1584), 33, + anon_sym_SLASH, + ACTIONS(1586), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85397,12 +85397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [9976] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1845), 11, + ACTIONS(1845), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85414,7 +85413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1843), 33, + anon_sym_SLASH, + ACTIONS(1843), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85446,12 +85446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10028] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1654), 11, + ACTIONS(1656), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85463,7 +85462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1652), 33, + anon_sym_SLASH, + ACTIONS(1654), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85495,12 +85495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10080] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1564), 11, + ACTIONS(1566), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85512,7 +85511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1562), 33, + anon_sym_SLASH, + ACTIONS(1564), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85544,12 +85544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10132] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1568), 11, + ACTIONS(1570), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85561,7 +85560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1566), 33, + anon_sym_SLASH, + ACTIONS(1568), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85593,12 +85593,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10184] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1630), 11, + ACTIONS(1632), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85610,7 +85609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1628), 33, + anon_sym_SLASH, + ACTIONS(1630), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85642,12 +85642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10236] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1556), 11, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85659,7 +85658,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1554), 33, + anon_sym_SLASH, + ACTIONS(1554), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85691,12 +85691,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10288] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1642), 11, + ACTIONS(1644), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85708,7 +85707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1640), 33, + anon_sym_SLASH, + ACTIONS(1642), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85740,12 +85740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10340] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1538), 11, + ACTIONS(1538), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85757,7 +85756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1540), 33, + anon_sym_SLASH, + ACTIONS(1540), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85789,12 +85789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10392] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1849), 11, + ACTIONS(1849), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85806,7 +85805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1847), 33, + anon_sym_SLASH, + ACTIONS(1847), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85838,14 +85838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10444] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1851), 1, anon_sym_COLON_COLON, - ACTIONS(1614), 11, + ACTIONS(1616), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85857,7 +85856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1612), 32, + anon_sym_SLASH, + ACTIONS(1614), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85888,12 +85888,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10498] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1560), 11, + ACTIONS(1562), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85905,7 +85904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1558), 33, + anon_sym_SLASH, + ACTIONS(1560), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85937,12 +85937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10550] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1855), 11, + ACTIONS(1855), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85954,7 +85953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1853), 33, + anon_sym_SLASH, + ACTIONS(1853), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85986,12 +85986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10602] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1859), 11, + ACTIONS(1859), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86003,7 +86002,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1857), 33, + anon_sym_SLASH, + ACTIONS(1857), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86035,12 +86035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10654] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1646), 11, + ACTIONS(1648), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86052,7 +86051,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1644), 33, + anon_sym_SLASH, + ACTIONS(1646), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86084,12 +86084,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10706] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1606), 11, + ACTIONS(1608), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86101,7 +86100,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1604), 33, + anon_sym_SLASH, + ACTIONS(1606), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86133,12 +86133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10758] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1634), 11, + ACTIONS(1636), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86150,7 +86149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1632), 33, + anon_sym_SLASH, + ACTIONS(1634), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86182,12 +86182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10810] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1863), 11, + ACTIONS(1863), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86199,7 +86198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1861), 33, + anon_sym_SLASH, + ACTIONS(1861), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86231,12 +86231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10862] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1867), 11, + ACTIONS(1867), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86248,7 +86247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1865), 33, + anon_sym_SLASH, + ACTIONS(1865), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86280,12 +86280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10914] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1610), 11, + ACTIONS(1612), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86297,7 +86296,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1608), 33, + anon_sym_SLASH, + ACTIONS(1610), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86329,12 +86329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [10966] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1618), 11, + ACTIONS(1620), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86346,7 +86345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1616), 33, + anon_sym_SLASH, + ACTIONS(1618), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86378,12 +86378,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11018] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1622), 11, + ACTIONS(1624), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86395,7 +86394,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1620), 33, + anon_sym_SLASH, + ACTIONS(1622), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86427,12 +86427,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11070] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1626), 11, + ACTIONS(1628), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86444,7 +86443,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1624), 33, + anon_sym_SLASH, + ACTIONS(1626), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86476,12 +86476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11122] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1871), 11, + ACTIONS(1871), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86493,7 +86492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1869), 33, + anon_sym_SLASH, + ACTIONS(1869), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86525,12 +86525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11174] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1875), 11, + ACTIONS(1875), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86542,7 +86541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1873), 33, + anon_sym_SLASH, + ACTIONS(1873), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86574,12 +86574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11226] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1879), 11, + ACTIONS(1879), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86591,7 +86590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1877), 33, + anon_sym_SLASH, + ACTIONS(1877), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86623,12 +86623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11278] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1638), 11, + ACTIONS(1640), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86640,7 +86639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1636), 33, + anon_sym_SLASH, + ACTIONS(1638), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86672,12 +86672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11330] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1883), 11, + ACTIONS(1883), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86689,7 +86688,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1881), 33, + anon_sym_SLASH, + ACTIONS(1881), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86721,12 +86721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11382] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1650), 11, + ACTIONS(1652), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86738,7 +86737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1648), 33, + anon_sym_SLASH, + ACTIONS(1650), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86770,12 +86770,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11434] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1887), 11, + ACTIONS(1887), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86787,7 +86786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1885), 33, + anon_sym_SLASH, + ACTIONS(1885), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86819,12 +86819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11486] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1891), 11, + ACTIONS(1891), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86836,7 +86835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1889), 33, + anon_sym_SLASH, + ACTIONS(1889), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86868,12 +86868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11538] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1895), 11, + ACTIONS(1895), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86885,7 +86884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1893), 33, + anon_sym_SLASH, + ACTIONS(1893), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86917,12 +86917,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11590] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1899), 11, + ACTIONS(1899), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86934,7 +86933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1897), 33, + anon_sym_SLASH, + ACTIONS(1897), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86966,12 +86966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11642] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1903), 11, + ACTIONS(1903), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86983,7 +86982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1901), 33, + anon_sym_SLASH, + ACTIONS(1901), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87015,12 +87015,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11694] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1907), 11, + ACTIONS(1907), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87032,7 +87031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1905), 33, + anon_sym_SLASH, + ACTIONS(1905), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87064,12 +87064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11746] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1911), 11, + ACTIONS(1911), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87081,7 +87080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1909), 33, + anon_sym_SLASH, + ACTIONS(1909), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87113,12 +87113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11798] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1915), 11, + ACTIONS(1915), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87130,7 +87129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1913), 33, + anon_sym_SLASH, + ACTIONS(1913), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87162,12 +87162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11850] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1919), 11, + ACTIONS(1919), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87179,7 +87178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1917), 33, + anon_sym_SLASH, + ACTIONS(1917), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87211,12 +87211,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11902] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1923), 11, + ACTIONS(1923), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87228,7 +87227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1921), 33, + anon_sym_SLASH, + ACTIONS(1921), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87260,12 +87260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [11954] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1830), 11, + ACTIONS(1830), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87277,7 +87276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1828), 33, + anon_sym_SLASH, + ACTIONS(1828), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87309,7 +87309,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12006] = 23, ACTIONS(27), 1, @@ -87326,7 +87325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(859), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -87381,16 +87380,16 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [12098] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1648), 6, + ACTIONS(1650), 6, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1927), 11, + ACTIONS(1927), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87402,7 +87401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1925), 27, + anon_sym_SLASH, + ACTIONS(1925), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87428,12 +87428,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12152] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1028), 10, + ACTIONS(1028), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -87444,7 +87443,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1026), 33, + anon_sym_SLASH, + ACTIONS(1026), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87476,12 +87476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12203] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -87489,13 +87488,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -87506,7 +87505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 24, + anon_sym_SLASH, + ACTIONS(1594), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -87529,10 +87529,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12264] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -87542,13 +87541,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1745), 10, + ACTIONS(1745), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -87559,7 +87558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1743), 24, + anon_sym_SLASH, + ACTIONS(1743), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -87582,18 +87582,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12325] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1598), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87605,7 +87604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1602), 27, + anon_sym_SLASH, + ACTIONS(1604), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87631,25 +87631,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12378] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(788), 1, sym_arguments, - ACTIONS(1668), 2, + ACTIONS(1670), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -87661,7 +87660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 23, + anon_sym_SLASH, + ACTIONS(1594), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -87683,18 +87683,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12437] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1718), 11, + ACTIONS(1718), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87706,7 +87705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 27, + anon_sym_SLASH, + ACTIONS(1716), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87732,22 +87732,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12490] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(788), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1598), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -87759,7 +87758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1602), 25, + anon_sym_SLASH, + ACTIONS(1604), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -87783,10 +87783,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12547] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -87796,13 +87795,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -87813,7 +87812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 24, + anon_sym_SLASH, + ACTIONS(1594), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -87836,18 +87836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12608] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1820), 11, + ACTIONS(1820), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87859,7 +87858,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1818), 27, + anon_sym_SLASH, + ACTIONS(1818), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87885,7 +87885,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12661] = 3, ACTIONS(3), 1, @@ -87936,13 +87935,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_require_once_expression_token1, sym_name, [12712] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1832), 1, anon_sym_RPAREN, ACTIONS(1835), 1, anon_sym_EQ, - ACTIONS(1830), 10, + ACTIONS(1830), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -87953,7 +87952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1828), 31, + anon_sym_SLASH, + ACTIONS(1828), 30, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -87983,18 +87983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12767] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88006,7 +88005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 27, + anon_sym_SLASH, + ACTIONS(1594), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88032,12 +88032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12820] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1024), 10, + ACTIONS(1024), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88048,7 +88047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1022), 33, + anon_sym_SLASH, + ACTIONS(1022), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88080,12 +88080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12871] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -88093,13 +88092,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1718), 10, + ACTIONS(1718), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88110,7 +88109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 24, + anon_sym_SLASH, + ACTIONS(1716), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88133,18 +88133,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12932] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1839), 11, + ACTIONS(1839), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88156,7 +88155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1837), 27, + anon_sym_SLASH, + ACTIONS(1837), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88182,16 +88182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [12985] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(789), 1, sym_arguments, - ACTIONS(1590), 11, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88203,7 +88202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1588), 30, + anon_sym_SLASH, + ACTIONS(1590), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88232,16 +88232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13040] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(784), 1, sym_arguments, - ACTIONS(1578), 11, + ACTIONS(1580), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88253,7 +88252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 30, + anon_sym_SLASH, + ACTIONS(1578), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88282,16 +88282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13095] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(782), 1, sym_arguments, - ACTIONS(1572), 11, + ACTIONS(1574), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88303,7 +88302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1570), 30, + anon_sym_SLASH, + ACTIONS(1572), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88332,16 +88332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13150] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(794), 1, sym_arguments, - ACTIONS(1582), 11, + ACTIONS(1584), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88353,7 +88352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 30, + anon_sym_SLASH, + ACTIONS(1582), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88382,16 +88382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13205] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(792), 1, sym_arguments, - ACTIONS(1586), 11, + ACTIONS(1588), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88403,7 +88402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1584), 30, + anon_sym_SLASH, + ACTIONS(1586), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88432,12 +88432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13260] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -88447,13 +88446,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88464,7 +88463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 22, + anon_sym_SLASH, + ACTIONS(1594), 21, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_PLUS, @@ -88485,12 +88485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13322] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1634), 11, + ACTIONS(1636), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88502,7 +88501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1632), 31, + anon_sym_SLASH, + ACTIONS(1634), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88532,12 +88532,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13372] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1646), 11, + ACTIONS(1648), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88549,7 +88548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1644), 31, + anon_sym_SLASH, + ACTIONS(1646), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88579,12 +88579,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13422] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1556), 11, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88596,7 +88595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1554), 31, + anon_sym_SLASH, + ACTIONS(1554), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88626,12 +88626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13472] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1606), 11, + ACTIONS(1608), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88643,7 +88642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1604), 31, + anon_sym_SLASH, + ACTIONS(1606), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88673,12 +88673,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13522] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1560), 11, + ACTIONS(1562), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88690,7 +88689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1558), 31, + anon_sym_SLASH, + ACTIONS(1560), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88720,12 +88720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13572] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1564), 11, + ACTIONS(1566), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88737,7 +88736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1562), 31, + anon_sym_SLASH, + ACTIONS(1564), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88767,12 +88767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13622] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1638), 11, + ACTIONS(1640), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88784,7 +88783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1636), 31, + anon_sym_SLASH, + ACTIONS(1638), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88814,12 +88814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13672] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1650), 11, + ACTIONS(1652), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88831,7 +88830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1648), 31, + anon_sym_SLASH, + ACTIONS(1650), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88861,12 +88861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13722] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1610), 11, + ACTIONS(1612), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88878,7 +88877,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1608), 31, + anon_sym_SLASH, + ACTIONS(1610), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88908,12 +88908,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13772] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1654), 11, + ACTIONS(1656), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88925,7 +88924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1652), 31, + anon_sym_SLASH, + ACTIONS(1654), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -88955,12 +88955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13822] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1630), 11, + ACTIONS(1632), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -88972,7 +88971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1628), 31, + anon_sym_SLASH, + ACTIONS(1630), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89002,12 +89002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13872] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1618), 11, + ACTIONS(1620), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89019,7 +89018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1616), 31, + anon_sym_SLASH, + ACTIONS(1618), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89049,12 +89049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13922] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1622), 11, + ACTIONS(1624), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89066,7 +89065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1620), 31, + anon_sym_SLASH, + ACTIONS(1622), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89096,12 +89096,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [13972] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1626), 11, + ACTIONS(1628), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89113,7 +89112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1624), 31, + anon_sym_SLASH, + ACTIONS(1626), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89143,12 +89143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14022] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -89158,13 +89157,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89175,7 +89174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 22, + anon_sym_SLASH, + ACTIONS(1594), 21, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, @@ -89196,12 +89196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14084] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1568), 11, + ACTIONS(1570), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89213,7 +89212,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1566), 31, + anon_sym_SLASH, + ACTIONS(1568), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89243,12 +89243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14134] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -89258,13 +89257,13 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89275,7 +89274,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 22, + anon_sym_SLASH, + ACTIONS(1594), 21, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_PLUS, @@ -89296,7 +89296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14196] = 3, ACTIONS(3), 1, @@ -89346,9 +89345,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_require_once_expression_token1, sym_name, [14246] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1642), 11, + ACTIONS(1644), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89360,7 +89359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1640), 31, + anon_sym_SLASH, + ACTIONS(1642), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89390,12 +89390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14296] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1614), 11, + ACTIONS(1616), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89407,7 +89406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1612), 31, + anon_sym_SLASH, + ACTIONS(1614), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89437,18 +89437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14346] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 11, + ACTIONS(1598), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89460,7 +89459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1602), 25, + anon_sym_SLASH, + ACTIONS(1604), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89484,7 +89484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14397] = 20, ACTIONS(27), 1, @@ -89497,7 +89496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -89560,7 +89559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -89613,9 +89612,9 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [14563] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1128), 10, + ACTIONS(1128), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89626,7 +89625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1126), 31, + anon_sym_SLASH, + ACTIONS(1126), 30, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89656,16 +89656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14612] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(862), 1, sym_arguments, - ACTIONS(1578), 10, + ACTIONS(1580), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89676,7 +89675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 29, + anon_sym_SLASH, + ACTIONS(1578), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89704,16 +89704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14665] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, STATE(618), 1, sym_arguments, - ACTIONS(1775), 10, + ACTIONS(1775), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89724,7 +89723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1773), 29, + anon_sym_SLASH, + ACTIONS(1773), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89752,16 +89752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14718] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(867), 1, sym_arguments, - ACTIONS(1572), 10, + ACTIONS(1574), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89772,7 +89771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1570), 29, + anon_sym_SLASH, + ACTIONS(1572), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89800,14 +89800,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14771] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1835), 1, anon_sym_EQ, - ACTIONS(1830), 10, + ACTIONS(1830), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89818,7 +89817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1828), 30, + anon_sym_SLASH, + ACTIONS(1828), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89847,22 +89847,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14822] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(592), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1718), 10, + ACTIONS(1718), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89873,7 +89872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 24, + anon_sym_SLASH, + ACTIONS(1716), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89896,7 +89896,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [14877] = 20, ACTIONS(27), 1, @@ -89911,7 +89910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -89962,19 +89961,19 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [14960] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(592), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1718), 10, + ACTIONS(1718), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89985,7 +89984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 24, + anon_sym_SLASH, + ACTIONS(1716), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90008,14 +90008,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15015] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, STATE(582), 1, sym_arguments, - ACTIONS(1590), 10, + ACTIONS(1592), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90026,7 +90025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1588), 30, + anon_sym_SLASH, + ACTIONS(1590), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90055,14 +90055,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15066] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, STATE(584), 1, sym_arguments, - ACTIONS(1586), 10, + ACTIONS(1588), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90073,7 +90072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1584), 30, + anon_sym_SLASH, + ACTIONS(1586), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90102,14 +90102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15117] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, STATE(586), 1, sym_arguments, - ACTIONS(1582), 10, + ACTIONS(1584), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90120,7 +90119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 30, + anon_sym_SLASH, + ACTIONS(1582), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90149,22 +90149,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15168] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(892), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1839), 10, + ACTIONS(1839), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90175,7 +90174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1837), 24, + anon_sym_SLASH, + ACTIONS(1837), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90198,16 +90198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15223] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, STATE(610), 1, sym_arguments, - ACTIONS(1779), 10, + ACTIONS(1779), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90218,7 +90217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1777), 29, + anon_sym_SLASH, + ACTIONS(1777), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90246,7 +90246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15276] = 20, ACTIONS(27), 1, @@ -90259,7 +90258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1759), 1, anon_sym_DOLLAR, @@ -90312,19 +90311,19 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [15359] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(861), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1745), 10, + ACTIONS(1745), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90335,7 +90334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1743), 24, + anon_sym_SLASH, + ACTIONS(1743), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90358,22 +90358,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15414] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1955), 1, anon_sym_LPAREN, STATE(1124), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1745), 10, + ACTIONS(1745), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90384,7 +90383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1743), 24, + anon_sym_SLASH, + ACTIONS(1743), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90407,22 +90407,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15469] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(861), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1745), 10, + ACTIONS(1745), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90433,7 +90432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1743), 24, + anon_sym_SLASH, + ACTIONS(1743), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90456,22 +90456,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15524] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(892), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 10, + ACTIONS(1598), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90482,7 +90481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1602), 24, + anon_sym_SLASH, + ACTIONS(1604), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90505,7 +90505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15579] = 20, ACTIONS(27), 1, @@ -90522,7 +90521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1546), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1957), 1, sym_name, @@ -90571,11 +90570,11 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [15662] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, STATE(581), 1, sym_arguments, - ACTIONS(1578), 10, + ACTIONS(1580), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90586,7 +90585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 30, + anon_sym_SLASH, + ACTIONS(1578), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90615,22 +90615,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15713] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, STATE(627), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90641,7 +90640,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 24, + anon_sym_SLASH, + ACTIONS(1594), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90664,12 +90664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15768] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1064), 10, + ACTIONS(1064), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90680,7 +90679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1062), 31, + anon_sym_SLASH, + ACTIONS(1062), 30, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90710,21 +90710,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15817] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1668), 2, + ACTIONS(1670), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90736,7 +90735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 23, + anon_sym_SLASH, + ACTIONS(1594), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90758,22 +90758,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15870] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(892), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1820), 10, + ACTIONS(1820), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90784,7 +90783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1818), 24, + anon_sym_SLASH, + ACTIONS(1818), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90807,12 +90807,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15925] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1688), 10, + ACTIONS(1690), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90823,7 +90822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1690), 31, + anon_sym_SLASH, + ACTIONS(1692), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90853,7 +90853,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [15974] = 20, ACTIONS(27), 1, @@ -90866,7 +90865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1769), 1, anon_sym_DOLLAR, @@ -90919,13 +90918,13 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [16057] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(865), 1, sym_arguments, - ACTIONS(1590), 10, + ACTIONS(1592), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90936,7 +90935,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1588), 29, + anon_sym_SLASH, + ACTIONS(1590), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90964,16 +90964,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16110] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(876), 1, sym_arguments, - ACTIONS(1586), 10, + ACTIONS(1588), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90984,7 +90983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1584), 29, + anon_sym_SLASH, + ACTIONS(1586), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91012,7 +91012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16163] = 20, ACTIONS(27), 1, @@ -91027,7 +91026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -91088,7 +91087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1759), 1, anon_sym_DOLLAR, @@ -91151,7 +91150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -91216,7 +91215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1552), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1963), 1, sym_name, @@ -91267,11 +91266,11 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [16495] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, STATE(591), 1, sym_arguments, - ACTIONS(1572), 10, + ACTIONS(1574), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91282,7 +91281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1570), 30, + anon_sym_SLASH, + ACTIONS(1572), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91311,7 +91311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16546] = 20, ACTIONS(27), 1, @@ -91324,7 +91323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1769), 1, anon_sym_DOLLAR, @@ -91377,19 +91376,19 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [16629] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(788), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91400,7 +91399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 24, + anon_sym_SLASH, + ACTIONS(1594), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91423,16 +91423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16684] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(880), 1, sym_arguments, - ACTIONS(1582), 10, + ACTIONS(1584), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91443,7 +91442,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 29, + anon_sym_SLASH, + ACTIONS(1582), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91471,22 +91471,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16737] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(788), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91497,7 +91496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 24, + anon_sym_SLASH, + ACTIONS(1594), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91520,22 +91520,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16792] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, STATE(627), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91546,7 +91545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 24, + anon_sym_SLASH, + ACTIONS(1594), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91569,7 +91569,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16847] = 20, ACTIONS(27), 1, @@ -91584,7 +91583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -91635,9 +91634,9 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [16930] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1614), 10, + ACTIONS(1616), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91648,7 +91647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1612), 31, + anon_sym_SLASH, + ACTIONS(1614), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91678,7 +91678,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [16979] = 20, ACTIONS(27), 1, @@ -91691,7 +91690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -91744,13 +91743,13 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [17062] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(591), 1, sym_arguments, - ACTIONS(1572), 10, + ACTIONS(1574), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91761,7 +91760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1570), 29, + anon_sym_SLASH, + ACTIONS(1572), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91789,16 +91789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17115] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(581), 1, sym_arguments, - ACTIONS(1578), 10, + ACTIONS(1580), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91809,7 +91808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1576), 29, + anon_sym_SLASH, + ACTIONS(1578), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91837,16 +91837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17168] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(582), 1, sym_arguments, - ACTIONS(1590), 10, + ACTIONS(1592), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91857,7 +91856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1588), 29, + anon_sym_SLASH, + ACTIONS(1590), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91885,16 +91885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17221] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(794), 1, sym_arguments, - ACTIONS(1775), 10, + ACTIONS(1775), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91905,7 +91904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1773), 29, + anon_sym_SLASH, + ACTIONS(1773), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -91933,7 +91933,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17274] = 20, ACTIONS(27), 1, @@ -91948,7 +91947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -91999,13 +91998,13 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [17357] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(584), 1, sym_arguments, - ACTIONS(1586), 10, + ACTIONS(1588), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92016,7 +92015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1584), 29, + anon_sym_SLASH, + ACTIONS(1586), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92044,16 +92044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17410] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1574), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, STATE(586), 1, sym_arguments, - ACTIONS(1582), 10, + ACTIONS(1584), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92064,7 +92063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1580), 29, + anon_sym_SLASH, + ACTIONS(1582), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92092,7 +92092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17463] = 20, ACTIONS(27), 1, @@ -92107,7 +92106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(1534), 1, anon_sym_LBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1757), 1, anon_sym_LPAREN, @@ -92158,13 +92157,13 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc, sym__string, [17546] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(781), 1, sym_arguments, - ACTIONS(1779), 10, + ACTIONS(1779), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92175,7 +92174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1777), 29, + anon_sym_SLASH, + ACTIONS(1777), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92203,12 +92203,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17599] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1642), 10, + ACTIONS(1644), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92219,7 +92218,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1640), 30, + anon_sym_SLASH, + ACTIONS(1642), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92248,12 +92248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17647] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1863), 10, + ACTIONS(1863), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92264,7 +92263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1861), 30, + anon_sym_SLASH, + ACTIONS(1861), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92293,12 +92293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17695] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1830), 10, + ACTIONS(1830), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92309,7 +92308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1828), 30, + anon_sym_SLASH, + ACTIONS(1828), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92338,12 +92338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17743] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1634), 10, + ACTIONS(1636), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92354,7 +92353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1632), 30, + anon_sym_SLASH, + ACTIONS(1634), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92383,12 +92383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17791] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1859), 10, + ACTIONS(1859), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92399,7 +92398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1857), 30, + anon_sym_SLASH, + ACTIONS(1857), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92428,12 +92428,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17839] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1903), 10, + ACTIONS(1903), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92444,7 +92443,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1901), 30, + anon_sym_SLASH, + ACTIONS(1901), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92473,12 +92473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17887] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1919), 10, + ACTIONS(1919), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92489,7 +92488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1917), 30, + anon_sym_SLASH, + ACTIONS(1917), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92518,19 +92518,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17935] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1648), 6, + ACTIONS(1650), 6, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1927), 10, + ACTIONS(1927), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92541,7 +92540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1925), 24, + anon_sym_SLASH, + ACTIONS(1925), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92564,12 +92564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [17985] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1606), 10, + ACTIONS(1608), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92580,7 +92579,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1604), 30, + anon_sym_SLASH, + ACTIONS(1606), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92609,12 +92609,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18033] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1538), 10, + ACTIONS(1538), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92625,7 +92624,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1540), 30, + anon_sym_SLASH, + ACTIONS(1540), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92654,12 +92654,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18081] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1849), 10, + ACTIONS(1849), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92670,7 +92669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1847), 30, + anon_sym_SLASH, + ACTIONS(1847), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92699,12 +92699,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18129] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1610), 10, + ACTIONS(1612), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92715,7 +92714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1608), 30, + anon_sym_SLASH, + ACTIONS(1610), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92744,12 +92744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18177] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1556), 10, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92760,7 +92759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1554), 30, + anon_sym_SLASH, + ACTIONS(1554), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92789,12 +92789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18225] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1646), 10, + ACTIONS(1648), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92805,7 +92804,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1644), 30, + anon_sym_SLASH, + ACTIONS(1646), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92834,12 +92834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18273] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1638), 10, + ACTIONS(1640), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92850,7 +92849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1636), 30, + anon_sym_SLASH, + ACTIONS(1638), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92879,12 +92879,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18321] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1879), 10, + ACTIONS(1879), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92895,7 +92894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1877), 30, + anon_sym_SLASH, + ACTIONS(1877), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92924,12 +92924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18369] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1915), 10, + ACTIONS(1915), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92940,7 +92939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1913), 30, + anon_sym_SLASH, + ACTIONS(1913), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92969,12 +92969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18417] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1923), 10, + ACTIONS(1923), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92985,7 +92984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1921), 30, + anon_sym_SLASH, + ACTIONS(1921), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93014,17 +93014,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18465] = 5, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1835), 1, anon_sym_EQ, ACTIONS(1967), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1830), 10, + ACTIONS(1830), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93035,7 +93034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1828), 27, + anon_sym_SLASH, + ACTIONS(1828), 26, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -93061,12 +93061,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18517] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1845), 10, + ACTIONS(1845), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93077,7 +93076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1843), 30, + anon_sym_SLASH, + ACTIONS(1843), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93106,12 +93106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18565] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1875), 10, + ACTIONS(1875), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93122,7 +93121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1873), 30, + anon_sym_SLASH, + ACTIONS(1873), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93151,12 +93151,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18613] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1911), 10, + ACTIONS(1911), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93167,7 +93166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1909), 30, + anon_sym_SLASH, + ACTIONS(1909), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93196,12 +93196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18661] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1618), 10, + ACTIONS(1620), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93212,7 +93211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1616), 30, + anon_sym_SLASH, + ACTIONS(1618), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93241,12 +93241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18709] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1907), 10, + ACTIONS(1907), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93257,7 +93256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1905), 30, + anon_sym_SLASH, + ACTIONS(1905), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93286,12 +93286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18757] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1622), 10, + ACTIONS(1624), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93302,7 +93301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1620), 30, + anon_sym_SLASH, + ACTIONS(1622), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93331,12 +93331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18805] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1871), 10, + ACTIONS(1871), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93347,7 +93346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1869), 30, + anon_sym_SLASH, + ACTIONS(1869), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93376,12 +93376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18853] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1626), 10, + ACTIONS(1628), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93392,7 +93391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1624), 30, + anon_sym_SLASH, + ACTIONS(1626), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93421,12 +93421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18901] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1568), 10, + ACTIONS(1570), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93437,7 +93436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1566), 30, + anon_sym_SLASH, + ACTIONS(1568), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93466,12 +93466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18949] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1855), 10, + ACTIONS(1855), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93482,7 +93481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1853), 30, + anon_sym_SLASH, + ACTIONS(1853), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93511,12 +93511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [18997] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1895), 10, + ACTIONS(1895), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93527,7 +93526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1893), 30, + anon_sym_SLASH, + ACTIONS(1893), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93556,12 +93556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19045] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1899), 10, + ACTIONS(1899), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93572,7 +93571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1897), 30, + anon_sym_SLASH, + ACTIONS(1897), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93601,12 +93601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19093] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1564), 10, + ACTIONS(1566), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93617,7 +93616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1562), 30, + anon_sym_SLASH, + ACTIONS(1564), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93646,12 +93646,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19141] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1867), 10, + ACTIONS(1867), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93662,7 +93661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1865), 30, + anon_sym_SLASH, + ACTIONS(1865), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93691,14 +93691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19189] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1851), 1, anon_sym_COLON_COLON, - ACTIONS(1614), 10, + ACTIONS(1616), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93709,7 +93708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1612), 29, + anon_sym_SLASH, + ACTIONS(1614), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93737,14 +93737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19239] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1835), 1, anon_sym_EQ, - ACTIONS(1830), 10, + ACTIONS(1830), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93755,7 +93754,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1828), 29, + anon_sym_SLASH, + ACTIONS(1828), 28, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -93783,12 +93783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19289] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1630), 10, + ACTIONS(1632), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93799,7 +93798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1628), 30, + anon_sym_SLASH, + ACTIONS(1630), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93828,12 +93828,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19337] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1883), 10, + ACTIONS(1883), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93844,7 +93843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1881), 30, + anon_sym_SLASH, + ACTIONS(1881), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93873,12 +93873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19385] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1654), 10, + ACTIONS(1656), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93889,7 +93888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1652), 30, + anon_sym_SLASH, + ACTIONS(1654), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93918,12 +93918,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19433] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1650), 10, + ACTIONS(1652), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93934,7 +93933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1648), 30, + anon_sym_SLASH, + ACTIONS(1650), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93963,12 +93963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19481] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1891), 10, + ACTIONS(1891), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93979,7 +93978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1889), 30, + anon_sym_SLASH, + ACTIONS(1889), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94008,12 +94008,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19529] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1887), 10, + ACTIONS(1887), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94024,7 +94023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1885), 30, + anon_sym_SLASH, + ACTIONS(1885), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94053,12 +94053,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19577] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1560), 10, + ACTIONS(1562), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94069,7 +94068,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1558), 30, + anon_sym_SLASH, + ACTIONS(1560), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94098,18 +94098,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19625] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1718), 10, + ACTIONS(1718), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94120,7 +94119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 24, + anon_sym_SLASH, + ACTIONS(1716), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94143,18 +94143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19674] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1839), 10, + ACTIONS(1839), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94165,7 +94164,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1837), 24, + anon_sym_SLASH, + ACTIONS(1837), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94188,18 +94188,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19723] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1596), 10, + ACTIONS(1598), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94210,7 +94209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1602), 24, + anon_sym_SLASH, + ACTIONS(1604), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94233,18 +94233,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19772] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1820), 10, + ACTIONS(1820), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94255,7 +94254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1818), 24, + anon_sym_SLASH, + ACTIONS(1818), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94278,18 +94278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19821] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1594), 10, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94300,7 +94299,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 24, + anon_sym_SLASH, + ACTIONS(1594), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94323,12 +94323,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19870] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1971), 9, + ACTIONS(1971), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94338,7 +94337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1969), 29, + anon_sym_SLASH, + ACTIONS(1969), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94366,12 +94366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19916] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1975), 9, + ACTIONS(1975), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94381,7 +94380,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1973), 29, + anon_sym_SLASH, + ACTIONS(1973), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94409,12 +94409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [19962] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1979), 9, + ACTIONS(1979), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94424,7 +94423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1977), 29, + anon_sym_SLASH, + ACTIONS(1977), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94452,12 +94452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20008] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1983), 9, + ACTIONS(1983), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94467,7 +94466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1981), 29, + anon_sym_SLASH, + ACTIONS(1981), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94495,12 +94495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20054] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1987), 9, + ACTIONS(1987), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94510,7 +94509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1985), 29, + anon_sym_SLASH, + ACTIONS(1985), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94538,12 +94538,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20100] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1991), 9, + ACTIONS(1991), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94553,7 +94552,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1989), 29, + anon_sym_SLASH, + ACTIONS(1989), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94581,12 +94581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20146] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1995), 9, + ACTIONS(1995), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94596,7 +94595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1993), 29, + anon_sym_SLASH, + ACTIONS(1993), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94624,12 +94624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20192] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1594), 9, + ACTIONS(1596), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94639,7 +94638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 29, + anon_sym_SLASH, + ACTIONS(1594), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94667,12 +94667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20238] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1999), 9, + ACTIONS(1999), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94682,7 +94681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1997), 29, + anon_sym_SLASH, + ACTIONS(1997), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94710,12 +94710,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20284] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2003), 9, + ACTIONS(2003), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94725,7 +94724,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2001), 29, + anon_sym_SLASH, + ACTIONS(2001), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94753,12 +94753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20330] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2007), 9, + ACTIONS(2007), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94768,7 +94767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2005), 29, + anon_sym_SLASH, + ACTIONS(2005), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94796,12 +94796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20376] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2011), 9, + ACTIONS(2011), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94811,7 +94810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2009), 29, + anon_sym_SLASH, + ACTIONS(2009), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94839,12 +94839,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20422] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2015), 9, + ACTIONS(2015), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94854,7 +94853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2013), 29, + anon_sym_SLASH, + ACTIONS(2013), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94882,12 +94882,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20468] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2019), 9, + ACTIONS(2019), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94897,7 +94896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2017), 29, + anon_sym_SLASH, + ACTIONS(2017), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94925,12 +94925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20514] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2023), 9, + ACTIONS(2023), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94940,7 +94939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2021), 29, + anon_sym_SLASH, + ACTIONS(2021), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -94968,12 +94968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20560] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2027), 9, + ACTIONS(2027), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94983,7 +94982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2025), 29, + anon_sym_SLASH, + ACTIONS(2025), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95011,12 +95011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20606] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2031), 9, + ACTIONS(2031), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95026,7 +95025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2029), 29, + anon_sym_SLASH, + ACTIONS(2029), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95054,12 +95054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20652] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2035), 9, + ACTIONS(2035), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95069,7 +95068,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2033), 29, + anon_sym_SLASH, + ACTIONS(2033), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95097,12 +95097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20698] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2039), 9, + ACTIONS(2039), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95112,7 +95111,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2037), 29, + anon_sym_SLASH, + ACTIONS(2037), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95140,12 +95140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20744] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2043), 9, + ACTIONS(2043), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95155,7 +95154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2041), 29, + anon_sym_SLASH, + ACTIONS(2041), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95183,12 +95183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20790] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2047), 9, + ACTIONS(2047), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95198,7 +95197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2045), 29, + anon_sym_SLASH, + ACTIONS(2045), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95226,12 +95226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20836] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2051), 9, + ACTIONS(2051), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95241,7 +95240,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2049), 29, + anon_sym_SLASH, + ACTIONS(2049), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95269,12 +95269,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20882] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2055), 9, + ACTIONS(2055), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95284,7 +95283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2053), 29, + anon_sym_SLASH, + ACTIONS(2053), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95312,12 +95312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20928] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2059), 9, + ACTIONS(2059), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95327,7 +95326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2057), 29, + anon_sym_SLASH, + ACTIONS(2057), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95355,12 +95355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [20974] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2063), 9, + ACTIONS(2063), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95370,7 +95369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2061), 29, + anon_sym_SLASH, + ACTIONS(2061), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95398,12 +95398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21020] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2067), 9, + ACTIONS(2067), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95413,7 +95412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2065), 29, + anon_sym_SLASH, + ACTIONS(2065), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95441,12 +95441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21066] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2071), 9, + ACTIONS(2071), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95456,7 +95455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2069), 29, + anon_sym_SLASH, + ACTIONS(2069), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95484,12 +95484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21112] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2075), 9, + ACTIONS(2075), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95499,7 +95498,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2073), 29, + anon_sym_SLASH, + ACTIONS(2073), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95527,12 +95527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21158] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2079), 9, + ACTIONS(2079), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95542,7 +95541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2077), 29, + anon_sym_SLASH, + ACTIONS(2077), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95570,12 +95570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21204] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1560), 9, + ACTIONS(1562), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95585,7 +95584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1558), 29, + anon_sym_SLASH, + ACTIONS(1560), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95613,12 +95613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21250] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1568), 9, + ACTIONS(1570), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95628,7 +95627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1566), 29, + anon_sym_SLASH, + ACTIONS(1568), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95656,12 +95656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21296] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2083), 9, + ACTIONS(2083), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95671,7 +95670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2081), 29, + anon_sym_SLASH, + ACTIONS(2081), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95699,12 +95699,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21342] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1564), 9, + ACTIONS(1566), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95714,7 +95713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1562), 29, + anon_sym_SLASH, + ACTIONS(1564), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95742,12 +95742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21388] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1556), 9, + ACTIONS(1556), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95757,7 +95756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1554), 29, + anon_sym_SLASH, + ACTIONS(1554), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95785,12 +95785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21434] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2087), 9, + ACTIONS(2087), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95800,7 +95799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2085), 29, + anon_sym_SLASH, + ACTIONS(2085), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95828,12 +95828,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21480] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2091), 9, + ACTIONS(2091), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95843,7 +95842,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2089), 29, + anon_sym_SLASH, + ACTIONS(2089), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95871,12 +95871,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21526] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2095), 9, + ACTIONS(2095), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95886,7 +95885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2093), 29, + anon_sym_SLASH, + ACTIONS(2093), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95914,12 +95914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21572] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2099), 9, + ACTIONS(2099), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95929,7 +95928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2097), 29, + anon_sym_SLASH, + ACTIONS(2097), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95957,12 +95957,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21618] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2103), 9, + ACTIONS(2103), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95972,7 +95971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2101), 29, + anon_sym_SLASH, + ACTIONS(2101), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96000,12 +96000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21664] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2107), 9, + ACTIONS(2107), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96015,7 +96014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2105), 29, + anon_sym_SLASH, + ACTIONS(2105), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96043,12 +96043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21710] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2111), 9, + ACTIONS(2111), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96058,7 +96057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2109), 29, + anon_sym_SLASH, + ACTIONS(2109), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96086,12 +96086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21756] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2115), 9, + ACTIONS(2115), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96101,7 +96100,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2113), 29, + anon_sym_SLASH, + ACTIONS(2113), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96129,12 +96129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21802] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2119), 9, + ACTIONS(2119), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96144,7 +96143,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2117), 29, + anon_sym_SLASH, + ACTIONS(2117), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96172,12 +96172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21848] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2123), 9, + ACTIONS(2123), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96187,7 +96186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2121), 29, + anon_sym_SLASH, + ACTIONS(2121), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96215,12 +96215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21894] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2127), 9, + ACTIONS(2127), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96230,7 +96229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2125), 29, + anon_sym_SLASH, + ACTIONS(2125), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96258,14 +96258,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21940] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2129), 1, aux_sym_binary_expression_token1, - ACTIONS(2127), 9, + ACTIONS(2127), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96275,7 +96274,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2125), 28, + anon_sym_SLASH, + ACTIONS(2125), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96302,12 +96302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [21988] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2133), 9, + ACTIONS(2133), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96317,7 +96316,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2131), 29, + anon_sym_SLASH, + ACTIONS(2131), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96345,12 +96345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22034] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2137), 9, + ACTIONS(2137), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96360,7 +96359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2135), 29, + anon_sym_SLASH, + ACTIONS(2135), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96388,12 +96388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22080] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2141), 9, + ACTIONS(2141), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96403,7 +96402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2139), 29, + anon_sym_SLASH, + ACTIONS(2139), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96431,12 +96431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22126] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2145), 9, + ACTIONS(2145), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96446,7 +96445,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2143), 29, + anon_sym_SLASH, + ACTIONS(2143), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96474,12 +96474,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22172] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2149), 9, + ACTIONS(2149), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96489,7 +96488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2147), 29, + anon_sym_SLASH, + ACTIONS(2147), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96517,12 +96517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22218] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2153), 9, + ACTIONS(2153), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96532,7 +96531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2151), 29, + anon_sym_SLASH, + ACTIONS(2151), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96560,12 +96560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22264] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2157), 9, + ACTIONS(2157), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96575,7 +96574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2155), 29, + anon_sym_SLASH, + ACTIONS(2155), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96603,12 +96603,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22310] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2161), 9, + ACTIONS(2161), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96618,7 +96617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2159), 29, + anon_sym_SLASH, + ACTIONS(2159), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96646,12 +96646,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22356] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2165), 9, + ACTIONS(2165), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96661,7 +96660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2163), 29, + anon_sym_SLASH, + ACTIONS(2163), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96689,12 +96689,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22402] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2169), 9, + ACTIONS(2169), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96704,7 +96703,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2167), 29, + anon_sym_SLASH, + ACTIONS(2167), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96732,12 +96732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22448] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2173), 9, + ACTIONS(2173), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96747,7 +96746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2171), 29, + anon_sym_SLASH, + ACTIONS(2171), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96775,12 +96775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22494] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2177), 9, + ACTIONS(2177), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96790,7 +96789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2175), 29, + anon_sym_SLASH, + ACTIONS(2175), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96818,17 +96818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22540] = 20, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, - sym_name, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1694), 1, + sym_name, ACTIONS(1723), 1, anon_sym_AMP, ACTIONS(1727), 1, @@ -96866,7 +96865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -96881,9 +96880,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [22620] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2183), 9, + ACTIONS(2183), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96893,7 +96892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2181), 29, + anon_sym_SLASH, + ACTIONS(2181), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96921,12 +96921,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22666] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2187), 9, + ACTIONS(2187), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96936,7 +96935,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2185), 29, + anon_sym_SLASH, + ACTIONS(2185), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96964,12 +96964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22712] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2191), 9, + ACTIONS(2191), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96979,7 +96978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2189), 29, + anon_sym_SLASH, + ACTIONS(2189), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97007,12 +97007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22758] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2195), 9, + ACTIONS(2195), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97022,7 +97021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2193), 29, + anon_sym_SLASH, + ACTIONS(2193), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97050,12 +97050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22804] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1927), 9, + ACTIONS(1927), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97065,7 +97064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1925), 29, + anon_sym_SLASH, + ACTIONS(1925), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97093,12 +97093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22850] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2199), 9, + ACTIONS(2199), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97108,7 +97107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2197), 29, + anon_sym_SLASH, + ACTIONS(2197), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97136,12 +97136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22896] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1064), 10, + ACTIONS(1064), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97152,7 +97151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1062), 27, + anon_sym_SLASH, + ACTIONS(1062), 26, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97178,12 +97178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22941] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1128), 10, + ACTIONS(1128), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97194,7 +97193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1126), 27, + anon_sym_SLASH, + ACTIONS(1126), 26, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97220,10 +97220,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [22986] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -97251,8 +97250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -97262,9 +97261,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -97283,7 +97282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [23068] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -97311,8 +97310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -97322,9 +97321,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -97343,7 +97342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [23150] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -97365,8 +97364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -97376,9 +97375,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -97400,11 +97399,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [23226] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(1718), 9, + ACTIONS(1718), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97414,7 +97413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 26, + anon_sym_SLASH, + ACTIONS(1716), 25, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -97439,10 +97439,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [23272] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1718), 1, anon_sym_QMARK, @@ -97464,8 +97463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -97475,9 +97474,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -97499,15 +97498,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [23348] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2239), 1, + ACTIONS(2241), 1, + anon_sym_PERCENT, + ACTIONS(2239), 2, anon_sym_STAR, - ACTIONS(2241), 2, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -97543,7 +97542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [23398] = 15, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -97555,8 +97554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(1718), 2, anon_sym_QMARK, anon_sym_PIPE, @@ -97569,9 +97568,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -97596,7 +97595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [23466] = 13, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2213), 1, anon_sym_STAR_STAR, @@ -97604,8 +97603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -97615,9 +97614,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 3, anon_sym_AMP, anon_sym_QMARK, @@ -97647,7 +97646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [23530] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -97675,8 +97674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -97686,9 +97685,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -97707,7 +97706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [23612] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -97735,8 +97734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -97746,9 +97745,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -97767,7 +97766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [23694] = 14, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -97777,8 +97776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(1718), 2, anon_sym_QMARK, anon_sym_PIPE, @@ -97791,9 +97790,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -97819,7 +97818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [23760] = 11, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2213), 1, anon_sym_STAR_STAR, @@ -97827,17 +97826,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -97868,23 +97867,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [23820] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2213), 1, anon_sym_STAR_STAR, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -97915,18 +97914,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [23876] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -97960,7 +97959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [23928] = 21, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -97986,8 +97985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -97997,9 +97996,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98019,7 +98018,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, [24008] = 16, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1718), 1, anon_sym_QMARK, @@ -98035,8 +98034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98046,9 +98045,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98073,7 +98072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [24078] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98101,8 +98100,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98112,9 +98111,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98133,7 +98132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [24160] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98161,8 +98160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98172,9 +98171,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98193,21 +98192,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [24242] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -98239,7 +98238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DOT, [24296] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98267,8 +98266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2253), 1, anon_sym_EQ_GT, ACTIONS(2209), 2, @@ -98280,9 +98279,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98300,11 +98299,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [24380] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(1718), 9, + ACTIONS(1718), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98314,7 +98313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 26, + anon_sym_SLASH, + ACTIONS(1716), 25, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -98339,10 +98339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [24426] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98370,8 +98369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98381,9 +98380,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98402,7 +98401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [24508] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98430,8 +98429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98441,9 +98440,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98462,7 +98461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [24590] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98484,8 +98483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98495,9 +98494,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98519,7 +98518,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [24666] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98541,8 +98540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98552,9 +98551,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98576,7 +98575,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [24742] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98604,8 +98603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98615,9 +98614,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98636,7 +98635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [24824] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98664,8 +98663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98675,9 +98674,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98696,7 +98695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_binary_expression_token1, [24906] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98716,8 +98715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2267), 1, anon_sym_QMARK, ACTIONS(2209), 2, @@ -98729,9 +98728,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98753,7 +98752,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [24982] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98775,8 +98774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98786,9 +98785,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98810,7 +98809,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [25058] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98830,8 +98829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2273), 1, anon_sym_QMARK, ACTIONS(2209), 2, @@ -98843,9 +98842,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98867,7 +98866,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [25134] = 17, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1718), 1, anon_sym_QMARK, @@ -98885,8 +98884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98896,9 +98895,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98922,7 +98921,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, [25206] = 20, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -98946,8 +98945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98957,9 +98956,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -98980,7 +98979,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [25284] = 13, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -98988,8 +98987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2275), 2, anon_sym_PLUS, anon_sym_DASH, @@ -98999,9 +98998,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 3, anon_sym_AMP, anon_sym_QMARK, @@ -99030,7 +99029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [25347] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2273), 1, anon_sym_QMARK, @@ -99040,8 +99039,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99063,9 +99062,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99086,7 +99085,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [25422] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99094,8 +99093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99125,9 +99124,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99145,7 +99144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [25503] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99153,8 +99152,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99184,9 +99183,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99204,7 +99203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [25584] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99212,8 +99211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99243,9 +99242,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99263,7 +99262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [25665] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99271,8 +99270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99304,9 +99303,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99323,7 +99322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [25748] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99331,8 +99330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99362,9 +99361,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99382,7 +99381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [25829] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99390,8 +99389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99421,9 +99420,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99441,7 +99440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [25910] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99449,8 +99448,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99480,9 +99479,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99500,7 +99499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [25991] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99508,8 +99507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99539,9 +99538,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99559,7 +99558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [26072] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99567,8 +99566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99598,9 +99597,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99618,7 +99617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [26153] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99626,8 +99625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99657,9 +99656,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99677,7 +99676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [26234] = 15, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99685,8 +99684,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2305), 1, @@ -99703,9 +99702,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99729,15 +99728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [26301] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, - ACTIONS(2291), 1, + ACTIONS(2293), 1, + anon_sym_PERCENT, + ACTIONS(2291), 2, anon_sym_STAR, - ACTIONS(2293), 2, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -99772,7 +99771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [26350] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1718), 1, anon_sym_QMARK, @@ -99782,8 +99781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99805,9 +99804,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99828,7 +99827,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [26425] = 10, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2319), 1, aux_sym_function_static_declaration_token1, @@ -99875,11 +99874,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [26482] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, - ACTIONS(1718), 9, + ACTIONS(1718), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99889,7 +99888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 25, + anon_sym_SLASH, + ACTIONS(1716), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -99913,10 +99913,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [26527] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99924,8 +99923,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -99949,9 +99948,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -99972,7 +99971,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [26602] = 21, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -99980,8 +99979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -100009,9 +100008,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -100030,7 +100029,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, [26681] = 20, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -100038,8 +100037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -100065,9 +100064,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -100087,7 +100086,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [26758] = 17, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1718), 1, anon_sym_QMARK, @@ -100097,8 +100096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -100116,9 +100115,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -100141,7 +100140,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, [26829] = 16, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1718), 1, anon_sym_QMARK, @@ -100151,8 +100150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -100168,9 +100167,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -100194,7 +100193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [26898] = 14, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -100202,8 +100201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(1718), 2, @@ -100218,9 +100217,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -100245,7 +100244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [26963] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -100253,8 +100252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -100278,9 +100277,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -100301,11 +100300,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [27038] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, - ACTIONS(1718), 9, + ACTIONS(1718), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100315,7 +100314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 25, + anon_sym_SLASH, + ACTIONS(1716), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -100339,10 +100339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [27083] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2267), 1, anon_sym_QMARK, @@ -100352,8 +100351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -100375,9 +100374,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -100398,21 +100397,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [27158] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2275), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -100443,23 +100442,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DOT, [27211] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2275), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -100489,7 +100488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [27266] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -100497,8 +100496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -100522,9 +100521,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -100545,7 +100544,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [27341] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -100553,8 +100552,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -100578,9 +100577,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -100601,7 +100600,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [27416] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -100609,8 +100608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -100640,9 +100639,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -100660,18 +100659,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, aux_sym_binary_expression_token1, [27497] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -100704,7 +100703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [27548] = 11, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -100712,17 +100711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2275), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -100752,9 +100751,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [27607] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2011), 9, + ACTIONS(2011), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100764,7 +100763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2009), 25, + anon_sym_SLASH, + ACTIONS(2009), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -100788,10 +100788,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [27649] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -100819,8 +100818,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -100830,9 +100829,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -100849,9 +100848,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, aux_sym_binary_expression_token1, [27729] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1568), 9, + ACTIONS(1570), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100861,7 +100860,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1566), 25, + anon_sym_SLASH, + ACTIONS(1568), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -100885,12 +100885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [27771] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1564), 9, + ACTIONS(1566), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100900,7 +100899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1562), 25, + anon_sym_SLASH, + ACTIONS(1564), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -100924,12 +100924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [27813] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1556), 9, + ACTIONS(1556), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100939,7 +100938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1554), 25, + anon_sym_SLASH, + ACTIONS(1554), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -100963,10 +100963,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [27855] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -100988,8 +100987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -100999,9 +100998,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -101021,7 +101020,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [27929] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -101043,8 +101042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101054,9 +101053,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -101076,11 +101075,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [28003] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2349), 1, anon_sym_STAR_STAR, - ACTIONS(1718), 9, + ACTIONS(1718), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101090,7 +101089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 24, + anon_sym_SLASH, + ACTIONS(1716), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101113,24 +101113,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [28047] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2349), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -101160,9 +101159,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DOT, [28099] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2047), 9, + ACTIONS(2047), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101172,7 +101171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2045), 25, + anon_sym_SLASH, + ACTIONS(2045), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101196,12 +101196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [28141] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2115), 9, + ACTIONS(2115), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101211,7 +101210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2113), 25, + anon_sym_SLASH, + ACTIONS(2113), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101235,12 +101235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [28183] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2123), 9, + ACTIONS(2123), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101250,7 +101249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2121), 25, + anon_sym_SLASH, + ACTIONS(2121), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101274,10 +101274,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [28225] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2273), 1, anon_sym_QMARK, @@ -101299,8 +101298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101310,9 +101309,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -101332,18 +101331,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [28299] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2349), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -101375,23 +101374,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [28349] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2349), 1, anon_sym_STAR_STAR, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -101420,7 +101419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [28403] = 11, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2349), 1, anon_sym_STAR_STAR, @@ -101428,17 +101427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -101467,9 +101466,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [28461] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2127), 9, + ACTIONS(2127), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101479,7 +101478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2125), 25, + anon_sym_SLASH, + ACTIONS(2125), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101503,10 +101503,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [28503] = 14, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -101516,8 +101515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(1718), 2, anon_sym_QMARK, anon_sym_PIPE, @@ -101530,9 +101529,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -101556,7 +101555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [28567] = 16, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1718), 1, anon_sym_QMARK, @@ -101572,8 +101571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101583,9 +101582,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -101608,9 +101607,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [28635] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2043), 9, + ACTIONS(2043), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101620,7 +101619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2041), 25, + anon_sym_SLASH, + ACTIONS(2041), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101644,12 +101644,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [28677] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2039), 9, + ACTIONS(2039), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101659,7 +101658,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2037), 25, + anon_sym_SLASH, + ACTIONS(2037), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101683,10 +101683,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [28719] = 17, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1718), 1, anon_sym_QMARK, @@ -101704,8 +101703,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101715,9 +101714,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -101739,9 +101738,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, [28789] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2111), 9, + ACTIONS(2111), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101751,7 +101750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2109), 25, + anon_sym_SLASH, + ACTIONS(2109), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101775,12 +101775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [28831] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2079), 9, + ACTIONS(2079), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101790,7 +101789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2077), 25, + anon_sym_SLASH, + ACTIONS(2077), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -101814,10 +101814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [28873] = 20, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -101841,8 +101840,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101852,9 +101851,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -101873,7 +101872,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [28949] = 21, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -101899,8 +101898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101910,9 +101909,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -101930,7 +101929,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, [29027] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -101952,8 +101951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101963,9 +101962,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -101989,12 +101988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1706), 1, - anon_sym_LPAREN, + ACTIONS(1558), 1, + sym_comment, ACTIONS(1708), 1, + anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(2379), 1, sym_name, STATE(1428), 1, @@ -102022,7 +102021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -102037,9 +102036,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [29169] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1979), 9, + ACTIONS(1979), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102049,7 +102048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1977), 25, + anon_sym_SLASH, + ACTIONS(1977), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102073,14 +102073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [29211] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2349), 1, anon_sym_STAR_STAR, - ACTIONS(1718), 9, + ACTIONS(1718), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102090,7 +102089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 24, + anon_sym_SLASH, + ACTIONS(1716), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102113,19 +102113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [29255] = 16, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1706), 1, - anon_sym_LPAREN, + ACTIONS(1558), 1, + sym_comment, ACTIONS(1708), 1, + anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(2379), 1, sym_name, STATE(1428), 1, @@ -102153,7 +102152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -102168,7 +102167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [29323] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1718), 1, anon_sym_QMARK, @@ -102190,8 +102189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -102201,9 +102200,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -102223,15 +102222,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [29397] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2349), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2377), 1, + anon_sym_PERCENT, + ACTIONS(2375), 2, anon_sym_STAR, - ACTIONS(2377), 2, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -102265,7 +102264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [29445] = 15, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -102277,8 +102276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(1718), 2, anon_sym_QMARK, anon_sym_PIPE, @@ -102291,9 +102290,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -102316,7 +102315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [29511] = 13, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2349), 1, anon_sym_STAR_STAR, @@ -102324,8 +102323,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -102335,9 +102334,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 3, anon_sym_AMP, anon_sym_QMARK, @@ -102365,7 +102364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [29573] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -102393,8 +102392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -102404,9 +102403,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -102427,12 +102426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1706), 1, - anon_sym_LPAREN, + ACTIONS(1558), 1, + sym_comment, ACTIONS(1708), 1, + anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(2379), 1, sym_name, STATE(1428), 1, @@ -102460,7 +102459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -102475,9 +102474,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [29721] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2119), 9, + ACTIONS(2119), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102487,7 +102486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2117), 25, + anon_sym_SLASH, + ACTIONS(2117), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102511,12 +102511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [29763] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2075), 9, + ACTIONS(2075), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102526,7 +102525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2073), 25, + anon_sym_SLASH, + ACTIONS(2073), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102550,12 +102550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [29805] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2035), 9, + ACTIONS(2035), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102565,7 +102564,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2033), 25, + anon_sym_SLASH, + ACTIONS(2033), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102589,12 +102589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [29847] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2031), 9, + ACTIONS(2031), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102604,7 +102603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2029), 25, + anon_sym_SLASH, + ACTIONS(2029), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102628,12 +102628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [29889] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2027), 9, + ACTIONS(2027), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102643,7 +102642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2025), 25, + anon_sym_SLASH, + ACTIONS(2025), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102667,12 +102667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [29931] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2023), 9, + ACTIONS(2023), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102682,7 +102681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2021), 25, + anon_sym_SLASH, + ACTIONS(2021), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102706,12 +102706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [29973] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1024), 9, + ACTIONS(1024), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102721,7 +102720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1022), 25, + anon_sym_SLASH, + ACTIONS(1022), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102745,12 +102745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30015] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2019), 9, + ACTIONS(2019), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102760,7 +102759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2017), 25, + anon_sym_SLASH, + ACTIONS(2017), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102784,12 +102784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30057] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2015), 9, + ACTIONS(2015), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102799,7 +102798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2013), 25, + anon_sym_SLASH, + ACTIONS(2013), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102823,12 +102823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30099] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1983), 9, + ACTIONS(1983), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102838,7 +102837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1981), 25, + anon_sym_SLASH, + ACTIONS(1981), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102862,12 +102862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30141] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2095), 9, + ACTIONS(2095), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102877,7 +102876,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2093), 25, + anon_sym_SLASH, + ACTIONS(2093), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102901,19 +102901,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30183] = 16, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1706), 1, - anon_sym_LPAREN, + ACTIONS(1558), 1, + sym_comment, ACTIONS(1708), 1, + anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(2379), 1, sym_name, STATE(1428), 1, @@ -102941,7 +102940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -102956,9 +102955,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [30251] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2169), 9, + ACTIONS(2169), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102968,7 +102967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2167), 25, + anon_sym_SLASH, + ACTIONS(2167), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -102992,12 +102992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30293] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1987), 9, + ACTIONS(1987), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103007,7 +103006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1985), 25, + anon_sym_SLASH, + ACTIONS(1985), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103031,12 +103031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30335] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1991), 9, + ACTIONS(1991), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103046,7 +103045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1989), 25, + anon_sym_SLASH, + ACTIONS(1989), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103070,19 +103070,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30377] = 16, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1706), 1, - anon_sym_LPAREN, + ACTIONS(1558), 1, + sym_comment, ACTIONS(1708), 1, + anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(2379), 1, sym_name, STATE(1428), 1, @@ -103110,7 +103109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -103125,9 +103124,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [30445] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2161), 9, + ACTIONS(2161), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103137,7 +103136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2159), 25, + anon_sym_SLASH, + ACTIONS(2159), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103161,12 +103161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30487] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2157), 9, + ACTIONS(2157), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103176,7 +103175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2155), 25, + anon_sym_SLASH, + ACTIONS(2155), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103200,12 +103200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30529] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2091), 9, + ACTIONS(2091), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103215,7 +103214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2089), 25, + anon_sym_SLASH, + ACTIONS(2089), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103239,12 +103239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30571] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1995), 9, + ACTIONS(1995), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103254,7 +103253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1993), 25, + anon_sym_SLASH, + ACTIONS(1993), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103278,12 +103278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30613] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2107), 9, + ACTIONS(2107), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103293,7 +103292,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2105), 25, + anon_sym_SLASH, + ACTIONS(2105), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103317,12 +103317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30655] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2103), 9, + ACTIONS(2103), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103332,7 +103331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2101), 25, + anon_sym_SLASH, + ACTIONS(2101), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103356,10 +103356,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30697] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -103381,8 +103380,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -103392,9 +103391,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -103414,7 +103413,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [30771] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2267), 1, anon_sym_QMARK, @@ -103436,8 +103435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -103447,9 +103446,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -103469,9 +103468,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [30845] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1028), 9, + ACTIONS(1028), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103481,7 +103480,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1026), 25, + anon_sym_SLASH, + ACTIONS(1026), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103505,12 +103505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30887] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2165), 9, + ACTIONS(2165), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103520,7 +103519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2163), 25, + anon_sym_SLASH, + ACTIONS(2163), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103544,12 +103544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30929] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2071), 9, + ACTIONS(2071), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103559,7 +103558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2069), 25, + anon_sym_SLASH, + ACTIONS(2069), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103583,12 +103583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [30971] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2003), 9, + ACTIONS(2003), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103598,7 +103597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2001), 25, + anon_sym_SLASH, + ACTIONS(2001), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103622,12 +103622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31013] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2067), 9, + ACTIONS(2067), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103637,7 +103636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2065), 25, + anon_sym_SLASH, + ACTIONS(2065), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103661,12 +103661,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31055] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2145), 9, + ACTIONS(2145), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103676,7 +103675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2143), 25, + anon_sym_SLASH, + ACTIONS(2143), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103700,12 +103700,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31097] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2099), 9, + ACTIONS(2099), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103715,7 +103714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2097), 25, + anon_sym_SLASH, + ACTIONS(2097), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103739,12 +103739,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31139] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2173), 9, + ACTIONS(2173), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103754,7 +103753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2171), 25, + anon_sym_SLASH, + ACTIONS(2171), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103778,12 +103778,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31181] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2177), 9, + ACTIONS(2177), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103793,7 +103792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2175), 25, + anon_sym_SLASH, + ACTIONS(2175), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103817,10 +103817,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31223] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -103848,8 +103847,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -103859,9 +103858,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -103878,7 +103877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, aux_sym_binary_expression_token1, [31303] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -103906,8 +103905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -103917,9 +103916,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -103936,9 +103935,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, aux_sym_binary_expression_token1, [31383] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2199), 9, + ACTIONS(2199), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103948,7 +103947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2197), 25, + anon_sym_SLASH, + ACTIONS(2197), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103972,12 +103972,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31425] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2149), 9, + ACTIONS(2149), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103987,7 +103986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2147), 25, + anon_sym_SLASH, + ACTIONS(2147), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104011,12 +104011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31467] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2007), 9, + ACTIONS(2007), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104026,7 +104025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2005), 25, + anon_sym_SLASH, + ACTIONS(2005), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104050,10 +104050,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31509] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -104081,8 +104080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -104092,9 +104091,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -104111,9 +104110,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, aux_sym_binary_expression_token1, [31589] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2133), 9, + ACTIONS(2133), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104123,7 +104122,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2131), 25, + anon_sym_SLASH, + ACTIONS(2131), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104147,12 +104147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31631] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1971), 9, + ACTIONS(1971), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104162,7 +104161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1969), 25, + anon_sym_SLASH, + ACTIONS(1969), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104186,19 +104186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31673] = 16, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1706), 1, - anon_sym_LPAREN, + ACTIONS(1558), 1, + sym_comment, ACTIONS(1708), 1, + anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(2379), 1, sym_name, STATE(1428), 1, @@ -104226,7 +104225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -104241,9 +104240,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [31741] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2063), 9, + ACTIONS(2063), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104253,7 +104252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2061), 25, + anon_sym_SLASH, + ACTIONS(2061), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104277,12 +104277,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31783] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2087), 9, + ACTIONS(2087), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104292,7 +104291,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2085), 25, + anon_sym_SLASH, + ACTIONS(2085), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104316,12 +104316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31825] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2059), 9, + ACTIONS(2059), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104331,7 +104330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2057), 25, + anon_sym_SLASH, + ACTIONS(2057), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104355,12 +104355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31867] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2055), 9, + ACTIONS(2055), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104370,7 +104369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2053), 25, + anon_sym_SLASH, + ACTIONS(2053), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104394,12 +104394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31909] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2191), 9, + ACTIONS(2191), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104409,7 +104408,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2189), 25, + anon_sym_SLASH, + ACTIONS(2189), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104433,12 +104433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31951] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2137), 9, + ACTIONS(2137), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104448,7 +104447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2135), 25, + anon_sym_SLASH, + ACTIONS(2135), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104472,12 +104472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [31993] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1560), 9, + ACTIONS(1562), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104487,7 +104486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1558), 25, + anon_sym_SLASH, + ACTIONS(1560), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104511,10 +104511,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32035] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -104542,8 +104541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -104553,9 +104552,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -104572,7 +104571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, aux_sym_binary_expression_token1, [32115] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -104600,8 +104599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -104611,9 +104610,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -104630,9 +104629,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, aux_sym_binary_expression_token1, [32195] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2153), 9, + ACTIONS(2153), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104642,7 +104641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2151), 25, + anon_sym_SLASH, + ACTIONS(2151), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104666,10 +104666,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32237] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -104697,8 +104696,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -104708,9 +104707,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -104727,9 +104726,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, aux_sym_binary_expression_token1, [32317] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1594), 9, + ACTIONS(1596), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104739,7 +104738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1592), 25, + anon_sym_SLASH, + ACTIONS(1594), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104763,12 +104763,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32359] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1927), 9, + ACTIONS(1927), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104778,7 +104777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1925), 25, + anon_sym_SLASH, + ACTIONS(1925), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104802,12 +104802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32401] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1975), 9, + ACTIONS(1975), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104817,7 +104816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1973), 25, + anon_sym_SLASH, + ACTIONS(1973), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104841,12 +104841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32443] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1999), 9, + ACTIONS(1999), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104856,7 +104855,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1997), 25, + anon_sym_SLASH, + ACTIONS(1997), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104880,12 +104880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32485] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2141), 9, + ACTIONS(2141), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104895,7 +104894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2139), 25, + anon_sym_SLASH, + ACTIONS(2139), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104919,12 +104919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32527] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2183), 9, + ACTIONS(2183), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104934,7 +104933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2181), 25, + anon_sym_SLASH, + ACTIONS(2181), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104958,10 +104958,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32569] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -104989,8 +104988,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -105000,9 +104999,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -105019,9 +105018,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, aux_sym_binary_expression_token1, [32649] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2195), 9, + ACTIONS(2195), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105031,7 +105030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2193), 25, + anon_sym_SLASH, + ACTIONS(2193), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105055,12 +105055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32691] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2083), 9, + ACTIONS(2083), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105070,7 +105069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2081), 25, + anon_sym_SLASH, + ACTIONS(2081), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105094,14 +105094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32733] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2383), 1, aux_sym_binary_expression_token1, - ACTIONS(2127), 9, + ACTIONS(2127), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105111,7 +105110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2125), 24, + anon_sym_SLASH, + ACTIONS(2125), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105134,12 +105134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32777] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2051), 9, + ACTIONS(2051), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105149,7 +105148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2049), 25, + anon_sym_SLASH, + ACTIONS(2049), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105173,10 +105173,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [32819] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -105204,8 +105203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -105215,9 +105214,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -105234,7 +105233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, aux_sym_binary_expression_token1, [32899] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -105262,8 +105261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2385), 1, anon_sym_EQ_GT, ACTIONS(2345), 2, @@ -105275,9 +105274,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -105293,9 +105292,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [32981] = 3, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(2187), 9, + ACTIONS(2187), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105305,7 +105304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2185), 25, + anon_sym_SLASH, + ACTIONS(2185), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105329,7 +105329,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [33023] = 17, ACTIONS(27), 1, @@ -105338,14 +105337,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_readonly_modifier_token1, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1706), 1, - anon_sym_LPAREN, ACTIONS(1708), 1, + anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(1227), 1, @@ -105369,7 +105368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -105384,11 +105383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [33092] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, - ACTIONS(1718), 9, + ACTIONS(1718), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105398,7 +105397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 23, + anon_sym_SLASH, + ACTIONS(1716), 22, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -105420,10 +105420,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [33135] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -105451,8 +105450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -105462,9 +105461,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -105480,7 +105479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [33214] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -105508,8 +105507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -105519,9 +105518,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -105537,7 +105536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [33293] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -105559,8 +105558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -105570,9 +105569,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -105591,7 +105590,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [33366] = 16, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1718), 1, anon_sym_QMARK, @@ -105607,8 +105606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -105618,9 +105617,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -105642,7 +105641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [33433] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -105664,8 +105663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -105675,9 +105674,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -105696,7 +105695,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [33506] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -105724,8 +105723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -105735,9 +105734,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -105753,11 +105752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [33585] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, - ACTIONS(1718), 9, + ACTIONS(1718), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105767,7 +105766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1716), 23, + anon_sym_SLASH, + ACTIONS(1716), 22, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -105789,10 +105789,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [33628] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1718), 1, anon_sym_QMARK, @@ -105814,8 +105813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -105825,9 +105824,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -105846,7 +105845,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [33701] = 17, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1718), 1, anon_sym_QMARK, @@ -105864,8 +105863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -105875,9 +105874,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -105898,7 +105897,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, [33770] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -105926,8 +105925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -105937,9 +105936,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -105955,7 +105954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [33849] = 20, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -105979,8 +105978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -105990,9 +105989,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106010,7 +106009,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [33924] = 13, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -106018,8 +106017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -106029,9 +106028,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 3, anon_sym_AMP, anon_sym_QMARK, @@ -106058,7 +106057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_CARET, [33985] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -106086,8 +106085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -106097,9 +106096,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106115,18 +106114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [34064] = 7, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -106157,7 +106156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [34113] = 21, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -106183,8 +106182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -106194,9 +106193,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106213,15 +106212,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, [34190] = 6, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2423), 2, anon_sym_STAR, - ACTIONS(2425), 2, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -106254,7 +106253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, [34237] = 15, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -106266,8 +106265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(1718), 2, anon_sym_QMARK, anon_sym_PIPE, @@ -106280,9 +106279,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106304,21 +106303,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, [34302] = 8, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -106347,7 +106346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DOT, [34353] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -106375,8 +106374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -106386,9 +106385,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106404,7 +106403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [34432] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -106432,8 +106431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -106443,9 +106442,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106461,7 +106460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [34511] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2273), 1, anon_sym_QMARK, @@ -106483,8 +106482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -106494,9 +106493,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106515,7 +106514,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [34584] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -106543,8 +106542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -106554,9 +106553,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106572,7 +106571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [34663] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -106594,8 +106593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -106605,9 +106604,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106626,23 +106625,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [34736] = 9, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(1718), 8, anon_sym_AMP, anon_sym_QMARK, @@ -106670,11 +106669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ_GT, [34789] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2427), 1, anon_sym_COLON, - ACTIONS(1999), 9, + ACTIONS(1999), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106684,7 +106683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(1997), 23, + anon_sym_SLASH, + ACTIONS(1997), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, @@ -106706,10 +106706,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [34832] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -106737,8 +106736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -106748,9 +106747,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106766,7 +106765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [34911] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2267), 1, anon_sym_QMARK, @@ -106788,8 +106787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -106799,9 +106798,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106820,7 +106819,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [34984] = 14, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -106830,8 +106829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(1718), 2, anon_sym_QMARK, anon_sym_PIPE, @@ -106844,9 +106843,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106875,14 +106874,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_readonly_modifier_token1, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1706), 1, - anon_sym_LPAREN, ACTIONS(1708), 1, + anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(1219), 1, @@ -106906,7 +106905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -106921,7 +106920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [35116] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -106949,8 +106948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -106960,9 +106959,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -106978,11 +106977,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [35195] = 4, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2427), 1, anon_sym_COLON, - ACTIONS(2083), 9, + ACTIONS(2083), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106992,7 +106991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_STAR, - ACTIONS(2081), 23, + anon_sym_SLASH, + ACTIONS(2081), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PLUS, @@ -107014,10 +107014,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_SLASH, anon_sym_PERCENT, [35238] = 19, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -107039,8 +107038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -107050,9 +107049,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -107071,7 +107070,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, [35311] = 11, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -107079,17 +107078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -107117,7 +107116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [35368] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -107145,8 +107144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2429), 1, anon_sym_EQ_GT, ACTIONS(2395), 2, @@ -107158,9 +107157,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2143), 3, anon_sym_COMMA, anon_sym_RPAREN, @@ -107175,7 +107174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [35449] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -107203,8 +107202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -107214,9 +107213,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -107231,7 +107230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [35527] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -107239,8 +107238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -107275,9 +107274,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -107288,7 +107287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [35607] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -107316,8 +107315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2437), 1, anon_sym_COMMA, ACTIONS(2345), 2, @@ -107329,9 +107328,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2435), 2, sym__automatic_semicolon, anon_sym_SEMI, @@ -107345,7 +107344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [35687] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -107373,8 +107372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2437), 1, anon_sym_COMMA, ACTIONS(2345), 2, @@ -107386,9 +107385,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2439), 2, sym__automatic_semicolon, anon_sym_SEMI, @@ -107402,7 +107401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [35767] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -107430,8 +107429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -107441,9 +107440,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -107458,7 +107457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [35845] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -107486,8 +107485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2443), 1, anon_sym_EQ_GT, ACTIONS(2143), 2, @@ -107502,9 +107501,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -107515,7 +107514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [35925] = 24, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -107523,8 +107522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -107560,9 +107559,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -107573,7 +107572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36007] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -107581,8 +107580,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -107617,9 +107616,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -107630,7 +107629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36087] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -107658,8 +107657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -107669,9 +107668,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2367), 3, anon_sym_LT, anon_sym_GT, @@ -107686,7 +107685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36165] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -107714,8 +107713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -107725,9 +107724,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2453), 2, sym__automatic_semicolon, anon_sym_SEMI, @@ -107741,7 +107740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36242] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -107749,8 +107748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -107780,9 +107779,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2455), 2, anon_sym_COMMA, anon_sym_RBRACE, @@ -107796,7 +107795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36319] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -107824,8 +107823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -107835,9 +107834,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2457), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -107905,7 +107904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_declaration, aux_sym_declaration_list_repeat1, [36471] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -107933,8 +107932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -107944,9 +107943,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2479), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -107960,7 +107959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36548] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -107988,8 +107987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2481), 1, anon_sym_EQ_GT, ACTIONS(2483), 1, @@ -108003,9 +108002,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -108016,7 +108015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36627] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -108044,8 +108043,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108055,9 +108054,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2485), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -108071,7 +108070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36704] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -108079,8 +108078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -108114,9 +108113,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -108181,7 +108180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_declaration, aux_sym_declaration_list_repeat1, [36858] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -108209,8 +108208,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108220,9 +108219,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2491), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -108236,7 +108235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [36935] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -108264,8 +108263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2439), 1, anon_sym_RPAREN, ACTIONS(2493), 1, @@ -108279,9 +108278,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -108292,7 +108291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37014] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -108320,8 +108319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108331,9 +108330,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2495), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -108347,7 +108346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37091] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -108375,8 +108374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108386,9 +108385,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2497), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -108402,7 +108401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37168] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -108430,8 +108429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108441,9 +108440,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2499), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -108457,7 +108456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37245] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -108485,8 +108484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108496,9 +108495,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2501), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -108512,7 +108511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37322] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -108540,8 +108539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108551,9 +108550,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2503), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -108567,7 +108566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37399] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -108595,8 +108594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108606,9 +108605,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2505), 2, sym__automatic_semicolon, anon_sym_SEMI, @@ -108622,7 +108621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37476] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -108650,8 +108649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108661,9 +108660,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2507), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -108677,7 +108676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37553] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2511), 1, aux_sym_namespace_use_declaration_token3, @@ -108717,7 +108716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [37600] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -108745,8 +108744,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108756,9 +108755,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2515), 2, sym__automatic_semicolon, anon_sym_SEMI, @@ -108772,7 +108771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37677] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -108800,8 +108799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108811,9 +108810,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2517), 2, sym__automatic_semicolon, anon_sym_SEMI, @@ -108827,7 +108826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37754] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -108855,8 +108854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108866,9 +108865,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2519), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -108882,7 +108881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [37831] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -108910,8 +108909,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -108921,9 +108920,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2521), 2, sym__automatic_semicolon, anon_sym_SEMI, @@ -108991,7 +108990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_declaration, aux_sym_declaration_list_repeat1, [37983] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -109019,8 +109018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -109030,9 +109029,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2555), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -109154,7 +109153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_declaration, aux_sym_declaration_list_repeat1, [38210] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -109182,8 +109181,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2209), 2, anon_sym_PLUS, anon_sym_DASH, @@ -109193,9 +109192,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2561), 2, anon_sym_SEMI, anon_sym_COLON, @@ -109263,7 +109262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_declaration, aux_sym_declaration_list_repeat1, [38362] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -109291,8 +109290,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -109302,9 +109301,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2565), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -109318,7 +109317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [38439] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -109346,8 +109345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -109357,9 +109356,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2567), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -109373,7 +109372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [38516] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -109401,8 +109400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -109412,9 +109411,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2569), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -109428,7 +109427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [38593] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -109456,8 +109455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -109467,9 +109466,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2571), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -109483,7 +109482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [38670] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -109511,8 +109510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -109522,9 +109521,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2573), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -109538,7 +109537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [38747] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -109566,8 +109565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2435), 1, anon_sym_RPAREN, ACTIONS(2493), 1, @@ -109581,9 +109580,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, @@ -109706,14 +109705,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1706), 1, - anon_sym_LPAREN, ACTIONS(1708), 1, + anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(1428), 1, @@ -109735,7 +109734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -109750,7 +109749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [39039] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -109778,8 +109777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -109789,9 +109788,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2579), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -109805,7 +109804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39116] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -109833,8 +109832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -109844,9 +109843,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2581), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -109860,7 +109859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39193] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2387), 1, anon_sym_STAR_STAR, @@ -109888,8 +109887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2423), 1, - anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_PERCENT, ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, @@ -109899,9 +109898,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2425), 2, + ACTIONS(2423), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2583), 2, anon_sym_COMMA, anon_sym_RPAREN, @@ -109915,7 +109914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39270] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -109923,8 +109922,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -109958,9 +109957,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -109971,7 +109970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39349] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -109999,8 +109998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2481), 1, anon_sym_EQ_GT, ACTIONS(2585), 1, @@ -110014,9 +110013,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -110027,7 +110026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39428] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -110055,8 +110054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -110066,9 +110065,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2587), 2, sym__automatic_semicolon, anon_sym_SEMI, @@ -110082,7 +110081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39505] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -110110,8 +110109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -110121,9 +110120,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2589), 2, sym__automatic_semicolon, anon_sym_SEMI, @@ -110141,14 +110140,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1706), 1, - anon_sym_LPAREN, ACTIONS(1708), 1, + anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(1428), 1, @@ -110170,7 +110169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -110239,7 +110238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_declaration, aux_sym_declaration_list_repeat1, [39720] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -110247,8 +110246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -110278,9 +110277,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2593), 2, anon_sym_COMMA, anon_sym_RBRACE, @@ -110294,7 +110293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39797] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -110302,8 +110301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -110333,9 +110332,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2595), 2, anon_sym_COMMA, anon_sym_EQ_GT, @@ -110349,7 +110348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39874] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -110377,8 +110376,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2481), 1, anon_sym_EQ_GT, ACTIONS(2597), 1, @@ -110392,9 +110391,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -110405,7 +110404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [39953] = 23, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -110433,8 +110432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2481), 1, anon_sym_EQ_GT, ACTIONS(2599), 1, @@ -110448,9 +110447,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -110461,7 +110460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40032] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2339), 1, anon_sym_AMP, @@ -110489,8 +110488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2373), 1, anon_sym_DOT, - ACTIONS(2375), 1, - anon_sym_STAR, + ACTIONS(2377), 1, + anon_sym_PERCENT, ACTIONS(2345), 2, anon_sym_PLUS, anon_sym_DASH, @@ -110500,9 +110499,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 2, + ACTIONS(2375), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2601), 2, sym__automatic_semicolon, anon_sym_SEMI, @@ -110516,7 +110515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40109] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2511), 1, aux_sym_namespace_use_declaration_token3, @@ -110556,7 +110555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [40156] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -110584,8 +110583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2603), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -110597,9 +110596,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -110610,7 +110609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40232] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -110638,8 +110637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2605), 1, anon_sym_EQ_GT, ACTIONS(2209), 2, @@ -110651,9 +110650,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -110664,7 +110663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40308] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -110692,8 +110691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2607), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -110705,9 +110704,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -110718,7 +110717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40384] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -110746,8 +110745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2609), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -110759,9 +110758,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -110772,7 +110771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40460] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -110800,8 +110799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2611), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -110813,9 +110812,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -110826,7 +110825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40536] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -110854,8 +110853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2613), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -110867,9 +110866,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -110880,7 +110879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40612] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -110908,8 +110907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2615), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -110921,9 +110920,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -110934,7 +110933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40688] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -110962,8 +110961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2617), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -110975,9 +110974,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -110988,7 +110987,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40764] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(2203), 1, + anon_sym_AMP, + ACTIONS(2205), 1, + anon_sym_QMARK, + ACTIONS(2207), 1, + anon_sym_PIPE, + ACTIONS(2211), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2213), 1, + anon_sym_STAR_STAR, + ACTIONS(2215), 1, + aux_sym_binary_expression_token2, + ACTIONS(2217), 1, + aux_sym_binary_expression_token3, + ACTIONS(2219), 1, + aux_sym_binary_expression_token4, + ACTIONS(2221), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2223), 1, + anon_sym_AMP_AMP, + ACTIONS(2225), 1, + anon_sym_CARET, + ACTIONS(2233), 1, + anon_sym_GT_EQ, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2241), 1, + anon_sym_PERCENT, + ACTIONS(2619), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2209), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2239), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2231), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2229), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [40840] = 22, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111016,62 +111069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, - ACTIONS(2619), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(2209), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2227), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2235), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2241), 2, - anon_sym_SLASH, + ACTIONS(2241), 1, anon_sym_PERCENT, - ACTIONS(2231), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2229), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40840] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2203), 1, - anon_sym_AMP, - ACTIONS(2205), 1, - anon_sym_QMARK, - ACTIONS(2207), 1, - anon_sym_PIPE, - ACTIONS(2211), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2213), 1, - anon_sym_STAR_STAR, - ACTIONS(2215), 1, - aux_sym_binary_expression_token2, - ACTIONS(2217), 1, - aux_sym_binary_expression_token3, - ACTIONS(2219), 1, - aux_sym_binary_expression_token4, - ACTIONS(2221), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2223), 1, - anon_sym_AMP_AMP, - ACTIONS(2225), 1, - anon_sym_CARET, - ACTIONS(2233), 1, - anon_sym_GT_EQ, - ACTIONS(2237), 1, - anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, ACTIONS(2621), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -111083,9 +111082,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111096,7 +111095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40916] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111124,8 +111123,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2623), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -111137,9 +111136,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111150,7 +111149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [40992] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111178,8 +111177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2625), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -111191,9 +111190,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111204,7 +111203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41068] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111232,8 +111231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2627), 1, anon_sym_EQ_GT, ACTIONS(2209), 2, @@ -111245,9 +111244,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111258,7 +111257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41144] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111286,8 +111285,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2629), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -111299,9 +111298,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111312,7 +111311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41220] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -111320,8 +111319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -111353,9 +111352,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -111366,7 +111365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41296] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111394,8 +111393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2633), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -111407,9 +111406,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111420,7 +111419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41372] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111448,8 +111447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2635), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -111461,9 +111460,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111474,7 +111473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41448] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111502,8 +111501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2631), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -111515,9 +111514,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111528,7 +111527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41524] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111556,8 +111555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2637), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -111569,9 +111568,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111582,7 +111581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41600] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111610,8 +111609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2639), 1, anon_sym_COLON, ACTIONS(2209), 2, @@ -111623,9 +111622,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111636,7 +111635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41676] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111664,8 +111663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2641), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -111677,9 +111676,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111690,7 +111689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41752] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -111698,8 +111697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -111731,9 +111730,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -111744,7 +111743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41828] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111772,8 +111771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2643), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -111785,9 +111784,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111798,7 +111797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41904] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111826,8 +111825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2645), 1, aux_sym_namespace_aliasing_clause_token1, ACTIONS(2209), 2, @@ -111839,9 +111838,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111852,7 +111851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [41980] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111880,8 +111879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2647), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -111893,9 +111892,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111906,7 +111905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42056] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111934,8 +111933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2649), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -111947,9 +111946,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -111960,7 +111959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42132] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -111988,8 +111987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2651), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112001,9 +112000,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112014,7 +112013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42208] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112042,8 +112041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2653), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112055,9 +112054,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112068,7 +112067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42284] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -112076,8 +112075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -112109,9 +112108,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -112122,7 +112121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42360] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112150,8 +112149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2657), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112163,9 +112162,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112176,7 +112175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42436] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112204,8 +112203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2655), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112217,9 +112216,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112230,7 +112229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42512] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112258,8 +112257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2659), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112271,9 +112270,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112284,7 +112283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42588] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112312,8 +112311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2661), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112325,9 +112324,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112338,7 +112337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42664] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112366,8 +112365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2663), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112379,9 +112378,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112392,7 +112391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42740] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -112400,8 +112399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -112433,9 +112432,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -112446,7 +112445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [42816] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112474,8 +112473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2665), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112487,9 +112486,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112504,7 +112503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2667), 1, sym_name, @@ -112546,7 +112545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [42952] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112574,8 +112573,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2677), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112587,9 +112586,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112600,7 +112599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43028] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112628,8 +112627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2679), 1, aux_sym_namespace_aliasing_clause_token1, ACTIONS(2209), 2, @@ -112641,9 +112640,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112654,7 +112653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43104] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112682,8 +112681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2681), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112695,9 +112694,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112708,7 +112707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43180] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112736,8 +112735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2683), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112749,9 +112748,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112762,7 +112761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43256] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112790,8 +112789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2685), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112803,9 +112802,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112816,7 +112815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43332] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112844,8 +112843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2687), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -112857,9 +112856,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112870,7 +112869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43408] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112898,8 +112897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2689), 1, anon_sym_RPAREN, ACTIONS(2209), 2, @@ -112911,9 +112910,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112924,7 +112923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43484] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -112952,8 +112951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2691), 1, anon_sym_RPAREN, ACTIONS(2209), 2, @@ -112965,9 +112964,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -112978,7 +112977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43560] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -112986,8 +112985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -113019,9 +113018,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -113032,7 +113031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43636] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113060,8 +113059,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2693), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -113073,9 +113072,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113086,7 +113085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43712] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113114,8 +113113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2695), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -113127,9 +113126,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113140,7 +113139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43788] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113168,8 +113167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2697), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -113181,9 +113180,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113194,7 +113193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43864] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113222,8 +113221,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2699), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -113235,9 +113234,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113248,7 +113247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [43940] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113276,8 +113275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2701), 1, anon_sym_EQ_GT, ACTIONS(2209), 2, @@ -113289,9 +113288,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113302,7 +113301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44016] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2705), 4, anon_sym_BSLASH, @@ -113337,7 +113336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [44054] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113365,8 +113364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2707), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -113378,9 +113377,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113391,7 +113390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44130] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113419,8 +113418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2709), 1, anon_sym_RPAREN, ACTIONS(2209), 2, @@ -113432,9 +113431,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113445,7 +113444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44206] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113473,8 +113472,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2711), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -113486,9 +113485,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113499,7 +113498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44282] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113527,8 +113526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2713), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -113540,9 +113539,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113553,7 +113552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44358] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113581,8 +113580,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2715), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -113594,9 +113593,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113611,14 +113610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1706), 1, - anon_sym_LPAREN, ACTIONS(1708), 1, + anon_sym_LPAREN, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(2717), 1, sym_bottom_type, STATE(1428), 1, @@ -113638,7 +113637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -113653,7 +113652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [44494] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113681,8 +113680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2719), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -113694,9 +113693,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113707,7 +113706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44570] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113735,8 +113734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2721), 1, aux_sym_namespace_aliasing_clause_token1, ACTIONS(2209), 2, @@ -113748,9 +113747,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113761,7 +113760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44646] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113789,8 +113788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2723), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -113802,9 +113801,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113815,7 +113814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44722] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2277), 1, anon_sym_STAR_STAR, @@ -113823,8 +113822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(2291), 1, - anon_sym_STAR, + ACTIONS(2293), 1, + anon_sym_PERCENT, ACTIONS(2295), 1, anon_sym_AMP, ACTIONS(2297), 1, @@ -113856,9 +113855,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2293), 2, + ACTIONS(2291), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2283), 3, anon_sym_LT, anon_sym_GT, @@ -113869,7 +113868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44798] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113897,8 +113896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2725), 1, anon_sym_COLON, ACTIONS(2209), 2, @@ -113910,9 +113909,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113923,7 +113922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44874] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -113951,8 +113950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2727), 1, anon_sym_COLON, ACTIONS(2209), 2, @@ -113964,9 +113963,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -113977,7 +113976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [44950] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -114005,8 +114004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2729), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -114018,9 +114017,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -114031,7 +114030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45026] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -114059,8 +114058,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2731), 1, anon_sym_RPAREN, ACTIONS(2209), 2, @@ -114072,9 +114071,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -114085,7 +114084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45102] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -114113,8 +114112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2733), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -114126,9 +114125,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -114139,7 +114138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45178] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -114167,8 +114166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2735), 1, anon_sym_COLON, ACTIONS(2209), 2, @@ -114180,9 +114179,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -114193,7 +114192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, [45254] = 22, - ACTIONS(3), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2203), 1, anon_sym_AMP, @@ -114221,8 +114220,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2239), 1, - anon_sym_STAR, + ACTIONS(2241), 1, + anon_sym_PERCENT, ACTIONS(2737), 1, anon_sym_RBRACE, ACTIONS(2209), 2, @@ -114234,9 +114233,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2241), 2, + ACTIONS(2239), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, @@ -114439,7 +114438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_visibility_modifier, aux_sym_property_declaration_repeat1, [45590] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2791), 1, aux_sym_namespace_use_declaration_token3, @@ -114474,7 +114473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [45629] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2795), 4, anon_sym_BSLASH, @@ -114556,7 +114555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_visibility_modifier, aux_sym_property_declaration_repeat1, [45731] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2801), 4, anon_sym_BSLASH, @@ -114590,7 +114589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [45768] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2805), 4, anon_sym_BSLASH, @@ -114623,7 +114622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [45804] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2809), 4, anon_sym_BSLASH, @@ -114728,12 +114727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1708), 1, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, STATE(1428), 1, sym_qualified_name, STATE(2475), 1, @@ -114747,7 +114746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -114766,7 +114765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2667), 1, sym_name, @@ -114804,7 +114803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2667), 1, sym_name, @@ -114902,12 +114901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1708), 1, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, STATE(1428), 1, sym_qualified_name, STATE(2508), 1, @@ -114921,7 +114920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -114940,12 +114939,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1708), 1, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(2832), 1, anon_sym_LPAREN, STATE(1428), 1, @@ -114959,7 +114958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -114978,12 +114977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1708), 1, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, ACTIONS(2832), 1, anon_sym_LPAREN, STATE(1428), 1, @@ -114997,7 +114996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115046,12 +115045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1708), 1, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, STATE(1428), 1, sym_qualified_name, STATE(2503), 1, @@ -115065,7 +115064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115084,10 +115083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, - sym_name, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1694), 1, + sym_name, ACTIONS(1733), 1, anon_sym_QMARK, ACTIONS(2832), 1, @@ -115103,7 +115102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115122,12 +115121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1708), 1, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, STATE(1428), 1, sym_qualified_name, STATE(2549), 1, @@ -115141,7 +115140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115160,12 +115159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1708), 1, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, STATE(1428), 1, sym_qualified_name, STATE(2549), 1, @@ -115179,7 +115178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115198,10 +115197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, - sym_name, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1694), 1, + sym_name, ACTIONS(1733), 1, anon_sym_QMARK, ACTIONS(2832), 1, @@ -115217,7 +115216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115236,7 +115235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2667), 1, sym_name, @@ -115272,10 +115271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, - sym_name, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1694), 1, + sym_name, ACTIONS(1733), 1, anon_sym_QMARK, STATE(1428), 1, @@ -115289,7 +115288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115308,7 +115307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2667), 1, sym_name, @@ -115344,12 +115343,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1708), 1, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, STATE(1428), 1, sym_qualified_name, STATE(2549), 1, @@ -115361,7 +115360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115380,12 +115379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, + ACTIONS(1558), 1, + sym_comment, + ACTIONS(1694), 1, sym_name, - ACTIONS(1708), 1, + ACTIONS(1710), 1, anon_sym_QMARK, - ACTIONS(1712), 1, - sym_comment, STATE(1428), 1, sym_qualified_name, STATE(2549), 1, @@ -115397,7 +115396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115416,10 +115415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, - sym_name, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1694), 1, + sym_name, ACTIONS(1733), 1, anon_sym_QMARK, STATE(1428), 1, @@ -115433,7 +115432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115452,7 +115451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2667), 1, sym_name, @@ -115480,7 +115479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [46873] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2801), 4, anon_sym_BSLASH, @@ -115510,10 +115509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, - sym_name, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1694), 1, + sym_name, STATE(1428), 1, sym_qualified_name, STATE(2549), 1, @@ -115523,7 +115522,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1430), 2, sym_named_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115542,10 +115541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, - sym_name, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1694), 1, + sym_name, STATE(1428), 1, sym_qualified_name, STATE(2549), 1, @@ -115555,7 +115554,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1430), 2, sym_named_type, sym_primitive_type, - ACTIONS(1698), 13, + ACTIONS(1700), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -115570,7 +115569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, [46984] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2805), 4, anon_sym_BSLASH, @@ -115595,7 +115594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, sym_name, [47012] = 14, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2459), 1, aux_sym_function_static_declaration_token1, @@ -115662,7 +115661,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, [47105] = 11, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2463), 1, aux_sym_namespace_use_declaration_token2, @@ -115755,7 +115754,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, [47232] = 10, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2463), 1, aux_sym_namespace_use_declaration_token2, @@ -115844,7 +115843,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, [47353] = 10, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2463), 1, aux_sym_namespace_use_declaration_token2, @@ -115949,7 +115948,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, [47487] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2913), 6, aux_sym_function_static_declaration_token1, @@ -115970,7 +115969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR, [47511] = 9, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2322), 1, aux_sym_namespace_use_declaration_token2, @@ -115999,7 +115998,7 @@ static const uint16_t ts_small_parse_table[] = { [47547] = 9, ACTIONS(605), 1, anon_sym_LT_LT_LT, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2933), 1, sym_float, @@ -116062,7 +116061,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, [47625] = 9, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2844), 1, anon_sym_BSLASHu, @@ -116197,7 +116196,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [47781] = 10, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2953), 1, anon_sym_LBRACE, @@ -116223,7 +116222,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__interpolated_string_body, sym_dynamic_variable_name, [47817] = 10, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2953), 1, anon_sym_LBRACE, @@ -116321,7 +116320,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [47933] = 10, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2953), 1, anon_sym_LBRACE, @@ -116365,7 +116364,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [47989] = 10, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2979), 1, anon_sym_LBRACE, @@ -116517,7 +116516,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [48165] = 10, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2953), 1, anon_sym_LBRACE, @@ -116631,7 +116630,7 @@ static const uint16_t ts_small_parse_table[] = { [48297] = 10, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3016), 1, sym_name, @@ -116722,7 +116721,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [48408] = 9, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3028), 1, anon_sym_LBRACE, @@ -116763,7 +116762,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [48460] = 9, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3040), 1, anon_sym_LBRACE, @@ -116827,7 +116826,7 @@ static const uint16_t ts_small_parse_table[] = { [48539] = 10, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3016), 1, sym_name, @@ -116850,7 +116849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [48574] = 13, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2469), 1, aux_sym_final_modifier_token1, @@ -116880,12 +116879,12 @@ static const uint16_t ts_small_parse_table[] = { [48615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1628), 4, + ACTIONS(1630), 4, sym_encapsed_string_chars_heredoc, sym_encapsed_string_chars_after_variable_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1630), 9, + ACTIONS(1632), 9, anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_LBRACK, @@ -116913,7 +116912,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [48655] = 13, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2469), 1, aux_sym_final_modifier_token1, @@ -116941,7 +116940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_final_modifier, sym_abstract_modifier, [48696] = 9, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3028), 1, anon_sym_LBRACE, @@ -116965,7 +116964,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__interpolated_execution_operator_body, sym_dynamic_variable_name, [48729] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -116985,7 +116984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [48754] = 9, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3028), 1, anon_sym_LBRACE, @@ -117026,7 +117025,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, [48806] = 9, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3028), 1, anon_sym_LBRACE, @@ -117258,7 +117257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3124), 1, sym_name, @@ -117278,7 +117277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [49101] = 8, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3133), 1, anon_sym_AMP, @@ -117304,7 +117303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3124), 1, sym_name, @@ -117328,7 +117327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3124), 1, sym_name, @@ -117352,7 +117351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3124), 1, sym_name, @@ -117372,10 +117371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [49233] = 8, - ACTIONS(1710), 1, - anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1712), 1, + anon_sym_DOLLAR, ACTIONS(1851), 1, anon_sym_COLON_COLON, ACTIONS(2809), 1, @@ -117386,7 +117385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_variable_declaration, STATE(1900), 1, sym_variable_name, - ACTIONS(1612), 5, + ACTIONS(1614), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH_GT, @@ -117395,7 +117394,7 @@ static const uint16_t ts_small_parse_table[] = { [49262] = 6, ACTIONS(117), 1, anon_sym_LT_LT_LT, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3150), 1, sym_integer, @@ -117416,7 +117415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3124), 1, sym_name, @@ -117434,7 +117433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [49318] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1851), 1, anon_sym_COLON_COLON, @@ -117444,7 +117443,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__arrow_function_header_token1, ACTIONS(3152), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1612), 7, + ACTIONS(1614), 7, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, @@ -117453,7 +117452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [49343] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3090), 4, aux_sym_function_static_declaration_token1, @@ -117469,7 +117468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [49362] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3154), 4, aux_sym_function_static_declaration_token1, @@ -117485,7 +117484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [49381] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3158), 4, aux_sym_function_static_declaration_token1, @@ -117503,7 +117502,7 @@ static const uint16_t ts_small_parse_table[] = { [49400] = 9, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3016), 1, sym_name, @@ -117527,7 +117526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3124), 1, sym_name, @@ -117545,10 +117544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [49462] = 8, - ACTIONS(1710), 1, - anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1712), 1, + anon_sym_DOLLAR, ACTIONS(1851), 1, anon_sym_COLON_COLON, ACTIONS(2809), 1, @@ -117559,7 +117558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_variable_declaration, STATE(1900), 1, sym_variable_name, - ACTIONS(1612), 5, + ACTIONS(1614), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH_GT, @@ -117570,7 +117569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3016), 1, sym_name, @@ -117590,7 +117589,7 @@ static const uint16_t ts_small_parse_table[] = { [49522] = 6, ACTIONS(117), 1, anon_sym_LT_LT_LT, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3164), 1, sym_integer, @@ -117609,7 +117608,7 @@ static const uint16_t ts_small_parse_table[] = { [49547] = 9, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3016), 1, sym_name, @@ -117629,10 +117628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [49578] = 8, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, ACTIONS(1720), 1, anon_sym_BSLASH, ACTIONS(3168), 1, @@ -117643,7 +117642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -117654,7 +117653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3124), 1, sym_name, @@ -117672,7 +117671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [49638] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3172), 4, aux_sym_function_static_declaration_token1, @@ -117687,11 +117686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [49656] = 3, - ACTIONS(1630), 1, - anon_sym_BSLASHu, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1628), 9, + ACTIONS(1632), 1, + anon_sym_BSLASHu, + ACTIONS(1630), 9, sym_encapsed_string_chars, sym_encapsed_string_chars_after_variable, anon_sym_LBRACE, @@ -117706,7 +117705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3176), 1, sym_name, @@ -117722,7 +117721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [49702] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3180), 1, anon_sym_AMP, @@ -117754,7 +117753,7 @@ static const uint16_t ts_small_parse_table[] = { sym__new_line, anon_sym_DOLLAR, [49742] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3133), 1, anon_sym_AMP, @@ -117771,7 +117770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DOLLAR, [49764] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3193), 4, aux_sym_function_static_declaration_token1, @@ -117801,17 +117800,17 @@ static const uint16_t ts_small_parse_table[] = { sym__new_line, anon_sym_DOLLAR, [49800] = 5, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, STATE(592), 1, sym_arguments, ACTIONS(1818), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -117820,11 +117819,11 @@ static const uint16_t ts_small_parse_table[] = { [49822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 3, + ACTIONS(1654), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1654), 7, + ACTIONS(1656), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -117850,11 +117849,11 @@ static const uint16_t ts_small_parse_table[] = { [49858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1640), 3, + ACTIONS(1642), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1642), 7, + ACTIONS(1644), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -117878,10 +117877,10 @@ static const uint16_t ts_small_parse_table[] = { sym__new_line, anon_sym_DOLLAR, [49894] = 7, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, ACTIONS(3209), 1, anon_sym_COMMA, ACTIONS(3211), 1, @@ -117890,24 +117889,24 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2035), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [49920] = 5, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, STATE(592), 1, sym_arguments, - ACTIONS(1602), 3, + ACTIONS(1604), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -117918,7 +117917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3213), 1, sym_name, @@ -117936,11 +117935,11 @@ static const uint16_t ts_small_parse_table[] = { [49970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1628), 3, + ACTIONS(1630), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1630), 7, + ACTIONS(1632), 7, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -117953,7 +117952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3215), 1, sym_name, @@ -117969,7 +117968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [50016] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1851), 1, anon_sym_COLON_COLON, @@ -117977,7 +117976,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__arrow_function_header_token1, ACTIONS(3152), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1612), 7, + ACTIONS(1614), 7, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, @@ -117990,7 +117989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3217), 1, sym_name, @@ -118025,7 +118024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3219), 1, sym_name, @@ -118043,24 +118042,24 @@ static const uint16_t ts_small_parse_table[] = { [50112] = 7, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, ACTIONS(3221), 1, anon_sym_RPAREN, STATE(592), 1, sym_arguments, STATE(1948), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [50138] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3054), 1, anon_sym_BSLASHu, @@ -118078,7 +118077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [50162] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3178), 4, aux_sym_function_static_declaration_token1, @@ -118093,10 +118092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, [50180] = 7, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, ACTIONS(3209), 1, anon_sym_COMMA, ACTIONS(3229), 1, @@ -118105,7 +118104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(1969), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -118127,7 +118126,7 @@ static const uint16_t ts_small_parse_table[] = { sym__new_line, anon_sym_DOLLAR, [50224] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3235), 4, aux_sym_function_static_declaration_token1, @@ -118142,7 +118141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [50242] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3241), 4, aux_sym_function_static_declaration_token1, @@ -118157,7 +118156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOLLAR, [50260] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1769), 1, anon_sym_DOLLAR, @@ -118174,7 +118173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [50283] = 8, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -118193,16 +118192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [50310] = 5, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, STATE(592), 1, sym_arguments, ACTIONS(2555), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -118211,7 +118210,7 @@ static const uint16_t ts_small_parse_table[] = { [50331] = 7, ACTIONS(1552), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3253), 1, sym_name, @@ -118227,7 +118226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [50356] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1759), 1, anon_sym_DOLLAR, @@ -118245,7 +118244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [50381] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1759), 1, anon_sym_DOLLAR, @@ -118262,7 +118261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [50404] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1759), 1, anon_sym_DOLLAR, @@ -118281,7 +118280,7 @@ static const uint16_t ts_small_parse_table[] = { [50427] = 6, ACTIONS(609), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3269), 1, sym_name, @@ -118298,7 +118297,7 @@ static const uint16_t ts_small_parse_table[] = { [50450] = 7, ACTIONS(609), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3275), 1, sym_name, @@ -118314,7 +118313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [50475] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1769), 1, anon_sym_DOLLAR, @@ -118334,7 +118333,7 @@ static const uint16_t ts_small_parse_table[] = { [50500] = 6, ACTIONS(609), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3269), 1, sym_name, @@ -118351,7 +118350,7 @@ static const uint16_t ts_small_parse_table[] = { [50523] = 6, ACTIONS(609), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3279), 1, sym_name, @@ -118366,7 +118365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [50546] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3054), 1, anon_sym_BSLASHu, @@ -118385,7 +118384,7 @@ static const uint16_t ts_small_parse_table[] = { [50569] = 7, ACTIONS(1552), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3289), 1, sym_name, @@ -118401,7 +118400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [50594] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2801), 9, aux_sym_function_static_declaration_token1, @@ -118414,7 +118413,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, [50609] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1769), 1, anon_sym_DOLLAR, @@ -118432,7 +118431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [50634] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1769), 1, anon_sym_DOLLAR, @@ -118451,7 +118450,7 @@ static const uint16_t ts_small_parse_table[] = { [50657] = 6, ACTIONS(609), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3279), 1, sym_name, @@ -118466,7 +118465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [50680] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -118476,14 +118475,14 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [50703] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2705), 9, aux_sym_function_static_declaration_token1, @@ -118496,7 +118495,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, [50718] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2795), 9, aux_sym_function_static_declaration_token1, @@ -118509,13 +118508,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, [50733] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1851), 1, anon_sym_COLON_COLON, ACTIONS(1939), 1, anon_sym_COLON, - ACTIONS(1612), 7, + ACTIONS(1614), 7, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, @@ -118524,7 +118523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [50752] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1759), 1, anon_sym_DOLLAR, @@ -118542,7 +118541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [50777] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2809), 9, aux_sym_function_static_declaration_token1, @@ -118555,7 +118554,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, [50792] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -118565,14 +118564,14 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [50815] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1759), 1, anon_sym_DOLLAR, @@ -118589,7 +118588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [50838] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -118599,14 +118598,14 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [50861] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1759), 1, anon_sym_DOLLAR, @@ -118623,7 +118622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [50884] = 8, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -118642,7 +118641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [50911] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1759), 1, anon_sym_DOLLAR, @@ -118662,7 +118661,7 @@ static const uint16_t ts_small_parse_table[] = { [50936] = 6, ACTIONS(1546), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3309), 1, sym_name, @@ -118677,7 +118676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [50959] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -118694,7 +118693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_parent, sym_name, [50982] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1759), 1, anon_sym_DOLLAR, @@ -118711,7 +118710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [51005] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3321), 1, anon_sym_PIPE, @@ -118727,16 +118726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_parent, sym_name, [51026] = 5, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, STATE(592), 1, sym_arguments, ACTIONS(2573), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -118745,7 +118744,7 @@ static const uint16_t ts_small_parse_table[] = { [51047] = 6, ACTIONS(121), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3324), 1, sym_name, @@ -118760,7 +118759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [51070] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1759), 1, anon_sym_DOLLAR, @@ -118777,11 +118776,11 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [51093] = 3, - ACTIONS(1630), 1, - anon_sym_BSLASHu, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1628), 8, + ACTIONS(1632), 1, + anon_sym_BSLASHu, + ACTIONS(1630), 8, sym_execution_string_chars, sym_execution_string_chars_after_variable, anon_sym_LBRACE, @@ -118791,7 +118790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR, [51110] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, @@ -118801,30 +118800,30 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [51133] = 5, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, STATE(592), 1, sym_arguments, ACTIONS(3334), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [51154] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1769), 1, anon_sym_DOLLAR, @@ -118841,7 +118840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [51177] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3340), 4, aux_sym_function_static_declaration_token1, @@ -118855,23 +118854,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, [51194] = 5, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, STATE(592), 1, sym_arguments, ACTIONS(3344), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [51215] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1769), 1, anon_sym_DOLLAR, @@ -118888,23 +118887,23 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [51238] = 5, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, STATE(592), 1, sym_arguments, ACTIONS(2581), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [51259] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2805), 9, aux_sym_function_static_declaration_token1, @@ -118919,7 +118918,7 @@ static const uint16_t ts_small_parse_table[] = { [51274] = 7, ACTIONS(609), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3257), 1, sym_name, @@ -118935,17 +118934,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [51299] = 6, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, ACTIONS(1720), 1, anon_sym_BSLASH, STATE(592), 1, sym_arguments, STATE(2359), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -118954,7 +118953,7 @@ static const uint16_t ts_small_parse_table[] = { [51322] = 7, ACTIONS(1546), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3350), 1, sym_name, @@ -118972,7 +118971,7 @@ static const uint16_t ts_small_parse_table[] = { [51347] = 6, ACTIONS(1552), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3354), 1, sym_name, @@ -118987,7 +118986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [51370] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1769), 1, anon_sym_DOLLAR, @@ -119006,7 +119005,7 @@ static const uint16_t ts_small_parse_table[] = { [51393] = 6, ACTIONS(1552), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3364), 1, sym_name, @@ -119021,7 +119020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [51416] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1769), 1, anon_sym_DOLLAR, @@ -119038,7 +119037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [51439] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1769), 1, anon_sym_DOLLAR, @@ -119058,7 +119057,7 @@ static const uint16_t ts_small_parse_table[] = { [51464] = 6, ACTIONS(1546), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3372), 1, sym_name, @@ -119073,32 +119072,32 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [51487] = 5, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, STATE(592), 1, sym_arguments, ACTIONS(2583), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [51508] = 5, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, STATE(592), 1, sym_arguments, ACTIONS(3376), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, @@ -119107,7 +119106,7 @@ static const uint16_t ts_small_parse_table[] = { [51529] = 6, ACTIONS(121), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3378), 1, sym_name, @@ -119122,7 +119121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym__reserved_identifier, [51552] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3386), 1, anon_sym_PIPE, @@ -119138,7 +119137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_parent, sym_name, [51573] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3386), 1, anon_sym_PIPE, @@ -119156,7 +119155,7 @@ static const uint16_t ts_small_parse_table[] = { [51594] = 7, ACTIONS(121), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3392), 1, sym_name, @@ -119174,7 +119173,7 @@ static const uint16_t ts_small_parse_table[] = { [51619] = 7, ACTIONS(609), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3297), 1, sym_name, @@ -119190,7 +119189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [51644] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3396), 1, anon_sym_PIPE, @@ -119206,7 +119205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_parent, sym_name, [51665] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3403), 1, anon_sym_PIPE, @@ -119222,7 +119221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_parent, sym_name, [51686] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3386), 1, anon_sym_PIPE, @@ -119238,7 +119237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_parent, sym_name, [51707] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3409), 1, anon_sym_AMP, @@ -119255,10 +119254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [51731] = 9, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, ACTIONS(3413), 1, anon_sym_LBRACE, ACTIONS(3415), 1, @@ -119274,7 +119273,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2428), 1, sym_class_interface_clause, [51759] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3209), 1, anon_sym_COMMA, @@ -119282,17 +119281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2035), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [51779] = 9, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, ACTIONS(3415), 1, aux_sym_base_clause_token1, ACTIONS(3417), 1, @@ -119310,7 +119309,7 @@ static const uint16_t ts_small_parse_table[] = { [51807] = 6, ACTIONS(971), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3421), 1, aux_sym_catch_clause_token1, @@ -119326,7 +119325,7 @@ static const uint16_t ts_small_parse_table[] = { [51829] = 6, ACTIONS(979), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3425), 1, aux_sym_catch_clause_token1, @@ -119340,7 +119339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_finally_clause, aux_sym_try_statement_repeat1, [51851] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3209), 1, anon_sym_COMMA, @@ -119348,14 +119347,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1969), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [51871] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1851), 1, anon_sym_COLON_COLON, @@ -119363,17 +119362,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__arrow_function_header_token1, ACTIONS(3148), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1612), 5, + ACTIONS(1614), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [51891] = 9, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, ACTIONS(3415), 1, aux_sym_base_clause_token1, ACTIONS(3417), 1, @@ -119393,10 +119392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, - sym_name, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1694), 1, + sym_name, STATE(1428), 1, sym_qualified_name, STATE(1869), 1, @@ -119408,7 +119407,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2558), 1, sym_namespace_name_as_prefix, [51947] = 8, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -119428,23 +119427,23 @@ static const uint16_t ts_small_parse_table[] = { [51973] = 5, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3221), 1, anon_sym_RPAREN, STATE(1948), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [51993] = 9, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, ACTIONS(3413), 1, anon_sym_LBRACE, ACTIONS(3415), 1, @@ -119464,10 +119463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, - sym_name, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1694), 1, + sym_name, STATE(1428), 1, sym_qualified_name, STATE(1869), 1, @@ -119479,20 +119478,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(2558), 1, sym_namespace_name_as_prefix, [52049] = 4, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, STATE(592), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52066] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, @@ -119505,20 +119504,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52083] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(788), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52100] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3197), 1, anon_sym_BSLASHu, @@ -119530,7 +119529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [52115] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3185), 1, anon_sym_BSLASHu, @@ -119542,7 +119541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [52130] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -119560,10 +119559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(563), 1, aux_sym_namespace_definition_token1, - ACTIONS(1692), 1, - sym_name, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1694), 1, + sym_name, STATE(1428), 1, sym_qualified_name, STATE(2022), 1, @@ -119573,32 +119572,32 @@ static const uint16_t ts_small_parse_table[] = { STATE(2558), 1, sym_namespace_name_as_prefix, [52174] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3344), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52189] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(740), 1, sym_arguments, - ACTIONS(1580), 5, + ACTIONS(1582), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52206] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3205), 1, anon_sym_BSLASHu, @@ -119610,7 +119609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [52221] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3443), 1, aux_sym_enum_case_token1, @@ -119624,19 +119623,19 @@ static const uint16_t ts_small_parse_table[] = { sym_default_statement, aux_sym_switch_block_repeat1, [52240] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3334), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52255] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3231), 1, anon_sym_BSLASHu, @@ -119648,20 +119647,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [52270] = 4, - ACTIONS(1664), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1666), 1, + anon_sym_LPAREN, STATE(627), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52287] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3451), 1, anon_sym_BSLASHu, @@ -119673,7 +119672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [52302] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -119688,11 +119687,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, [52323] = 3, - ACTIONS(1630), 1, - anon_sym_BSLASHu, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1628), 6, + ACTIONS(1632), 1, + anon_sym_BSLASHu, + ACTIONS(1630), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -119700,7 +119699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [52338] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1945), 3, anon_sym_LPAREN, @@ -119712,33 +119711,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_parent, sym_name, [52353] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(892), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52370] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3168), 1, aux_sym_namespace_aliasing_clause_token1, ACTIONS(3170), 1, aux_sym_use_instead_of_clause_token1, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52387] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, @@ -119751,7 +119750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52404] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -119765,7 +119764,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_array_access_argument, sym_variable_name, [52423] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -119778,11 +119777,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [52440] = 3, - ACTIONS(1654), 1, - anon_sym_BSLASHu, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1652), 6, + ACTIONS(1656), 1, + anon_sym_BSLASHu, + ACTIONS(1654), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -119790,7 +119789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [52455] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -119805,20 +119804,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [52476] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(880), 1, sym_arguments, - ACTIONS(1580), 5, + ACTIONS(1582), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52493] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, @@ -119833,36 +119832,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [52514] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1929), 1, anon_sym_LPAREN, STATE(892), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52531] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3376), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52546] = 3, - ACTIONS(1642), 1, - anon_sym_BSLASHu, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1640), 6, + ACTIONS(1644), 1, + anon_sym_BSLASHu, + ACTIONS(1642), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -119870,20 +119869,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [52561] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(746), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52578] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, @@ -119896,20 +119895,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52595] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, STATE(788), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52612] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, @@ -119922,7 +119921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52629] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3463), 1, anon_sym_BSLASHu, @@ -119934,33 +119933,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DOLLAR, [52644] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(664), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52661] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1714), 1, anon_sym_LPAREN, STATE(664), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52678] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -119974,7 +119973,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_array_access_argument, sym_variable_name, [52697] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, @@ -119987,20 +119986,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52714] = 4, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, STATE(592), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52731] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3467), 1, anon_sym_AMP, @@ -120016,7 +120015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, [52754] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1931), 1, anon_sym_LPAREN, @@ -120029,7 +120028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52771] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, @@ -120044,20 +120043,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [52792] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1747), 1, anon_sym_LPAREN, STATE(746), 1, sym_arguments, - ACTIONS(1598), 5, + ACTIONS(1600), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, [52809] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3475), 1, sym_name, @@ -120070,7 +120069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [52827] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120087,7 +120086,7 @@ static const uint16_t ts_small_parse_table[] = { [52849] = 7, ACTIONS(987), 1, aux_sym_while_statement_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3483), 1, aux_sym_else_if_clause_token1, @@ -120100,7 +120099,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2111), 1, sym_else_if_clause, [52871] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3487), 1, aux_sym_enum_case_token1, @@ -120113,7 +120112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_default_statement, aux_sym_switch_block_repeat1, [52889] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3475), 1, sym_name, @@ -120126,7 +120125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [52907] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3493), 1, aux_sym_if_statement_token2, @@ -120141,11 +120140,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(2507), 1, sym_else_clause_2, [52929] = 3, - ACTIONS(1654), 1, - anon_sym_BSLASHu, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1652), 5, + ACTIONS(1656), 1, + anon_sym_BSLASHu, + ACTIONS(1654), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -120154,7 +120153,7 @@ static const uint16_t ts_small_parse_table[] = { [52943] = 7, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120167,7 +120166,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2339), 1, sym__return_type, [52965] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120182,7 +120181,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2346), 1, sym_class_interface_clause, [52987] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120197,7 +120196,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2348), 1, sym_class_interface_clause, [53009] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3487), 1, aux_sym_enum_case_token1, @@ -120210,7 +120209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_default_statement, aux_sym_switch_block_repeat1, [53027] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120225,7 +120224,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2216), 1, sym__return_type, [53049] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120242,7 +120241,7 @@ static const uint16_t ts_small_parse_table[] = { [53071] = 7, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120255,7 +120254,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2411), 1, sym__return_type, [53093] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120270,7 +120269,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2197), 1, sym_class_interface_clause, [53115] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120285,7 +120284,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2213), 1, sym__return_type, [53137] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3503), 1, anon_sym_BSLASHu, @@ -120296,7 +120295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR, [53151] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3433), 1, anon_sym_COMMA, @@ -120310,7 +120309,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [53171] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120325,7 +120324,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2407), 1, sym_class_interface_clause, [53193] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120340,7 +120339,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2417), 1, sym__return_type, [53215] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3487), 1, aux_sym_enum_case_token1, @@ -120353,7 +120352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_default_statement, aux_sym_switch_block_repeat1, [53233] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3475), 1, sym_name, @@ -120366,7 +120365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [53251] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3433), 1, anon_sym_COMMA, @@ -120380,18 +120379,18 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [53271] = 3, - ACTIONS(1642), 1, - anon_sym_BSLASHu, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1640), 5, + ACTIONS(1644), 1, + anon_sym_BSLASHu, + ACTIONS(1642), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, [53285] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120406,10 +120405,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2225), 1, sym_class_interface_clause, [53307] = 6, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, ACTIONS(1720), 1, anon_sym_BSLASH, STATE(2324), 1, @@ -120420,7 +120419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACK, [53327] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3205), 1, anon_sym_BSLASHu, @@ -120431,7 +120430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR, [53341] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3475), 1, sym_name, @@ -120444,7 +120443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [53359] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120459,7 +120458,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2208), 1, sym__return_type, [53381] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3231), 1, anon_sym_BSLASHu, @@ -120470,11 +120469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR, [53395] = 3, - ACTIONS(1630), 1, - anon_sym_BSLASHu, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1628), 5, + ACTIONS(1632), 1, + anon_sym_BSLASHu, + ACTIONS(1630), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, @@ -120483,7 +120482,7 @@ static const uint16_t ts_small_parse_table[] = { [53409] = 7, ACTIONS(995), 1, aux_sym_while_statement_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3511), 1, aux_sym_else_if_clause_token1, @@ -120498,7 +120497,7 @@ static const uint16_t ts_small_parse_table[] = { [53431] = 7, ACTIONS(987), 1, aux_sym_while_statement_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3517), 1, aux_sym_else_if_clause_token1, @@ -120511,7 +120510,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2111), 1, sym_else_if_clause, [53453] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120526,7 +120525,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2198), 1, sym_class_interface_clause, [53475] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3487), 1, aux_sym_enum_case_token1, @@ -120539,7 +120538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_default_statement, aux_sym_switch_block_repeat1, [53493] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3495), 1, aux_sym_else_if_clause_token1, @@ -120554,7 +120553,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2476), 1, sym_else_clause_2, [53515] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -120568,7 +120567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_class_interface_clause_token1, [53535] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3475), 1, sym_name, @@ -120581,7 +120580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [53553] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3185), 1, anon_sym_BSLASHu, @@ -120592,7 +120591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR, [53567] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3197), 1, anon_sym_BSLASHu, @@ -120603,7 +120602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR, [53581] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3487), 1, aux_sym_enum_case_token1, @@ -120618,7 +120617,7 @@ static const uint16_t ts_small_parse_table[] = { [53599] = 7, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120631,7 +120630,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2410), 1, sym__return_type, [53621] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120646,7 +120645,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2316), 1, sym_class_interface_clause, [53643] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3475), 1, sym_name, @@ -120659,7 +120658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [53661] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120676,7 +120675,7 @@ static const uint16_t ts_small_parse_table[] = { [53683] = 7, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120689,7 +120688,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2325), 1, sym__return_type, [53705] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3475), 1, sym_name, @@ -120704,7 +120703,7 @@ static const uint16_t ts_small_parse_table[] = { [53723] = 7, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120719,7 +120718,7 @@ static const uint16_t ts_small_parse_table[] = { [53745] = 7, ACTIONS(995), 1, aux_sym_while_statement_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3483), 1, aux_sym_else_if_clause_token1, @@ -120732,7 +120731,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2111), 1, sym_else_if_clause, [53767] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3495), 1, aux_sym_else_if_clause_token1, @@ -120747,7 +120746,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2479), 1, sym_else_clause_2, [53789] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120762,7 +120761,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2229), 1, sym__return_type, [53811] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3487), 1, aux_sym_enum_case_token1, @@ -120775,7 +120774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_default_statement, aux_sym_switch_block_repeat1, [53829] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120790,7 +120789,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2266), 1, sym_class_interface_clause, [53851] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, @@ -120805,7 +120804,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2429), 1, sym_class_interface_clause, [53873] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120822,7 +120821,7 @@ static const uint16_t ts_small_parse_table[] = { [53895] = 7, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120837,7 +120836,7 @@ static const uint16_t ts_small_parse_table[] = { [53917] = 7, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120850,7 +120849,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2377), 1, sym__return_type, [53939] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -120862,7 +120861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACE, [53955] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120877,7 +120876,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2211), 1, sym__return_type, [53977] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120892,7 +120891,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2379), 1, sym_class_interface_clause, [53999] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3487), 1, aux_sym_enum_case_token1, @@ -120905,7 +120904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_default_statement, aux_sym_switch_block_repeat1, [54017] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120920,7 +120919,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2424), 1, sym_class_interface_clause, [54039] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, @@ -120935,7 +120934,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2386), 1, sym_class_interface_clause, [54061] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3495), 1, aux_sym_else_if_clause_token1, @@ -120950,7 +120949,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2521), 1, sym_else_clause_2, [54083] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3487), 1, aux_sym_enum_case_token1, @@ -120963,7 +120962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_default_statement, aux_sym_switch_block_repeat1, [54101] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -120980,7 +120979,7 @@ static const uint16_t ts_small_parse_table[] = { [54123] = 7, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3477), 1, aux_sym_namespace_use_declaration_token1, @@ -120993,7 +120992,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2422), 1, sym__return_type, [54145] = 7, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -121008,7 +121007,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2416), 1, sym_class_interface_clause, [54167] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -121023,7 +121022,7 @@ static const uint16_t ts_small_parse_table[] = { [54186] = 4, ACTIONS(1132), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1130), 2, aux_sym_while_statement_token1, @@ -121032,7 +121031,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [54201] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3547), 1, sym_name, @@ -121044,7 +121043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [54218] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3156), 5, sym__automatic_semicolon, @@ -121053,7 +121052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [54229] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3092), 5, sym__automatic_semicolon, @@ -121062,7 +121061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [54240] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3555), 1, anon_sym_BSLASH, @@ -121073,7 +121072,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, [54255] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -121086,7 +121085,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2037), 1, sym_variable_name, [54274] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3559), 1, sym_name, @@ -121098,7 +121097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [54291] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3567), 1, anon_sym_BSLASH, @@ -121109,7 +121108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [54306] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3555), 1, anon_sym_BSLASH, @@ -121122,7 +121121,7 @@ static const uint16_t ts_small_parse_table[] = { [54321] = 5, ACTIONS(1546), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3570), 1, sym_name, @@ -121132,7 +121131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [54338] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3409), 1, anon_sym_AMP, @@ -121143,7 +121142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [54353] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3574), 1, anon_sym_LBRACE, @@ -121156,7 +121155,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3582), 1, anon_sym_LBRACK, [54372] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1769), 1, anon_sym_DOLLAR, @@ -121168,7 +121167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [54389] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3590), 1, anon_sym_COLON, @@ -121181,7 +121180,7 @@ static const uint16_t ts_small_parse_table[] = { [54404] = 6, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3592), 1, sym_name, @@ -121192,7 +121191,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1712), 1, sym_namespace_name, [54423] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3160), 5, sym__automatic_semicolon, @@ -121201,7 +121200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [54434] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3596), 1, anon_sym_PIPE, @@ -121212,7 +121211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [54449] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3598), 1, anon_sym_PIPE, @@ -121223,7 +121222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [54464] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1759), 1, anon_sym_DOLLAR, @@ -121237,7 +121236,7 @@ static const uint16_t ts_small_parse_table[] = { [54481] = 4, ACTIONS(1080), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1078), 2, aux_sym_while_statement_token1, @@ -121246,7 +121245,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [54496] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3574), 1, anon_sym_LBRACE, @@ -121261,7 +121260,7 @@ static const uint16_t ts_small_parse_table[] = { [54515] = 4, ACTIONS(1092), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1090), 2, aux_sym_while_statement_token1, @@ -121270,7 +121269,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [54530] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3561), 1, anon_sym_LBRACE, @@ -121284,7 +121283,7 @@ static const uint16_t ts_small_parse_table[] = { [54547] = 5, ACTIONS(1552), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3614), 1, sym_name, @@ -121294,7 +121293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [54564] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3549), 1, anon_sym_LBRACE, @@ -121306,7 +121305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [54581] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3620), 1, sym_name, @@ -121318,7 +121317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [54598] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3622), 1, anon_sym_LBRACE, @@ -121330,7 +121329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [54615] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -121343,7 +121342,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2042), 1, sym_reference_modifier, [54634] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3576), 1, anon_sym_COLON_COLON, @@ -121356,7 +121355,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3636), 1, anon_sym_LBRACK, [54653] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3640), 1, anon_sym_BSLASH, @@ -121367,7 +121366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [54668] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3643), 1, sym_name, @@ -121378,7 +121377,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, [54683] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3647), 1, anon_sym_PIPE, @@ -121389,7 +121388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, [54698] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3650), 1, anon_sym_PIPE, @@ -121400,7 +121399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, [54713] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3653), 1, anon_sym_PIPE, @@ -121411,7 +121410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, [54728] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3655), 1, sym_name, @@ -121422,7 +121421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, [54743] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -121434,7 +121433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym_variable_reference, [54760] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3663), 1, anon_sym_EQ, @@ -121445,7 +121444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, [54775] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3590), 1, anon_sym_COLON, @@ -121456,7 +121455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [54790] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3667), 1, aux_sym_catch_clause_token1, @@ -121469,7 +121468,7 @@ static const uint16_t ts_small_parse_table[] = { [54805] = 3, ACTIONS(1020), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1018), 4, aux_sym_catch_clause_token1, @@ -121477,7 +121476,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [54818] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3598), 1, anon_sym_PIPE, @@ -121488,7 +121487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [54833] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3576), 1, anon_sym_COLON_COLON, @@ -121501,7 +121500,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3677), 1, anon_sym_LBRACK, [54852] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3679), 1, anon_sym_PIPE, @@ -121512,7 +121511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [54867] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -121525,7 +121524,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2246), 1, sym_class_interface_clause, [54886] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3686), 1, anon_sym_AMP, @@ -121536,7 +121535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [54901] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3689), 1, anon_sym_PIPE, @@ -121547,7 +121546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [54916] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3692), 1, sym_name, @@ -121559,7 +121558,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, [54933] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -121574,7 +121573,7 @@ static const uint16_t ts_small_parse_table[] = { [54952] = 4, ACTIONS(1068), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1066), 2, aux_sym_while_statement_token1, @@ -121583,7 +121582,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [54967] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3702), 1, aux_sym_if_statement_token2, @@ -121596,7 +121595,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1989), 1, sym_else_if_clause_2, [54986] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3455), 1, aux_sym_namespace_aliasing_clause_token1, @@ -121609,7 +121608,7 @@ static const uint16_t ts_small_parse_table[] = { [55001] = 3, ACTIONS(1036), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1034), 4, aux_sym_catch_clause_token1, @@ -121619,7 +121618,7 @@ static const uint16_t ts_small_parse_table[] = { [55014] = 5, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3711), 1, anon_sym_BSLASH, @@ -121629,7 +121628,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55031] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3713), 1, anon_sym_BSLASH, @@ -121640,7 +121639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [55046] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -121653,7 +121652,7 @@ static const uint16_t ts_small_parse_table[] = { [55061] = 4, ACTIONS(1074), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1072), 2, aux_sym_while_statement_token1, @@ -121664,7 +121663,7 @@ static const uint16_t ts_small_parse_table[] = { [55076] = 4, ACTIONS(1086), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1084), 2, aux_sym_while_statement_token1, @@ -121673,7 +121672,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55091] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -121687,7 +121686,7 @@ static const uint16_t ts_small_parse_table[] = { [55108] = 4, ACTIONS(1150), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1148), 2, aux_sym_while_statement_token1, @@ -121696,7 +121695,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55123] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3598), 1, anon_sym_PIPE, @@ -121707,7 +121706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, [55138] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3421), 1, aux_sym_catch_clause_token1, @@ -121718,7 +121717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_finally_clause, aux_sym_try_statement_repeat1, [55153] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3576), 1, anon_sym_COLON_COLON, @@ -121733,7 +121732,7 @@ static const uint16_t ts_small_parse_table[] = { [55172] = 4, ACTIONS(1138), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1136), 2, aux_sym_while_statement_token1, @@ -121742,7 +121741,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55187] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3576), 1, anon_sym_COLON_COLON, @@ -121755,7 +121754,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3740), 1, anon_sym_LBRACK, [55206] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -121768,7 +121767,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2344), 1, sym_class_interface_clause, [55225] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3576), 1, anon_sym_COLON_COLON, @@ -121783,7 +121782,7 @@ static const uint16_t ts_small_parse_table[] = { [55244] = 4, ACTIONS(1040), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1038), 2, aux_sym_while_statement_token1, @@ -121792,7 +121791,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55259] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3576), 1, anon_sym_COLON_COLON, @@ -121807,7 +121806,7 @@ static const uint16_t ts_small_parse_table[] = { [55278] = 4, ACTIONS(1116), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1114), 2, aux_sym_while_statement_token1, @@ -121816,7 +121815,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55293] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3692), 1, sym_name, @@ -121830,7 +121829,7 @@ static const uint16_t ts_small_parse_table[] = { [55310] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3711), 1, anon_sym_BSLASH, @@ -121840,7 +121839,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55327] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3574), 1, anon_sym_LBRACE, @@ -121853,7 +121852,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3764), 1, anon_sym_QMARK_DASH_GT, [55346] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3576), 1, anon_sym_COLON_COLON, @@ -121868,7 +121867,7 @@ static const uint16_t ts_small_parse_table[] = { [55365] = 5, ACTIONS(121), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3770), 1, sym_name, @@ -121878,7 +121877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, [55382] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3576), 1, anon_sym_COLON_COLON, @@ -121893,7 +121892,7 @@ static const uint16_t ts_small_parse_table[] = { [55401] = 5, ACTIONS(609), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3778), 1, sym_name, @@ -121907,7 +121906,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_while_statement_token1, ACTIONS(1013), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3782), 1, aux_sym_else_if_clause_token1, @@ -121918,7 +121917,7 @@ static const uint16_t ts_small_parse_table[] = { [55437] = 6, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3592), 1, sym_name, @@ -121929,7 +121928,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2176), 1, sym_compound_statement, [55456] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -121942,7 +121941,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2194), 1, sym_class_interface_clause, [55475] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, @@ -121957,7 +121956,7 @@ static const uint16_t ts_small_parse_table[] = { [55494] = 4, ACTIONS(1144), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1142), 2, aux_sym_while_statement_token1, @@ -121968,7 +121967,7 @@ static const uint16_t ts_small_parse_table[] = { [55509] = 4, ACTIONS(1104), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1102), 2, aux_sym_while_statement_token1, @@ -121977,7 +121976,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55524] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3793), 1, anon_sym_PIPE, @@ -121988,7 +121987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, [55539] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3653), 1, anon_sym_PIPE, @@ -122001,7 +122000,7 @@ static const uint16_t ts_small_parse_table[] = { [55554] = 3, ACTIONS(1032), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1030), 4, aux_sym_catch_clause_token1, @@ -122011,7 +122010,7 @@ static const uint16_t ts_small_parse_table[] = { [55567] = 4, ACTIONS(1122), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1120), 2, aux_sym_while_statement_token1, @@ -122020,7 +122019,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55582] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3797), 1, anon_sym_BSLASH, @@ -122033,7 +122032,7 @@ static const uint16_t ts_small_parse_table[] = { [55597] = 4, ACTIONS(1110), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1108), 2, aux_sym_while_statement_token1, @@ -122042,7 +122041,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55612] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3802), 1, anon_sym_COMMA, @@ -122055,7 +122054,7 @@ static const uint16_t ts_small_parse_table[] = { [55627] = 4, ACTIONS(1098), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1096), 2, aux_sym_while_statement_token1, @@ -122066,7 +122065,7 @@ static const uint16_t ts_small_parse_table[] = { [55642] = 4, ACTIONS(1046), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1044), 2, aux_sym_while_statement_token1, @@ -122077,7 +122076,7 @@ static const uint16_t ts_small_parse_table[] = { [55657] = 4, ACTIONS(1058), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1056), 2, aux_sym_while_statement_token1, @@ -122086,7 +122085,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55672] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3653), 1, anon_sym_PIPE, @@ -122099,7 +122098,7 @@ static const uint16_t ts_small_parse_table[] = { [55687] = 4, ACTIONS(1052), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1050), 2, aux_sym_while_statement_token1, @@ -122108,7 +122107,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55702] = 6, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -122121,7 +122120,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2249), 1, sym_reference_modifier, [55721] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122131,7 +122130,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55735] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -122142,7 +122141,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2409), 1, sym_class_interface_clause, [55751] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3817), 4, aux_sym_namespace_use_declaration_token1, @@ -122150,7 +122149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ_GT, [55761] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -122161,7 +122160,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2224), 1, sym_class_interface_clause, [55777] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, @@ -122172,7 +122171,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2221), 1, sym__return_type, [55793] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3821), 1, anon_sym_COMMA, @@ -122182,7 +122181,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55807] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122192,7 +122191,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55821] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3828), 1, anon_sym_COMMA, @@ -122202,7 +122201,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55835] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122212,7 +122211,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55849] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3833), 1, anon_sym_SEMI, @@ -122223,7 +122222,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1379), 1, sym_compound_statement, [55865] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -122234,15 +122233,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(2192), 1, sym_class_interface_clause, [55881] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1690), 4, + ACTIONS(1692), 4, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, [55891] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122252,7 +122251,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55905] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3843), 1, anon_sym_COMMA, @@ -122262,7 +122261,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55919] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3845), 4, anon_sym_COMMA, @@ -122270,7 +122269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, [55929] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, @@ -122281,7 +122280,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2231), 1, sym__return_type, [55945] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3537), 4, sym__automatic_semicolon, @@ -122289,7 +122288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACE, [55955] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, @@ -122300,7 +122299,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2261), 1, sym__return_type, [55971] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122310,7 +122309,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55985] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122320,7 +122319,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [55999] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122330,7 +122329,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56013] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3817), 4, sym__automatic_semicolon, @@ -122338,7 +122337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, [56023] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -122348,7 +122347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym_variable_reference, [56037] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, @@ -122359,7 +122358,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2329), 1, sym__return_type, [56053] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3243), 4, sym__automatic_semicolon, @@ -122367,7 +122366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [56063] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3853), 4, sym__automatic_semicolon, @@ -122375,7 +122374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, [56073] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3853), 4, aux_sym_namespace_use_declaration_token1, @@ -122383,7 +122382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ_GT, [56083] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3855), 1, anon_sym_AMP, @@ -122393,7 +122392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, [56097] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122403,7 +122402,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56111] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122413,7 +122412,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56125] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122423,7 +122422,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56139] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122433,7 +122432,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56153] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122443,7 +122442,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56167] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2427), 1, anon_sym_COLON, @@ -122454,7 +122453,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2467), 1, sym_namespace_name, [56183] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -122465,7 +122464,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2425), 1, sym_reference_modifier, [56199] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3527), 1, anon_sym_COMMA, @@ -122475,7 +122474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_class_interface_clause_token1, [56213] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -122486,7 +122485,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2420), 1, sym_class_interface_clause, [56229] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122496,7 +122495,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56243] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3638), 4, anon_sym_COMMA, @@ -122504,7 +122503,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, [56253] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122514,7 +122513,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56267] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3872), 1, aux_sym_namespace_aliasing_clause_token1, @@ -122524,7 +122523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, [56281] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122534,7 +122533,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56295] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3878), 1, anon_sym_COMMA, @@ -122544,7 +122543,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56309] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -122555,7 +122554,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2418), 1, sym_class_interface_clause, [56325] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122565,7 +122564,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56339] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -122576,7 +122575,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2293), 1, sym_class_interface_clause, [56355] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -122587,7 +122586,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2304), 1, sym_reference_modifier, [56371] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -122598,7 +122597,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2348), 1, sym_class_interface_clause, [56387] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3883), 4, aux_sym_namespace_use_declaration_token1, @@ -122606,7 +122605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ_GT, [56397] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -122617,7 +122616,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2350), 1, sym_class_interface_clause, [56413] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3843), 1, anon_sym_COMMA, @@ -122627,7 +122626,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56427] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3638), 4, sym__automatic_semicolon, @@ -122635,7 +122634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, anon_sym_LBRACE, [56437] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(2539), 1, sym_declare_directive, @@ -122644,7 +122643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_encoding, anon_sym_strict_types, [56449] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -122655,7 +122654,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2288), 1, sym_reference_modifier, [56465] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3070), 1, aux_sym_function_static_declaration_token1, @@ -122666,7 +122665,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2470), 1, sym_static_modifier, [56481] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3891), 1, anon_sym_COMMA, @@ -122687,7 +122686,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1864), 1, aux_sym_string_repeat1, [56511] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3901), 1, anon_sym_COMMA, @@ -122697,7 +122696,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56525] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3905), 1, anon_sym_COMMA, @@ -122707,7 +122706,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56539] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -122729,7 +122728,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1842), 1, aux_sym_string_repeat1, [56571] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(2582), 1, sym_declare_directive, @@ -122738,7 +122737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_encoding, anon_sym_strict_types, [56583] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -122748,7 +122747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, sym_variable_reference, [56597] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -122759,7 +122758,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2331), 1, sym_reference_modifier, [56613] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -122770,7 +122769,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2295), 1, sym_class_interface_clause, [56629] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3913), 1, anon_sym_AMP, @@ -122782,7 +122781,7 @@ static const uint16_t ts_small_parse_table[] = { [56643] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -122791,7 +122790,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2307), 1, sym__return_type, [56659] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -122812,7 +122811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, sym__new_line, [56689] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -122823,7 +122822,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2226), 1, sym_reference_modifier, [56705] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3923), 1, anon_sym_PIPE, @@ -122833,7 +122832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DOLLAR, [56719] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -122844,7 +122843,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2317), 1, sym_class_interface_clause, [56735] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3901), 1, anon_sym_COMMA, @@ -122854,7 +122853,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56749] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3891), 1, anon_sym_COMMA, @@ -122864,7 +122863,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56763] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3905), 1, anon_sym_COMMA, @@ -122874,7 +122873,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56777] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3843), 1, anon_sym_COMMA, @@ -122884,7 +122883,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56791] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -122895,7 +122894,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2318), 1, sym_class_interface_clause, [56807] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3936), 1, anon_sym_COMMA, @@ -122907,7 +122906,7 @@ static const uint16_t ts_small_parse_table[] = { [56821] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -122916,7 +122915,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2320), 1, sym__return_type, [56837] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -122928,7 +122927,7 @@ static const uint16_t ts_small_parse_table[] = { [56851] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -122937,7 +122936,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2322), 1, sym__return_type, [56867] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -122948,7 +122947,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2205), 1, sym_reference_modifier, [56883] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, @@ -122959,7 +122958,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2341), 1, sym_base_clause, [56899] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3905), 1, anon_sym_COMMA, @@ -122969,7 +122968,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56913] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3905), 1, anon_sym_COMMA, @@ -122979,7 +122978,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [56927] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -122990,7 +122989,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2347), 1, sym_reference_modifier, [56943] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -123011,7 +123010,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1851), 1, aux_sym_string_repeat1, [56973] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -123022,7 +123021,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2326), 1, sym_class_interface_clause, [56989] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3195), 4, sym__automatic_semicolon, @@ -123030,7 +123029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [56999] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3872), 1, aux_sym_namespace_aliasing_clause_token1, @@ -123040,7 +123039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, [57013] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, @@ -123051,17 +123050,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(2219), 1, sym__return_type, [57029] = 4, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1576), 1, + anon_sym_LPAREN, STATE(2324), 1, sym_arguments, ACTIONS(3509), 2, anon_sym_COMMA, anon_sym_RBRACK, [57043] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3174), 4, sym__automatic_semicolon, @@ -123069,7 +123068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [57053] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3835), 1, anon_sym_LBRACE, @@ -123080,7 +123079,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1374), 1, sym_compound_statement, [57069] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, @@ -123102,7 +123101,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1851), 1, aux_sym_string_repeat1, [57101] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -123113,7 +123112,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2266), 1, sym_class_interface_clause, [57117] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3969), 1, anon_sym_COMMA, @@ -123123,7 +123122,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57131] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3905), 1, anon_sym_COMMA, @@ -123133,7 +123132,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57145] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3835), 1, anon_sym_LBRACE, @@ -123144,7 +123143,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1363), 1, sym_compound_statement, [57161] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3883), 4, sym__automatic_semicolon, @@ -123152,7 +123151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, [57171] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -123165,7 +123164,7 @@ static const uint16_t ts_small_parse_table[] = { [57187] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -123174,7 +123173,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2367), 1, sym__return_type, [57203] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3527), 1, anon_sym_COMMA, @@ -123184,7 +123183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_class_interface_clause_token1, [57217] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -123195,7 +123194,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2297), 1, sym_reference_modifier, [57233] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -123206,7 +123205,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2374), 1, sym_class_interface_clause, [57249] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, @@ -123219,7 +123218,7 @@ static const uint16_t ts_small_parse_table[] = { [57265] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -123239,7 +123238,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1851), 1, aux_sym_string_repeat1, [57297] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3982), 4, sym__automatic_semicolon, @@ -123247,7 +123246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, [57307] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -123257,7 +123256,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57321] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -123267,7 +123266,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57335] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3905), 1, anon_sym_COMMA, @@ -123277,7 +123276,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57349] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3992), 1, anon_sym_PIPE, @@ -123287,7 +123286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DOLLAR, [57363] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -123298,7 +123297,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2380), 1, sym_class_interface_clause, [57379] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3835), 1, anon_sym_LBRACE, @@ -123309,7 +123308,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1369), 1, sym_compound_statement, [57395] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, @@ -123320,7 +123319,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2415), 1, sym__return_type, [57411] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(2466), 1, sym_declare_directive, @@ -123329,7 +123328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_encoding, anon_sym_strict_types, [57423] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3998), 4, anon_sym_COMMA, @@ -123347,7 +123346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, sym__new_line, [57447] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, @@ -123358,7 +123357,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2386), 1, sym_class_interface_clause, [57463] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3901), 1, anon_sym_COMMA, @@ -123368,7 +123367,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57477] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3891), 1, anon_sym_COMMA, @@ -123378,7 +123377,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57491] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3843), 1, anon_sym_COMMA, @@ -123388,7 +123387,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57505] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3905), 1, anon_sym_COMMA, @@ -123398,7 +123397,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57519] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3843), 1, anon_sym_COMMA, @@ -123408,7 +123407,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57533] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3905), 1, anon_sym_COMMA, @@ -123418,7 +123417,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57547] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, @@ -123429,7 +123428,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2387), 1, sym_class_interface_clause, [57563] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(2576), 1, sym_declare_directive, @@ -123438,7 +123437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_encoding, anon_sym_strict_types, [57575] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, @@ -123449,7 +123448,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2414), 1, sym__return_type, [57591] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3183), 4, sym__automatic_semicolon, @@ -123459,7 +123458,7 @@ static const uint16_t ts_small_parse_table[] = { [57601] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -123468,7 +123467,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2445), 1, sym__return_type, [57617] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3080), 1, aux_sym__arrow_function_header_token1, @@ -123479,7 +123478,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2470), 1, sym_static_modifier, [57633] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -123489,7 +123488,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57647] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -123501,7 +123500,7 @@ static const uint16_t ts_small_parse_table[] = { [57661] = 5, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4020), 1, anon_sym_EQ, @@ -123510,7 +123509,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2129), 1, aux_sym__list_destructing_repeat1, [57677] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4024), 1, anon_sym_COMMA, @@ -123520,7 +123519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_class_interface_clause_token1, [57691] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -123531,7 +123530,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2249), 1, sym_reference_modifier, [57707] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -123542,7 +123541,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2398), 1, sym_class_interface_clause, [57723] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -123553,7 +123552,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2444), 1, sym_class_interface_clause, [57739] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -123564,7 +123563,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2440), 1, sym_class_interface_clause, [57755] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3992), 1, anon_sym_PIPE, @@ -123574,7 +123573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DOLLAR, [57769] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3901), 1, anon_sym_COMMA, @@ -123584,7 +123583,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57783] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3238), 4, sym__automatic_semicolon, @@ -123592,7 +123591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, [57793] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4033), 1, anon_sym_EQ, @@ -123601,7 +123600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, [57805] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3891), 1, anon_sym_COMMA, @@ -123611,7 +123610,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57819] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1723), 1, anon_sym_AMP, @@ -123622,7 +123621,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2443), 1, sym_reference_modifier, [57835] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3843), 1, anon_sym_COMMA, @@ -123632,7 +123631,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57849] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, @@ -123643,7 +123642,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2429), 1, sym_class_interface_clause, [57865] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3417), 1, aux_sym_class_interface_clause_token1, @@ -123654,7 +123653,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2413), 1, sym_class_interface_clause, [57881] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -123664,7 +123663,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57895] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3982), 4, aux_sym_namespace_use_declaration_token1, @@ -123674,7 +123673,7 @@ static const uint16_t ts_small_parse_table[] = { [57905] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -123683,7 +123682,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2405), 1, sym__return_type, [57921] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3843), 1, anon_sym_COMMA, @@ -123693,7 +123692,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57935] = 5, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3415), 1, aux_sym_base_clause_token1, @@ -123704,7 +123703,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2232), 1, sym_base_clause, [57951] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3815), 1, anon_sym_COMMA, @@ -123714,7 +123713,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, [57965] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3843), 1, anon_sym_COMMA, @@ -123726,7 +123725,7 @@ static const uint16_t ts_small_parse_table[] = { [57979] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -123735,7 +123734,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2281), 1, sym__return_type, [57995] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4049), 1, anon_sym_COMMA, @@ -123746,7 +123745,7 @@ static const uint16_t ts_small_parse_table[] = { [58008] = 3, ACTIONS(1504), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1502), 2, aux_sym_while_statement_token1, @@ -123754,13 +123753,13 @@ static const uint16_t ts_small_parse_table[] = { [58019] = 3, ACTIONS(1440), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1438), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [58030] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4055), 1, anon_sym_EQ, @@ -123768,7 +123767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, [58041] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4057), 1, anon_sym_COMMA, @@ -123777,14 +123776,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(1968), 1, aux_sym_arguments_repeat1, [58054] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3876), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, [58063] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -123795,7 +123794,7 @@ static const uint16_t ts_small_parse_table[] = { [58076] = 3, ACTIONS(1464), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1462), 2, aux_sym_while_statement_token1, @@ -123803,7 +123802,7 @@ static const uint16_t ts_small_parse_table[] = { [58087] = 3, ACTIONS(1488), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1486), 2, aux_sym_while_statement_token1, @@ -123811,13 +123810,13 @@ static const uint16_t ts_small_parse_table[] = { [58098] = 3, ACTIONS(1508), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1506), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [58109] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4063), 1, anon_sym_COMMA, @@ -123828,13 +123827,13 @@ static const uint16_t ts_small_parse_table[] = { [58122] = 3, ACTIONS(1524), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1522), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [58133] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -123845,20 +123844,20 @@ static const uint16_t ts_small_parse_table[] = { [58146] = 3, ACTIONS(1328), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1326), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [58157] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4070), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, [58166] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2595), 1, anon_sym_EQ_GT, @@ -123867,14 +123866,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(1929), 1, aux_sym_match_condition_list_repeat1, [58179] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4075), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, [58188] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4077), 1, sym_name, @@ -123883,7 +123882,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2227), 1, sym_namespace_use_group, [58201] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3126), 1, anon_sym_RBRACK, @@ -123894,14 +123893,14 @@ static const uint16_t ts_small_parse_table[] = { [58214] = 4, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1672), 1, - anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1674), 1, + anon_sym_RPAREN, STATE(2130), 1, aux_sym__list_destructing_repeat1, [58227] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1749), 1, anon_sym_RPAREN, @@ -123912,7 +123911,7 @@ static const uint16_t ts_small_parse_table[] = { [58240] = 3, ACTIONS(1416), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1414), 2, aux_sym_while_statement_token1, @@ -123920,7 +123919,7 @@ static const uint16_t ts_small_parse_table[] = { [58251] = 4, ACTIONS(835), 1, anon_sym_RBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4085), 1, anon_sym_COMMA, @@ -123929,7 +123928,7 @@ static const uint16_t ts_small_parse_table[] = { [58264] = 4, ACTIONS(845), 1, anon_sym_RBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4087), 1, anon_sym_COMMA, @@ -123938,14 +123937,14 @@ static const uint16_t ts_small_parse_table[] = { [58277] = 4, ACTIONS(943), 1, anon_sym_EQ_GT, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4089), 1, anon_sym_COMMA, STATE(1929), 1, aux_sym_match_condition_list_repeat1, [58290] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4079), 1, anon_sym_LBRACE, @@ -123954,7 +123953,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2227), 1, sym_namespace_use_group, [58303] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3594), 1, anon_sym_BSLASH, @@ -123963,7 +123962,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2467), 1, sym_namespace_name, [58316] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4093), 1, anon_sym_COMMA, @@ -123972,7 +123971,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1944), 1, aux_sym_array_creation_expression_repeat1, [58329] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -123983,23 +123982,23 @@ static const uint16_t ts_small_parse_table[] = { [58342] = 4, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1672), 1, - anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1674), 1, + anon_sym_RPAREN, STATE(2099), 1, aux_sym__list_destructing_repeat1, [58355] = 4, ACTIONS(831), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4099), 1, anon_sym_COMMA, STATE(2120), 1, aux_sym_array_creation_expression_repeat1, [58368] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4103), 1, anon_sym_EQ, @@ -124009,13 +124008,13 @@ static const uint16_t ts_small_parse_table[] = { [58379] = 3, ACTIONS(1448), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1446), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [58390] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4105), 3, anon_sym_COMMA, @@ -124024,14 +124023,14 @@ static const uint16_t ts_small_parse_table[] = { [58399] = 4, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4107), 1, anon_sym_RPAREN, STATE(2130), 1, aux_sym__list_destructing_repeat1, [58412] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4109), 3, anon_sym_COMMA, @@ -124040,7 +124039,7 @@ static const uint16_t ts_small_parse_table[] = { [58421] = 3, ACTIONS(1228), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1226), 2, aux_sym_while_statement_token1, @@ -124048,14 +124047,14 @@ static const uint16_t ts_small_parse_table[] = { [58432] = 4, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4111), 1, anon_sym_RPAREN, STATE(2130), 1, aux_sym__list_destructing_repeat1, [58445] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4113), 1, anon_sym_COMMA, @@ -124064,14 +124063,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(1999), 1, aux_sym_match_block_repeat1, [58458] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3537), 3, anon_sym_COMMA, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, [58467] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -124082,7 +124081,7 @@ static const uint16_t ts_small_parse_table[] = { [58480] = 3, ACTIONS(1496), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1494), 2, aux_sym_while_statement_token1, @@ -124090,7 +124089,7 @@ static const uint16_t ts_small_parse_table[] = { [58491] = 3, ACTIONS(1512), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1510), 2, aux_sym_while_statement_token1, @@ -124098,14 +124097,14 @@ static const uint16_t ts_small_parse_table[] = { [58502] = 4, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4119), 1, anon_sym_RPAREN, STATE(1951), 1, aux_sym__list_destructing_repeat1, [58515] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4121), 1, anon_sym_COMMA, @@ -124114,16 +124113,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(1934), 1, aux_sym_formal_parameters_repeat1, [58528] = 4, - ACTIONS(1710), 1, - anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1712), 1, + anon_sym_DOLLAR, STATE(1696), 1, sym_variable_name, STATE(2015), 1, sym_property_element, [58541] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4127), 1, anon_sym_EQ, @@ -124131,14 +124130,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, [58552] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4129), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, [58561] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4131), 3, sym__automatic_semicolon, @@ -124147,13 +124146,13 @@ static const uint16_t ts_small_parse_table[] = { [58570] = 3, ACTIONS(1344), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1342), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [58581] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -124180,10 +124179,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2382), 1, sym_heredoc_body, [58620] = 4, - ACTIONS(1710), 1, - anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1712), 1, + anon_sym_DOLLAR, STATE(1696), 1, sym_variable_name, STATE(1838), 1, @@ -124191,14 +124190,14 @@ static const uint16_t ts_small_parse_table[] = { [58633] = 4, ACTIONS(779), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4143), 1, anon_sym_COMMA, STATE(2108), 1, aux_sym_arguments_repeat1, [58646] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3209), 1, anon_sym_COMMA, @@ -124207,7 +124206,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1975), 1, aux_sym_unset_statement_repeat1, [58659] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4147), 1, anon_sym_COMMA, @@ -124216,7 +124215,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1985), 1, aux_sym__array_destructing_repeat1, [58672] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4151), 3, sym__automatic_semicolon, @@ -124225,14 +124224,14 @@ static const uint16_t ts_small_parse_table[] = { [58681] = 4, ACTIONS(833), 1, anon_sym_RBRACK, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4153), 1, anon_sym_COMMA, STATE(2141), 1, aux_sym_array_creation_expression_repeat1, [58694] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3720), 1, anon_sym_RPAREN, @@ -124250,7 +124249,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2371), 1, sym_heredoc_body, [58720] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3344), 1, anon_sym_RPAREN, @@ -124261,7 +124260,7 @@ static const uint16_t ts_small_parse_table[] = { [58733] = 3, ACTIONS(1384), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1382), 2, aux_sym_while_statement_token1, @@ -124269,7 +124268,7 @@ static const uint16_t ts_small_parse_table[] = { [58744] = 3, ACTIONS(1368), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1366), 2, aux_sym_while_statement_token1, @@ -124277,13 +124276,13 @@ static const uint16_t ts_small_parse_table[] = { [58755] = 3, ACTIONS(1356), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1354), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [58766] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3527), 1, anon_sym_COMMA, @@ -124294,14 +124293,14 @@ static const uint16_t ts_small_parse_table[] = { [58779] = 4, ACTIONS(827), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4164), 1, anon_sym_COMMA, STATE(2120), 1, aux_sym_array_creation_expression_repeat1, [58792] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4166), 1, anon_sym_COMMA, @@ -124312,13 +124311,13 @@ static const uint16_t ts_small_parse_table[] = { [58805] = 3, ACTIONS(1232), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1230), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [58816] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4172), 1, anon_sym_EQ, @@ -124328,13 +124327,13 @@ static const uint16_t ts_small_parse_table[] = { [58827] = 3, ACTIONS(1336), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1334), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [58838] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4174), 1, anon_sym_COMMA, @@ -124345,20 +124344,20 @@ static const uint16_t ts_small_parse_table[] = { [58851] = 3, ACTIONS(1480), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1478), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [58862] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3819), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, [58871] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4181), 1, anon_sym_EQ, @@ -124366,7 +124365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, [58882] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4185), 1, aux_sym_else_clause_token1, @@ -124374,7 +124373,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, [58893] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4187), 1, anon_sym_COMMA, @@ -124383,7 +124382,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1990), 1, aux_sym_namespace_use_group_repeat1, [58906] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4192), 1, anon_sym_LBRACE, @@ -124392,16 +124391,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(513), 1, sym_switch_block, [58919] = 4, - ACTIONS(1710), 1, - anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1712), 1, + anon_sym_DOLLAR, STATE(1696), 1, sym_variable_name, STATE(1882), 1, sym_property_element, [58932] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4198), 1, anon_sym_EQ, @@ -124411,20 +124410,20 @@ static const uint16_t ts_small_parse_table[] = { [58943] = 3, ACTIONS(1408), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1406), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [58954] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4200), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, [58963] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1771), 1, anon_sym_RPAREN, @@ -124433,7 +124432,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2060), 1, aux_sym_formal_parameters_repeat1, [58976] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4204), 1, anon_sym_COMMA, @@ -124442,7 +124441,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1997), 1, aux_sym_anonymous_function_use_clause_repeat1, [58989] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4209), 1, anon_sym_LBRACE, @@ -124453,14 +124452,14 @@ static const uint16_t ts_small_parse_table[] = { [59002] = 4, ACTIONS(861), 1, anon_sym_RBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4213), 1, anon_sym_COMMA, STATE(1924), 1, aux_sym_match_block_repeat1, [59015] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4020), 1, anon_sym_EQ, @@ -124468,7 +124467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACK, [59026] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4147), 1, anon_sym_COMMA, @@ -124477,7 +124476,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1970), 1, aux_sym__array_destructing_repeat1, [59039] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4219), 1, anon_sym_COMMA, @@ -124486,7 +124485,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1972), 1, aux_sym_array_creation_expression_repeat1, [59052] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3146), 1, anon_sym_RBRACK, @@ -124495,7 +124494,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2144), 1, aux_sym_attribute_group_repeat1, [59065] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4147), 1, anon_sym_COMMA, @@ -124504,7 +124503,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1985), 1, aux_sym__array_destructing_repeat1, [59078] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3967), 3, sym__automatic_semicolon, @@ -124513,13 +124512,13 @@ static const uint16_t ts_small_parse_table[] = { [59087] = 3, ACTIONS(1264), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1262), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59098] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4225), 1, anon_sym_COMMA, @@ -124530,14 +124529,14 @@ static const uint16_t ts_small_parse_table[] = { [59111] = 4, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3221), 1, anon_sym_RPAREN, STATE(1948), 1, aux_sym__list_destructing_repeat1, [59124] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4231), 1, anon_sym_EQ, @@ -124547,7 +124546,7 @@ static const uint16_t ts_small_parse_table[] = { [59135] = 3, ACTIONS(1324), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1322), 2, aux_sym_while_statement_token1, @@ -124555,13 +124554,13 @@ static const uint16_t ts_small_parse_table[] = { [59146] = 3, ACTIONS(1200), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1198), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59157] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4233), 1, anon_sym_COMMA, @@ -124572,7 +124571,7 @@ static const uint16_t ts_small_parse_table[] = { [59170] = 3, ACTIONS(1156), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1154), 2, aux_sym_while_statement_token1, @@ -124580,13 +124579,13 @@ static const uint16_t ts_small_parse_table[] = { [59181] = 3, ACTIONS(1320), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1318), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59192] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3934), 3, sym__automatic_semicolon, @@ -124595,7 +124594,7 @@ static const uint16_t ts_small_parse_table[] = { [59201] = 3, ACTIONS(1180), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1178), 2, aux_sym_while_statement_token1, @@ -124603,13 +124602,13 @@ static const uint16_t ts_small_parse_table[] = { [59212] = 3, ACTIONS(1316), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1314), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59223] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4237), 3, anon_sym_COMMA, @@ -124618,7 +124617,7 @@ static const uint16_t ts_small_parse_table[] = { [59232] = 3, ACTIONS(1308), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1306), 2, aux_sym_while_statement_token1, @@ -124626,7 +124625,7 @@ static const uint16_t ts_small_parse_table[] = { [59243] = 3, ACTIONS(1304), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1302), 2, aux_sym_while_statement_token1, @@ -124641,14 +124640,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(2278), 1, sym_heredoc_body, [59267] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3921), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, [59276] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3078), 1, aux_sym_readonly_modifier_token1, @@ -124668,13 +124667,13 @@ static const uint16_t ts_small_parse_table[] = { [59302] = 3, ACTIONS(1172), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1170), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59313] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4247), 1, anon_sym_COMMA, @@ -124683,14 +124682,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(1973), 1, aux_sym_anonymous_function_use_clause_repeat1, [59326] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4251), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, [59335] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4253), 1, anon_sym_COMMA, @@ -124699,7 +124698,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1990), 1, aux_sym_namespace_use_group_repeat1, [59348] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -124710,13 +124709,13 @@ static const uint16_t ts_small_parse_table[] = { [59361] = 3, ACTIONS(1376), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1374), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59372] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -124725,7 +124724,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2057), 1, sym_variable_name, [59385] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4077), 1, sym_name, @@ -124734,7 +124733,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2366), 1, sym_namespace_use_group, [59398] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -124743,7 +124742,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2655), 1, sym__return_type, [59411] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3078), 1, aux_sym_readonly_modifier_token1, @@ -124752,7 +124751,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2611), 1, sym_readonly_modifier, [59424] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3209), 1, anon_sym_COMMA, @@ -124761,7 +124760,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1975), 1, aux_sym_unset_statement_repeat1, [59437] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4269), 1, anon_sym_EQ, @@ -124769,7 +124768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, [59448] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4273), 1, anon_sym_EQ, @@ -124779,7 +124778,7 @@ static const uint16_t ts_small_parse_table[] = { [59459] = 3, ACTIONS(1164), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1162), 2, aux_sym_while_statement_token1, @@ -124787,13 +124786,13 @@ static const uint16_t ts_small_parse_table[] = { [59470] = 3, ACTIONS(1352), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1350), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59481] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4277), 1, anon_sym_EQ, @@ -124803,13 +124802,13 @@ static const uint16_t ts_small_parse_table[] = { [59492] = 3, ACTIONS(1164), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1162), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59503] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -124818,7 +124817,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2009), 1, sym_variable_name, [59516] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4077), 1, sym_name, @@ -124827,7 +124826,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2408), 1, sym_namespace_use_group, [59529] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4079), 1, anon_sym_LBRACE, @@ -124838,13 +124837,13 @@ static const uint16_t ts_small_parse_table[] = { [59542] = 3, ACTIONS(1260), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1258), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59553] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4283), 1, anon_sym_EQ, @@ -124852,7 +124851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, [59564] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4285), 1, anon_sym_SQUOTE, @@ -124861,7 +124860,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4289), 1, sym_heredoc_start, [59577] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4293), 1, anon_sym_EQ, @@ -124869,7 +124868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, [59588] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4297), 1, aux_sym_else_clause_token1, @@ -124877,7 +124876,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, [59599] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4301), 1, anon_sym_EQ, @@ -124885,7 +124884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, [59610] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4079), 1, anon_sym_LBRACE, @@ -124896,13 +124895,13 @@ static const uint16_t ts_small_parse_table[] = { [59623] = 3, ACTIONS(1260), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1258), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59634] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4303), 3, anon_sym_COMMA, @@ -124911,7 +124910,7 @@ static const uint16_t ts_small_parse_table[] = { [59643] = 3, ACTIONS(1220), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1218), 2, aux_sym_while_statement_token1, @@ -124919,20 +124918,20 @@ static const uint16_t ts_small_parse_table[] = { [59654] = 3, ACTIONS(121), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(1987), 2, sym_dynamic_variable_name, sym_variable_name, [59665] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4305), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, [59674] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4309), 1, anon_sym_EQ, @@ -124940,7 +124939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, [59685] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3078), 1, aux_sym_readonly_modifier_token1, @@ -124951,13 +124950,13 @@ static const uint16_t ts_small_parse_table[] = { [59698] = 3, ACTIONS(1424), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1422), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59709] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4313), 1, anon_sym_COMMA, @@ -124968,7 +124967,7 @@ static const uint16_t ts_small_parse_table[] = { [59722] = 3, ACTIONS(1300), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1298), 2, aux_sym_while_statement_token1, @@ -124976,13 +124975,13 @@ static const uint16_t ts_small_parse_table[] = { [59733] = 3, ACTIONS(1352), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1350), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59744] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4318), 1, anon_sym_SQUOTE, @@ -124991,7 +124990,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4322), 1, sym_heredoc_start, [59757] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3078), 1, aux_sym_readonly_modifier_token1, @@ -125002,7 +125001,7 @@ static const uint16_t ts_small_parse_table[] = { [59770] = 3, ACTIONS(1276), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1274), 2, aux_sym_while_statement_token1, @@ -125010,7 +125009,7 @@ static const uint16_t ts_small_parse_table[] = { [59781] = 3, ACTIONS(1256), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1254), 2, aux_sym_while_statement_token1, @@ -125018,7 +125017,7 @@ static const uint16_t ts_small_parse_table[] = { [59792] = 3, ACTIONS(1284), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1282), 2, aux_sym_while_statement_token1, @@ -125026,7 +125025,7 @@ static const uint16_t ts_small_parse_table[] = { [59803] = 3, ACTIONS(121), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(1828), 2, sym_dynamic_variable_name, @@ -125034,13 +125033,13 @@ static const uint16_t ts_small_parse_table[] = { [59814] = 3, ACTIONS(1364), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1362), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59825] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4326), 1, anon_sym_COMMA, @@ -125049,7 +125048,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1980), 1, aux_sym_array_creation_expression_repeat1, [59838] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4332), 1, anon_sym_EQ, @@ -125059,7 +125058,7 @@ static const uint16_t ts_small_parse_table[] = { [59849] = 3, ACTIONS(1476), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1474), 2, aux_sym_while_statement_token1, @@ -125067,13 +125066,13 @@ static const uint16_t ts_small_parse_table[] = { [59860] = 3, ACTIONS(1380), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1378), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59871] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4336), 1, anon_sym_EQ, @@ -125081,7 +125080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, [59882] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -125090,7 +125089,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2564), 1, sym__return_type, [59895] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4342), 1, anon_sym_EQ, @@ -125100,13 +125099,13 @@ static const uint16_t ts_small_parse_table[] = { [59906] = 3, ACTIONS(1252), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1250), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59917] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3527), 1, anon_sym_COMMA, @@ -125115,7 +125114,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1979), 1, aux_sym_base_clause_repeat1, [59930] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4344), 1, sym_name, @@ -125125,7 +125124,7 @@ static const uint16_t ts_small_parse_table[] = { [59941] = 3, ACTIONS(1396), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1394), 2, aux_sym_while_statement_token1, @@ -125133,7 +125132,7 @@ static const uint16_t ts_small_parse_table[] = { [59952] = 3, ACTIONS(1388), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1386), 2, aux_sym_while_statement_token1, @@ -125141,13 +125140,13 @@ static const uint16_t ts_small_parse_table[] = { [59963] = 3, ACTIONS(1392), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1390), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [59974] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4253), 1, anon_sym_COMMA, @@ -125156,7 +125155,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2028), 1, aux_sym_namespace_use_group_repeat1, [59987] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -125167,7 +125166,7 @@ static const uint16_t ts_small_parse_table[] = { [60000] = 3, ACTIONS(1216), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1214), 2, aux_sym_while_statement_token1, @@ -125175,7 +125174,7 @@ static const uint16_t ts_small_parse_table[] = { [60011] = 3, ACTIONS(1252), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1250), 2, aux_sym_while_statement_token1, @@ -125183,7 +125182,7 @@ static const uint16_t ts_small_parse_table[] = { [60022] = 3, ACTIONS(1240), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1238), 2, aux_sym_while_statement_token1, @@ -125191,7 +125190,7 @@ static const uint16_t ts_small_parse_table[] = { [60033] = 4, ACTIONS(775), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4350), 1, anon_sym_COMMA, @@ -125200,7 +125199,7 @@ static const uint16_t ts_small_parse_table[] = { [60046] = 3, ACTIONS(1532), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1530), 2, aux_sym_while_statement_token1, @@ -125208,7 +125207,7 @@ static const uint16_t ts_small_parse_table[] = { [60057] = 3, ACTIONS(1268), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1266), 2, aux_sym_while_statement_token1, @@ -125216,13 +125215,13 @@ static const uint16_t ts_small_parse_table[] = { [60068] = 3, ACTIONS(1436), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1434), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60079] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4020), 1, anon_sym_EQ, @@ -125230,7 +125229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, [60090] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4354), 1, anon_sym_COMMA, @@ -125241,13 +125240,13 @@ static const uint16_t ts_small_parse_table[] = { [60103] = 3, ACTIONS(1456), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1454), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60114] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4077), 1, sym_name, @@ -125256,7 +125255,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2233), 1, sym_namespace_use_group, [60127] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4358), 3, anon_sym_COMMA, @@ -125265,7 +125264,7 @@ static const uint16_t ts_small_parse_table[] = { [60136] = 3, ACTIONS(1248), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1246), 2, aux_sym_while_statement_token1, @@ -125273,7 +125272,7 @@ static const uint16_t ts_small_parse_table[] = { [60147] = 3, ACTIONS(1372), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1370), 2, aux_sym_while_statement_token1, @@ -125281,7 +125280,7 @@ static const uint16_t ts_small_parse_table[] = { [60158] = 4, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4360), 1, anon_sym_RPAREN, @@ -125290,7 +125289,7 @@ static const uint16_t ts_small_parse_table[] = { [60171] = 3, ACTIONS(1160), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1158), 2, aux_sym_while_statement_token1, @@ -125298,7 +125297,7 @@ static const uint16_t ts_small_parse_table[] = { [60182] = 3, ACTIONS(1192), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1190), 2, aux_sym_while_statement_token1, @@ -125306,20 +125305,20 @@ static const uint16_t ts_small_parse_table[] = { [60193] = 3, ACTIONS(1528), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1526), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60204] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4362), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, [60213] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4364), 1, anon_sym_COMMA, @@ -125330,7 +125329,7 @@ static const uint16_t ts_small_parse_table[] = { [60226] = 3, ACTIONS(1248), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1246), 2, aux_sym_while_statement_token1, @@ -125338,7 +125337,7 @@ static const uint16_t ts_small_parse_table[] = { [60237] = 3, ACTIONS(1484), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1482), 2, aux_sym_while_statement_token1, @@ -125346,13 +125345,13 @@ static const uint16_t ts_small_parse_table[] = { [60248] = 3, ACTIONS(1472), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1470), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60259] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4368), 1, anon_sym_COMMA, @@ -125361,7 +125360,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2108), 1, aux_sym_arguments_repeat1, [60272] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4373), 3, anon_sym_COMMA, @@ -125370,7 +125369,7 @@ static const uint16_t ts_small_parse_table[] = { [60281] = 3, ACTIONS(1400), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1398), 2, aux_sym_while_statement_token1, @@ -125378,7 +125377,7 @@ static const uint16_t ts_small_parse_table[] = { [60292] = 3, ACTIONS(1460), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1458), 2, aux_sym_while_statement_token1, @@ -125386,7 +125385,7 @@ static const uint16_t ts_small_parse_table[] = { [60303] = 4, ACTIONS(813), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4375), 1, anon_sym_COMMA, @@ -125395,7 +125394,7 @@ static const uint16_t ts_small_parse_table[] = { [60316] = 3, ACTIONS(1192), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1190), 2, aux_sym_while_statement_token1, @@ -125403,14 +125402,14 @@ static const uint16_t ts_small_parse_table[] = { [60327] = 4, ACTIONS(791), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4377), 1, anon_sym_COMMA, STATE(2108), 1, aux_sym_arguments_repeat1, [60340] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2427), 1, anon_sym_COLON, @@ -125421,7 +125420,7 @@ static const uint16_t ts_small_parse_table[] = { [60353] = 3, ACTIONS(1288), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1286), 2, aux_sym_while_statement_token1, @@ -125429,7 +125428,7 @@ static const uint16_t ts_small_parse_table[] = { [60364] = 3, ACTIONS(1296), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1294), 2, aux_sym_while_statement_token1, @@ -125437,13 +125436,13 @@ static const uint16_t ts_small_parse_table[] = { [60375] = 3, ACTIONS(1412), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1410), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60386] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4381), 1, anon_sym_COMMA, @@ -125452,7 +125451,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2157), 1, aux_sym_arguments_repeat1, [60399] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4385), 1, anon_sym_COMMA, @@ -125463,13 +125462,13 @@ static const uint16_t ts_small_parse_table[] = { [60412] = 3, ACTIONS(1204), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1202), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60423] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -125480,7 +125479,7 @@ static const uint16_t ts_small_parse_table[] = { [60436] = 3, ACTIONS(1468), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1466), 2, aux_sym_while_statement_token1, @@ -125488,7 +125487,7 @@ static const uint16_t ts_small_parse_table[] = { [60447] = 3, ACTIONS(1420), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1418), 2, aux_sym_while_statement_token1, @@ -125496,7 +125495,7 @@ static const uint16_t ts_small_parse_table[] = { [60458] = 3, ACTIONS(1272), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1270), 2, aux_sym_while_statement_token1, @@ -125504,7 +125503,7 @@ static const uint16_t ts_small_parse_table[] = { [60469] = 3, ACTIONS(1520), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1518), 2, aux_sym_while_statement_token1, @@ -125512,7 +125511,7 @@ static const uint16_t ts_small_parse_table[] = { [60480] = 3, ACTIONS(1244), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1242), 2, aux_sym_while_statement_token1, @@ -125520,7 +125519,7 @@ static const uint16_t ts_small_parse_table[] = { [60491] = 3, ACTIONS(1236), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1234), 2, aux_sym_while_statement_token1, @@ -125528,23 +125527,23 @@ static const uint16_t ts_small_parse_table[] = { [60502] = 4, ACTIONS(851), 1, anon_sym_COMMA, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4392), 1, anon_sym_RPAREN, STATE(2130), 1, aux_sym__list_destructing_repeat1, [60515] = 4, - ACTIONS(1678), 1, - anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1680), 1, + anon_sym_RPAREN, ACTIONS(4394), 1, anon_sym_COMMA, STATE(2130), 1, aux_sym__list_destructing_repeat1, [60528] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4020), 1, anon_sym_EQ, @@ -125552,7 +125551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACK, [60539] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4399), 1, anon_sym_COMMA, @@ -125561,7 +125560,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2112), 1, aux_sym_arguments_repeat1, [60552] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3133), 1, anon_sym_AMP, @@ -125572,7 +125571,7 @@ static const uint16_t ts_small_parse_table[] = { [60565] = 3, ACTIONS(1516), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1514), 2, aux_sym_while_statement_token1, @@ -125580,7 +125579,7 @@ static const uint16_t ts_small_parse_table[] = { [60576] = 3, ACTIONS(1500), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1498), 2, aux_sym_while_statement_token1, @@ -125588,7 +125587,7 @@ static const uint16_t ts_small_parse_table[] = { [60587] = 3, ACTIONS(1492), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1490), 2, aux_sym_while_statement_token1, @@ -125596,7 +125595,7 @@ static const uint16_t ts_small_parse_table[] = { [60598] = 3, ACTIONS(121), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(1901), 2, sym_dynamic_variable_name, @@ -125604,7 +125603,7 @@ static const uint16_t ts_small_parse_table[] = { [60609] = 3, ACTIONS(1224), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1222), 2, aux_sym_while_statement_token1, @@ -125612,20 +125611,20 @@ static const uint16_t ts_small_parse_table[] = { [60620] = 3, ACTIONS(1492), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1490), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60631] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4388), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, [60640] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4388), 1, anon_sym_RBRACK, @@ -125634,7 +125633,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2141), 1, aux_sym_array_creation_expression_repeat1, [60653] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2801), 3, sym__automatic_semicolon, @@ -125643,13 +125642,13 @@ static const uint16_t ts_small_parse_table[] = { [60662] = 3, ACTIONS(1360), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1358), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60673] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4408), 1, anon_sym_COMMA, @@ -125660,13 +125659,13 @@ static const uint16_t ts_small_parse_table[] = { [60686] = 3, ACTIONS(1348), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1346), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60697] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4079), 1, anon_sym_LBRACE, @@ -125677,13 +125676,13 @@ static const uint16_t ts_small_parse_table[] = { [60710] = 3, ACTIONS(1196), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1194), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60721] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -125692,7 +125691,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2614), 1, sym__return_type, [60734] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4415), 1, anon_sym_COMMA, @@ -125703,7 +125702,7 @@ static const uint16_t ts_small_parse_table[] = { [60747] = 3, ACTIONS(1188), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1186), 2, aux_sym_while_statement_token1, @@ -125711,7 +125710,7 @@ static const uint16_t ts_small_parse_table[] = { [60758] = 4, ACTIONS(797), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4419), 1, anon_sym_COMMA, @@ -125720,7 +125719,7 @@ static const uint16_t ts_small_parse_table[] = { [60771] = 3, ACTIONS(1340), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1338), 2, aux_sym_while_statement_token1, @@ -125737,7 +125736,7 @@ static const uint16_t ts_small_parse_table[] = { [60795] = 4, ACTIONS(783), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4423), 1, anon_sym_COMMA, @@ -125753,10 +125752,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(2196), 1, sym_heredoc_body, [60821] = 4, - ACTIONS(1710), 1, - anon_sym_DOLLAR, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, + ACTIONS(1712), 1, + anon_sym_DOLLAR, STATE(1900), 1, sym_variable_name, STATE(2005), 1, @@ -125764,7 +125763,7 @@ static const uint16_t ts_small_parse_table[] = { [60834] = 4, ACTIONS(777), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4427), 1, anon_sym_COMMA, @@ -125773,13 +125772,13 @@ static const uint16_t ts_small_parse_table[] = { [60847] = 3, ACTIONS(1340), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1338), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60858] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -125788,7 +125787,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2658), 1, sym__return_type, [60871] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4431), 1, anon_sym_EQ, @@ -125796,14 +125795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, [60882] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3826), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, [60891] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3481), 1, anon_sym_COLON, @@ -125814,7 +125813,7 @@ static const uint16_t ts_small_parse_table[] = { [60904] = 3, ACTIONS(1452), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1450), 2, aux_sym_while_statement_token1, @@ -125822,7 +125821,7 @@ static const uint16_t ts_small_parse_table[] = { [60915] = 3, ACTIONS(1168), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1166), 2, aux_sym_while_statement_token1, @@ -125830,7 +125829,7 @@ static const uint16_t ts_small_parse_table[] = { [60926] = 3, ACTIONS(1176), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1174), 2, aux_sym_while_statement_token1, @@ -125838,13 +125837,13 @@ static const uint16_t ts_small_parse_table[] = { [60937] = 3, ACTIONS(1312), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1310), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60948] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4435), 1, anon_sym_COMMA, @@ -125855,13 +125854,13 @@ static const uint16_t ts_small_parse_table[] = { [60961] = 3, ACTIONS(1332), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1330), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60972] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4439), 1, anon_sym_COMMA, @@ -125872,13 +125871,13 @@ static const uint16_t ts_small_parse_table[] = { [60985] = 3, ACTIONS(1444), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1442), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [60996] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3342), 3, sym__automatic_semicolon, @@ -125887,13 +125886,13 @@ static const uint16_t ts_small_parse_table[] = { [61005] = 3, ACTIONS(1184), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1182), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [61016] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -125904,7 +125903,7 @@ static const uint16_t ts_small_parse_table[] = { [61029] = 4, ACTIONS(793), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4445), 1, anon_sym_COMMA, @@ -125913,7 +125912,7 @@ static const uint16_t ts_small_parse_table[] = { [61042] = 3, ACTIONS(1432), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1430), 2, aux_sym_while_statement_token1, @@ -125921,7 +125920,7 @@ static const uint16_t ts_small_parse_table[] = { [61053] = 3, ACTIONS(1280), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1278), 2, aux_sym_while_statement_token1, @@ -125929,7 +125928,7 @@ static const uint16_t ts_small_parse_table[] = { [61064] = 3, ACTIONS(1208), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1206), 2, aux_sym_while_statement_token1, @@ -125937,7 +125936,7 @@ static const uint16_t ts_small_parse_table[] = { [61075] = 3, ACTIONS(1292), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1290), 2, aux_sym_while_statement_token1, @@ -125945,7 +125944,7 @@ static const uint16_t ts_small_parse_table[] = { [61086] = 3, ACTIONS(1428), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1426), 2, aux_sym_while_statement_token1, @@ -125953,7 +125952,7 @@ static const uint16_t ts_small_parse_table[] = { [61097] = 3, ACTIONS(1212), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1210), 2, aux_sym_while_statement_token1, @@ -125961,13 +125960,13 @@ static const uint16_t ts_small_parse_table[] = { [61108] = 3, ACTIONS(1404), 1, aux_sym_else_clause_token1, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1402), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, [61119] = 4, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4447), 1, anon_sym_COMMA, @@ -125976,7 +125975,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2151), 1, aux_sym_arguments_repeat1, [61132] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4451), 2, sym__automatic_semicolon, @@ -125984,79 +125983,79 @@ static const uint16_t ts_small_parse_table[] = { [61140] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(1699), 1, sym_compound_statement, [61150] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1720), 1, anon_sym_BSLASH, STATE(2359), 1, aux_sym_namespace_name_repeat1, [61160] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1096), 1, sym_compound_statement, [61170] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3501), 1, anon_sym_LBRACE, STATE(452), 1, sym_declaration_list, [61180] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4453), 2, anon_sym_string, anon_sym_int, [61188] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(2218), 1, sym_variable_name, [61198] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4371), 2, anon_sym_COMMA, anon_sym_RPAREN, [61206] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4131), 2, anon_sym_LBRACE, anon_sym_EQ_GT, [61214] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3501), 1, anon_sym_LBRACE, STATE(448), 1, sym_declaration_list, [61224] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1090), 1, sym_compound_statement, [61234] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3682), 1, anon_sym_LBRACE, STATE(467), 1, sym_enum_declaration_list, [61244] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2581), 2, anon_sym_COMMA, @@ -126069,27 +126068,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4457), 1, sym_heredoc_end, [61262] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3501), 1, anon_sym_LBRACE, STATE(436), 1, sym_declaration_list, [61272] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3501), 1, anon_sym_LBRACE, STATE(450), 1, sym_declaration_list, [61282] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4459), 2, sym__automatic_semicolon, anon_sym_SEMI, [61290] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2583), 2, anon_sym_COMMA, @@ -126102,258 +126101,258 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4463), 1, sym_heredoc_end, [61308] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4465), 1, sym_name, STATE(2467), 1, sym_namespace_name, [61318] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4468), 1, anon_sym_LPAREN, STATE(2338), 1, sym_parenthesized_expression, [61328] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(2275), 1, sym_variable_name, [61338] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(1954), 1, sym_formal_parameters, [61348] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4465), 1, sym_name, STATE(2587), 1, sym_namespace_name, [61358] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(2271), 1, sym_variable_name, [61368] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1112), 1, sym_compound_statement, [61378] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4465), 1, sym_name, STATE(2579), 1, sym_namespace_name, [61388] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(2071), 1, sym_variable_name, [61398] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1073), 1, sym_compound_statement, [61408] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4411), 2, anon_sym_COMMA, anon_sym_RBRACK, [61416] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1087), 1, sym_compound_statement, [61426] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4470), 2, anon_sym_COMMA, anon_sym_RBRACK, [61434] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(2239), 1, sym_variable_name, [61444] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1075), 1, sym_compound_statement, [61454] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4473), 2, sym__automatic_semicolon, anon_sym_SEMI, [61462] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4475), 2, anon_sym_COMMA, anon_sym_RPAREN, [61470] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1115), 1, sym_compound_statement, [61480] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4477), 2, sym__automatic_semicolon, anon_sym_SEMI, [61488] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1078), 1, sym_compound_statement, [61498] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4479), 2, sym__automatic_semicolon, anon_sym_SEMI, [61506] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4037), 2, sym__automatic_semicolon, anon_sym_SEMI, [61514] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3501), 1, anon_sym_LBRACE, STATE(435), 1, sym_declaration_list, [61524] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3501), 1, anon_sym_LBRACE, STATE(444), 1, sym_declaration_list, [61534] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(2162), 1, sym_formal_parameters, [61544] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4481), 2, sym__automatic_semicolon, anon_sym_SEMI, [61552] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4483), 1, sym_name, STATE(1845), 1, sym_namespace_name, [61562] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1043), 1, sym_compound_statement, [61572] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, - ACTIONS(1678), 2, + ACTIONS(1680), 2, anon_sym_COMMA, anon_sym_RPAREN, [61580] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1033), 1, sym_compound_statement, [61590] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4043), 1, anon_sym_LBRACE, STATE(554), 1, sym_declaration_list, [61600] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4485), 2, sym__automatic_semicolon, anon_sym_SEMI, [61608] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4487), 2, anon_sym_string, anon_sym_int, [61616] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3953), 2, anon_sym_COMMA, anon_sym_RBRACE, [61624] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4489), 2, sym__automatic_semicolon, anon_sym_SEMI, [61632] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4491), 2, sym__automatic_semicolon, anon_sym_SEMI, [61640] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(1920), 1, sym_formal_parameters, [61650] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4493), 2, anon_sym_COMMA, anon_sym_RPAREN, [61658] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4495), 2, sym__automatic_semicolon, @@ -126361,125 +126360,125 @@ static const uint16_t ts_small_parse_table[] = { [61666] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(1698), 1, sym_compound_statement, [61676] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4346), 2, sym__automatic_semicolon, anon_sym_SEMI, [61684] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4497), 1, anon_sym_LPAREN, STATE(38), 1, sym_parenthesized_expression, [61694] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2483), 1, anon_sym_RPAREN, ACTIONS(4499), 1, anon_sym_EQ, [61704] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(2036), 1, sym_variable_name, [61714] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3682), 1, anon_sym_LBRACE, STATE(541), 1, sym_enum_declaration_list, [61724] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3501), 1, anon_sym_LBRACE, STATE(439), 1, sym_declaration_list, [61734] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3334), 2, anon_sym_COMMA, anon_sym_RBRACK, [61742] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(1638), 1, sym_formal_parameters, [61752] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2573), 2, anon_sym_COMMA, anon_sym_RPAREN, [61760] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1113), 1, sym_declaration_list, [61770] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4501), 2, sym__automatic_semicolon, anon_sym_SEMI, [61778] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2427), 1, anon_sym_COLON, ACTIONS(4503), 1, anon_sym_LPAREN, [61788] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4497), 1, anon_sym_LPAREN, STATE(76), 1, sym_parenthesized_expression, [61798] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4397), 2, anon_sym_COMMA, anon_sym_RBRACK, [61806] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4497), 1, anon_sym_LPAREN, STATE(74), 1, sym_parenthesized_expression, [61816] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4505), 2, anon_sym_COMMA, anon_sym_RPAREN, [61824] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4379), 1, anon_sym_LPAREN, STATE(2400), 1, sym_parenthesized_expression, [61834] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4465), 1, sym_name, @@ -126488,119 +126487,119 @@ static const uint16_t ts_small_parse_table[] = { [61844] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(1720), 1, sym_compound_statement, [61854] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1100), 1, sym_compound_statement, [61864] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4497), 1, anon_sym_LPAREN, STATE(42), 1, sym_parenthesized_expression, [61874] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4379), 1, anon_sym_LPAREN, STATE(2312), 1, sym_parenthesized_expression, [61884] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4379), 1, anon_sym_LPAREN, STATE(1998), 1, sym_parenthesized_expression, [61894] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4316), 2, anon_sym_COMMA, anon_sym_RPAREN, [61902] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1088), 1, sym_declaration_list, [61912] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4497), 1, anon_sym_LPAREN, STATE(65), 1, sym_parenthesized_expression, [61922] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2809), 1, aux_sym__arrow_function_header_token1, ACTIONS(4507), 1, aux_sym_namespace_use_declaration_token2, [61932] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4379), 1, anon_sym_LPAREN, STATE(1991), 1, sym_parenthesized_expression, [61942] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3523), 2, sym__automatic_semicolon, anon_sym_SEMI, [61950] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4509), 2, anon_sym_COMMA, anon_sym_RPAREN, [61958] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(2257), 1, sym_variable_name, [61968] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(469), 2, sym__automatic_semicolon, anon_sym_SEMI, [61976] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4511), 1, anon_sym_LBRACE, STATE(433), 1, sym_compound_statement, [61986] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4513), 2, anon_sym_COMMA, anon_sym_RPAREN, [61994] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4497), 1, anon_sym_LPAREN, STATE(41), 1, sym_parenthesized_expression, [62004] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4515), 2, anon_sym_COMMA, @@ -126613,7 +126612,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4519), 1, sym_heredoc_end, [62022] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -126622,38 +126621,38 @@ static const uint16_t ts_small_parse_table[] = { [62032] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(2150), 1, sym_compound_statement, [62042] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(923), 1, sym_compound_statement, [62052] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2555), 2, anon_sym_COMMA, anon_sym_RPAREN, [62060] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(2277), 1, sym_variable_name, [62070] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4521), 2, sym__automatic_semicolon, anon_sym_SEMI, [62078] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4523), 1, anon_sym_LPAREN, @@ -126662,137 +126661,137 @@ static const uint16_t ts_small_parse_table[] = { [62088] = 3, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(463), 1, sym_compound_statement, [62098] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4525), 2, sym__automatic_semicolon, anon_sym_SEMI, [62106] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(1604), 1, sym_formal_parameters, [62116] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4527), 2, sym__automatic_semicolon, anon_sym_SEMI, [62124] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4529), 2, sym__automatic_semicolon, anon_sym_SEMI, [62132] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, STATE(2107), 1, sym_declaration_list, [62142] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4531), 2, anon_sym_string, anon_sym_int, [62150] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3501), 1, anon_sym_LBRACE, STATE(434), 1, sym_declaration_list, [62160] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(499), 2, sym__automatic_semicolon, anon_sym_SEMI, [62168] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1681), 1, sym_declaration_list, [62178] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4533), 2, anon_sym_COMMA, anon_sym_RPAREN, [62186] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(1619), 1, sym_formal_parameters, [62196] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4497), 1, anon_sym_LPAREN, STATE(64), 1, sym_parenthesized_expression, [62206] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4468), 1, anon_sym_LPAREN, STATE(2435), 1, sym_parenthesized_expression, [62216] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4535), 2, anon_sym_LBRACE, anon_sym_COLON, [62224] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(1917), 1, sym_variable_name, [62234] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4020), 2, anon_sym_EQ, anon_sym_RPAREN, [62242] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3501), 1, anon_sym_LBRACE, STATE(443), 1, sym_declaration_list, [62252] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(1646), 1, sym_formal_parameters, [62262] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(2393), 1, sym_variable_name, [62272] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4537), 2, sym__automatic_semicolon, @@ -126800,18 +126799,18 @@ static const uint16_t ts_small_parse_table[] = { [62280] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(903), 1, sym_compound_statement, [62290] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4539), 2, sym__automatic_semicolon, anon_sym_SEMI, [62298] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, @@ -126820,25 +126819,25 @@ static const uint16_t ts_small_parse_table[] = { [62308] = 3, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(504), 1, sym_compound_statement, [62318] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4541), 2, anon_sym_SEMI, anon_sym_COLON, [62326] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4543), 1, anon_sym_LBRACE, STATE(963), 1, sym_match_block, [62336] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(493), 2, sym__automatic_semicolon, @@ -126846,39 +126845,39 @@ static const uint16_t ts_small_parse_table[] = { [62344] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(940), 1, sym_compound_statement, [62354] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4545), 2, sym__automatic_semicolon, anon_sym_SEMI, [62362] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1718), 1, sym_declaration_list, [62372] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1722), 1, sym_declaration_list, [62382] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3696), 1, anon_sym_LBRACE, STATE(2017), 1, sym_enum_declaration_list, [62392] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, @@ -126887,12 +126886,12 @@ static const uint16_t ts_small_parse_table[] = { [62402] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(904), 1, sym_compound_statement, [62412] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, @@ -126901,18 +126900,18 @@ static const uint16_t ts_small_parse_table[] = { [62422] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(905), 1, sym_compound_statement, [62432] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4547), 2, anon_sym_COMMA, anon_sym_RPAREN, [62440] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4549), 2, anon_sym_COMMA, @@ -126920,58 +126919,58 @@ static const uint16_t ts_small_parse_table[] = { [62448] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(907), 1, sym_compound_statement, [62458] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1728), 1, sym_declaration_list, [62468] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4551), 2, anon_sym_LBRACE, anon_sym_COLON, [62476] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2435), 2, sym__automatic_semicolon, anon_sym_SEMI, [62484] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1133), 1, sym_compound_statement, [62494] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(1737), 1, anon_sym_DOLLAR, STATE(2323), 1, sym_variable_name, [62504] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(1636), 1, sym_formal_parameters, [62514] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4553), 2, anon_sym_string, anon_sym_int, [62522] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4555), 2, sym__automatic_semicolon, @@ -126979,32 +126978,32 @@ static const uint16_t ts_small_parse_table[] = { [62530] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(1984), 1, sym_compound_statement, [62540] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4557), 2, sym__automatic_semicolon, anon_sym_SEMI, [62548] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4523), 1, anon_sym_LPAREN, STATE(1697), 1, sym_formal_parameters, [62558] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, STATE(910), 1, sym_declaration_list, [62568] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4559), 2, sym__automatic_semicolon, @@ -127012,81 +127011,81 @@ static const uint16_t ts_small_parse_table[] = { [62576] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(953), 1, sym_compound_statement, [62586] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4561), 1, anon_sym_SEMI, ACTIONS(4563), 1, sym__automatic_semicolon, [62596] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, STATE(1923), 1, sym_declaration_list, [62606] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(2084), 1, sym_formal_parameters, [62616] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2585), 1, anon_sym_RPAREN, ACTIONS(4499), 1, anon_sym_EQ, [62626] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3696), 1, anon_sym_LBRACE, STATE(1921), 1, sym_enum_declaration_list, [62636] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2809), 1, aux_sym__arrow_function_header_token1, ACTIONS(4565), 1, aux_sym_namespace_use_declaration_token2, [62646] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1708), 1, sym_declaration_list, [62656] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(1592), 1, sym_formal_parameters, [62666] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1053), 1, sym_declaration_list, [62676] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4567), 2, sym__automatic_semicolon, anon_sym_SEMI, [62684] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, @@ -127095,12 +127094,12 @@ static const uint16_t ts_small_parse_table[] = { [62694] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(1711), 1, sym_compound_statement, [62704] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2709), 1, anon_sym_RPAREN, @@ -127109,91 +127108,91 @@ static const uint16_t ts_small_parse_table[] = { [62714] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(1744), 1, sym_compound_statement, [62724] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4511), 1, anon_sym_LBRACE, STATE(432), 1, sym_compound_statement, [62734] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4569), 2, sym__automatic_semicolon, anon_sym_SEMI, [62742] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4571), 1, sym_name, STATE(2563), 1, sym_namespace_name, [62752] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, STATE(949), 1, sym_declaration_list, [62762] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2435), 2, anon_sym_SEMI, anon_sym_RPAREN, [62770] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4574), 1, anon_sym_BSLASH, STATE(1746), 1, aux_sym_namespace_name_repeat1, [62780] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4177), 2, anon_sym_COMMA, anon_sym_RBRACK, [62788] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4465), 1, sym_name, STATE(2617), 1, sym_namespace_name, [62798] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4497), 1, anon_sym_LPAREN, STATE(82), 1, sym_parenthesized_expression, [62808] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4577), 2, sym__automatic_semicolon, anon_sym_SEMI, [62816] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(483), 2, sym__automatic_semicolon, anon_sym_SEMI, [62824] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4511), 1, anon_sym_LBRACE, STATE(429), 1, sym_compound_statement, [62834] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4579), 2, sym__automatic_semicolon, @@ -127201,24 +127200,24 @@ static const uint16_t ts_small_parse_table[] = { [62842] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(912), 1, sym_compound_statement, [62852] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4581), 2, sym__automatic_semicolon, anon_sym_SEMI, [62860] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4583), 2, sym__automatic_semicolon, anon_sym_SEMI, [62868] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4379), 1, anon_sym_LPAREN, @@ -127232,21 +127231,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4587), 1, sym_heredoc_end, [62888] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(2159), 1, sym_formal_parameters, [62898] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1749), 1, sym_declaration_list, [62908] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, @@ -127255,47 +127254,47 @@ static const uint16_t ts_small_parse_table[] = { [62918] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(913), 1, sym_compound_statement, [62928] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(915), 1, sym_compound_statement, [62938] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(917), 1, sym_compound_statement, [62948] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4589), 1, anon_sym_SEMI, ACTIONS(4591), 1, sym__automatic_semicolon, [62958] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1660), 1, sym_declaration_list, [62968] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1745), 1, sym_declaration_list, [62978] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4593), 2, sym__automatic_semicolon, @@ -127315,71 +127314,71 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4601), 1, sym_heredoc_end, [63006] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4603), 2, anon_sym_COMMA, anon_sym_RBRACK, [63014] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4606), 2, sym__automatic_semicolon, anon_sym_SEMI, [63022] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, STATE(919), 1, sym_declaration_list, [63032] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, STATE(920), 1, sym_declaration_list, [63042] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4608), 2, sym__automatic_semicolon, anon_sym_SEMI, [63050] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4610), 1, anon_sym_SEMI, ACTIONS(4612), 1, sym__automatic_semicolon, [63060] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4614), 1, anon_sym_SEMI, ACTIONS(4616), 1, sym__automatic_semicolon, [63070] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4207), 2, anon_sym_COMMA, anon_sym_RPAREN, [63078] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4618), 2, anon_sym_LBRACE, anon_sym_COLON, [63086] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4620), 2, anon_sym_COMMA, anon_sym_RPAREN, [63094] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4622), 2, sym__automatic_semicolon, @@ -127387,25 +127386,25 @@ static const uint16_t ts_small_parse_table[] = { [63102] = 3, ACTIONS(387), 1, anon_sym_COLON, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(2474), 1, sym_colon_block, [63112] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4624), 2, sym__automatic_semicolon, anon_sym_SEMI, [63120] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1127), 1, sym_declaration_list, [63130] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3696), 1, anon_sym_LBRACE, @@ -127414,37 +127413,37 @@ static const uint16_t ts_small_parse_table[] = { [63140] = 3, ACTIONS(515), 1, anon_sym_COLON, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(2049), 1, sym_colon_block, [63150] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4626), 1, anon_sym_LBRACE, STATE(1130), 1, sym_match_block, [63160] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4628), 2, sym__automatic_semicolon, anon_sym_SEMI, [63168] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4190), 2, anon_sym_COMMA, anon_sym_RBRACE, [63176] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4047), 2, sym__automatic_semicolon, anon_sym_SEMI, [63184] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4630), 2, anon_sym_COMMA, @@ -127452,32 +127451,32 @@ static const uint16_t ts_small_parse_table[] = { [63192] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(922), 1, sym_compound_statement, [63202] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2597), 1, anon_sym_RPAREN, ACTIONS(4499), 1, anon_sym_EQ, [63212] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3501), 1, anon_sym_LBRACE, STATE(453), 1, sym_declaration_list, [63222] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4632), 2, sym__automatic_semicolon, anon_sym_SEMI, [63230] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3501), 1, anon_sym_LBRACE, @@ -127486,81 +127485,81 @@ static const uint16_t ts_small_parse_table[] = { [63240] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(942), 1, sym_compound_statement, [63250] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(925), 1, sym_compound_statement, [63260] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4066), 2, anon_sym_COMMA, anon_sym_RBRACE, [63268] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3682), 1, anon_sym_LBRACE, STATE(499), 1, sym_enum_declaration_list, [63278] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1079), 1, sym_compound_statement, [63288] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1083), 1, sym_compound_statement, [63298] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1753), 1, sym_declaration_list, [63308] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3479), 1, anon_sym_LBRACE, STATE(1089), 1, sym_compound_statement, [63318] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3682), 1, anon_sym_LBRACE, STATE(557), 1, sym_enum_declaration_list, [63328] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3696), 1, anon_sym_LBRACE, STATE(2121), 1, sym_enum_declaration_list, [63338] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3501), 1, anon_sym_LBRACE, STATE(447), 1, sym_declaration_list, [63348] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4634), 2, sym__automatic_semicolon, @@ -127568,52 +127567,52 @@ static const uint16_t ts_small_parse_table[] = { [63356] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(927), 1, sym_compound_statement, [63366] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4075), 2, anon_sym_COMMA, anon_sym_RBRACE, [63374] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1740), 1, sym_declaration_list, [63384] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(1610), 1, sym_formal_parameters, [63394] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4497), 1, anon_sym_LPAREN, STATE(35), 1, sym_parenthesized_expression, [63404] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4636), 2, sym__automatic_semicolon, anon_sym_SEMI, [63412] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, STATE(935), 1, sym_declaration_list, [63422] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3413), 1, anon_sym_LBRACE, @@ -127626,90 +127625,90 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, sym__new_line, [63440] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3507), 2, sym__automatic_semicolon, anon_sym_SEMI, [63448] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4638), 2, sym__automatic_semicolon, anon_sym_SEMI, [63456] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4640), 2, sym__automatic_semicolon, anon_sym_SEMI, [63464] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4497), 1, anon_sym_LPAREN, STATE(81), 1, sym_parenthesized_expression, [63474] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4642), 2, sym__automatic_semicolon, anon_sym_SEMI, [63482] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3376), 2, anon_sym_COMMA, anon_sym_RPAREN, [63490] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4503), 1, anon_sym_LPAREN, ACTIONS(4644), 1, anon_sym_RPAREN, [63500] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4646), 2, sym__automatic_semicolon, anon_sym_SEMI, [63508] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4648), 2, anon_sym_COMMA, anon_sym_RPAREN, [63516] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, STATE(1097), 1, sym_declaration_list, [63526] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2599), 1, anon_sym_RPAREN, ACTIONS(4499), 1, anon_sym_EQ, [63536] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4650), 2, sym__automatic_semicolon, anon_sym_SEMI, [63544] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3251), 1, anon_sym_LPAREN, STATE(2075), 1, sym_formal_parameters, [63554] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3419), 1, anon_sym_LBRACE, @@ -127718,1129 +127717,1129 @@ static const uint16_t ts_small_parse_table[] = { [63564] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, STATE(938), 1, sym_compound_statement, [63574] = 3, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4043), 1, anon_sym_LBRACE, STATE(544), 1, sym_declaration_list, [63584] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4652), 1, sym_heredoc_end, [63591] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4654), 1, anon_sym_SEMI, [63598] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4656), 1, sym_heredoc_end, [63605] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4658), 1, anon_sym_RPAREN, [63612] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4644), 1, anon_sym_RPAREN, [63619] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4660), 1, anon_sym_RBRACK, [63626] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4662), 1, anon_sym_RPAREN, [63633] = 2, ACTIONS(913), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [63640] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4664), 1, anon_sym_EQ_GT, [63647] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2599), 1, anon_sym_RPAREN, [63654] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4666), 1, anon_sym_EQ, [63661] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4668), 1, anon_sym_COLON_COLON, [63668] = 2, ACTIONS(909), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [63675] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4670), 1, anon_sym_RPAREN, [63682] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4672), 1, anon_sym_RPAREN, [63689] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4115), 1, anon_sym_RBRACE, [63696] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2597), 1, anon_sym_RPAREN, [63703] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4674), 1, sym_heredoc_end, [63710] = 2, ACTIONS(917), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [63717] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4676), 1, anon_sym_RPAREN, [63724] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3711), 1, anon_sym_BSLASH, [63731] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3315), 1, anon_sym_EQ, [63738] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4678), 1, anon_sym_RPAREN, [63745] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4680), 1, aux_sym__arrow_function_header_token1, [63752] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4682), 1, anon_sym_EQ_GT, [63759] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4684), 1, aux_sym_while_statement_token1, [63766] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4686), 1, anon_sym_RPAREN, [63773] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4688), 1, aux_sym_if_statement_token2, [63780] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4690), 1, anon_sym_RPAREN, [63787] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4692), 1, aux_sym_if_statement_token2, [63794] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4694), 1, aux_sym_class_declaration_token1, [63801] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4221), 1, anon_sym_RBRACK, [63808] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4696), 1, aux_sym_if_statement_token2, [63815] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4059), 1, anon_sym_RPAREN, [63822] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4698), 1, anon_sym_RPAREN, [63829] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4700), 1, anon_sym_EQ_GT, [63836] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4702), 1, anon_sym_BSLASH, [63843] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4704), 1, sym_name, [63850] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4706), 1, sym_heredoc_start, [63857] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4708), 1, sym_heredoc_start, [63864] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4710), 1, anon_sym_RPAREN, [63871] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4712), 1, aux_sym_foreach_statement_token2, [63878] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4714), 1, sym_name, [63885] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4091), 1, sym_name, [63892] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4051), 1, anon_sym_RBRACK, [63899] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4716), 1, aux_sym_foreach_statement_token2, [63906] = 2, ACTIONS(897), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [63913] = 2, ACTIONS(885), 1, anon_sym_SEMI, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [63920] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4718), 1, anon_sym_RPAREN, [63927] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4235), 1, anon_sym_RBRACE, [63934] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4720), 1, anon_sym_RPAREN, [63941] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4722), 1, sym_name, [63948] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4724), 1, aux_sym_class_declaration_token1, [63955] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4095), 1, anon_sym_RPAREN, [63962] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2709), 1, anon_sym_RPAREN, [63969] = 2, ACTIONS(887), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [63976] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4726), 1, anon_sym_RPAREN, [63983] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4728), 1, anon_sym_EQ_GT, [63990] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4730), 1, anon_sym_RPAREN, [63997] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4732), 1, sym_name, [64004] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4734), 1, aux_sym_if_statement_token2, [64011] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4736), 1, anon_sym_RPAREN, [64018] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2585), 1, anon_sym_RPAREN, [64025] = 2, ACTIONS(903), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [64032] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4738), 1, sym_name, [64039] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4123), 1, anon_sym_RPAREN, [64046] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4740), 1, sym_name, [64053] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4742), 1, sym_name, [64060] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3770), 1, sym_name, [64067] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4744), 1, sym_heredoc_end, [64074] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4746), 1, sym_heredoc_end, [64081] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4748), 1, sym_name, [64088] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4750), 1, sym_name, [64095] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4200), 1, anon_sym_LBRACE, [64102] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4752), 1, aux_sym_if_statement_token2, [64109] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4754), 1, anon_sym_EQ_GT, [64116] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4756), 1, anon_sym_EQ, [64123] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4758), 1, anon_sym_COLON_COLON, [64130] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4760), 1, anon_sym_RPAREN, [64137] = 2, ACTIONS(425), 1, ts_builtin_sym_end, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [64144] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4263), 1, aux_sym_class_declaration_token1, [64151] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4762), 1, sym_name, [64158] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4764), 1, sym_name, [64165] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4766), 1, ts_builtin_sym_end, [64172] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4768), 1, sym_name, [64179] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4770), 1, anon_sym_RPAREN, [64186] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4772), 1, anon_sym_DQUOTE2, [64193] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4774), 1, anon_sym_COLON_COLON, [64200] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4776), 1, anon_sym_SQUOTE2, [64207] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4778), 1, anon_sym_EQ, [64214] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4780), 1, anon_sym_RPAREN, [64221] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4782), 1, aux_sym_while_statement_token2, [64228] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4784), 1, anon_sym_RPAREN, [64235] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4786), 1, anon_sym_RPAREN, [64242] = 2, ACTIONS(421), 1, ts_builtin_sym_end, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [64249] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4788), 1, anon_sym_EQ_GT, [64256] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4441), 1, anon_sym_RPAREN, [64263] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4790), 1, sym_name, [64270] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4792), 1, aux_sym_namespace_use_declaration_token3, [64277] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4794), 1, aux_sym__arrow_function_header_token1, [64284] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4241), 1, aux_sym_class_declaration_token1, [64291] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4796), 1, sym_name, [64298] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4798), 1, anon_sym_BSLASH, [64305] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(3778), 1, sym_name, [64312] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4800), 1, sym_name, [64319] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4802), 1, ts_builtin_sym_end, [64326] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4804), 1, anon_sym_COLON_COLON, [64333] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4499), 1, anon_sym_EQ, [64340] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4806), 1, sym_name, [64347] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4808), 1, anon_sym_EQ_GT, [64354] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4810), 1, sym_name, [64361] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4812), 1, sym_name, [64368] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4814), 1, anon_sym_SEMI, [64375] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4816), 1, aux_sym_while_statement_token2, [64382] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4818), 1, aux_sym_class_declaration_token1, [64389] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4820), 1, anon_sym_LPAREN, [64396] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4822), 1, anon_sym_BSLASH, [64403] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4824), 1, anon_sym_EQ_GT, [64410] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4311), 1, aux_sym_class_declaration_token1, [64417] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4826), 1, aux_sym_namespace_use_declaration_token3, [64424] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4828), 1, anon_sym_BSLASH, [64431] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4830), 1, anon_sym_SQUOTE2, [64438] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4077), 1, sym_name, [64445] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4832), 1, anon_sym_DQUOTE2, [64452] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4834), 1, aux_sym_while_statement_token1, [64459] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4836), 1, sym_heredoc_start, [64466] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4838), 1, sym_heredoc_start, [64473] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4840), 1, aux_sym_class_declaration_token1, [64480] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4842), 1, anon_sym_LPAREN, [64487] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4844), 1, anon_sym_RPAREN, [64494] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4324), 1, aux_sym_class_declaration_token1, [64501] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4846), 1, anon_sym_BSLASH, [64508] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4848), 1, anon_sym_BSLASH, [64515] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4850), 1, anon_sym_COLON_COLON, [64522] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4852), 1, sym_name, [64529] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4854), 1, anon_sym_RPAREN, [64536] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4856), 1, sym_name, [64543] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4503), 1, anon_sym_LPAREN, [64550] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4858), 1, anon_sym_EQ, [64557] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4860), 1, aux_sym_class_declaration_token1, [64564] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4862), 1, anon_sym_BSLASH, [64571] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4383), 1, anon_sym_RPAREN, [64578] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4864), 1, sym_name, [64585] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4866), 1, anon_sym_LPAREN, [64592] = 2, ACTIONS(907), 1, anon_sym_SEMI, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [64599] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4868), 1, anon_sym_LPAREN, [64606] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4870), 1, sym_name, [64613] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4872), 1, sym_name, [64620] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4874), 1, sym_name, [64627] = 2, ACTIONS(901), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [64634] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4876), 1, sym_name, [64641] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4878), 1, anon_sym_SEMI, [64648] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(2483), 1, anon_sym_RPAREN, [64655] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4328), 1, anon_sym_RPAREN, [64662] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4880), 1, anon_sym_EQ_GT, [64669] = 2, ACTIONS(873), 1, anon_sym_RPAREN, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [64676] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4882), 1, anon_sym_COLON_COLON, [64683] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4884), 1, anon_sym_RPAREN, [64690] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4886), 1, sym_name, [64697] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4888), 1, anon_sym_LPAREN, [64704] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4890), 1, sym_name, [64711] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4892), 1, anon_sym_COLON_COLON, [64718] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4894), 1, sym_name, [64725] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4896), 1, anon_sym_COLON_COLON, [64732] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4898), 1, aux_sym_class_declaration_token1, [64739] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4900), 1, anon_sym_BSLASH, [64746] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4902), 1, anon_sym_RPAREN, [64753] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4904), 1, anon_sym_EQ_GT, [64760] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4906), 1, anon_sym_LPAREN, [64767] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4908), 1, aux_sym_namespace_use_declaration_token3, [64774] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4910), 1, anon_sym_BSLASH, [64781] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4912), 1, anon_sym_LPAREN, [64788] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4356), 1, anon_sym_RPAREN, [64795] = 2, ACTIONS(893), 1, anon_sym_SEMI, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [64802] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4914), 1, sym_name, [64809] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4916), 1, sym_name, [64816] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4918), 1, anon_sym_BSLASH, [64823] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4920), 1, anon_sym_SEMI, [64830] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4922), 1, anon_sym_EQ_GT, [64837] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4924), 1, anon_sym_RBRACK, [64844] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4926), 1, sym_name, [64851] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4928), 1, anon_sym_COLON_COLON, [64858] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4366), 1, anon_sym_RPAREN, [64865] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4930), 1, anon_sym_RBRACK, [64872] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4932), 1, anon_sym_RPAREN, [64879] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4934), 1, anon_sym_COLON_COLON, [64886] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4401), 1, anon_sym_RPAREN, [64893] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4936), 1, sym_integer, [64900] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4938), 1, sym_name, [64907] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4940), 1, anon_sym_LPAREN, [64914] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4942), 1, anon_sym_LPAREN, [64921] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4944), 1, sym_name, [64928] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4946), 1, anon_sym_COLON_COLON, [64935] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4948), 1, anon_sym_RBRACK, [64942] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4950), 1, sym_name, [64949] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4417), 1, anon_sym_RPAREN, [64956] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4952), 1, anon_sym_RPAREN, [64963] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4954), 1, anon_sym_LPAREN, [64970] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4956), 1, sym_name, [64977] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4958), 1, anon_sym_SEMI, [64984] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4960), 1, sym_heredoc_end, [64991] = 2, ACTIONS(879), 1, anon_sym_SEMI, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, [64998] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4962), 1, sym_name, [65005] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4437), 1, anon_sym_RPAREN, [65012] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4964), 1, anon_sym_SEMI, [65019] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4966), 1, anon_sym_LPAREN, [65026] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4968), 1, anon_sym_EQ_GT, [65033] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4970), 1, anon_sym_SEMI, [65040] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4972), 1, anon_sym_EQ_GT, [65047] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4974), 1, anon_sym_LPAREN, [65054] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4976), 1, anon_sym_LPAREN, [65061] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4151), 1, anon_sym_LBRACE, [65068] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4449), 1, anon_sym_RPAREN, [65075] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4978), 1, anon_sym_COLON_COLON, [65082] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4980), 1, anon_sym_SEMI, [65089] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4982), 1, anon_sym_COLON_COLON, [65096] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4984), 1, anon_sym_LPAREN, [65103] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4986), 1, anon_sym_LPAREN, [65110] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4988), 1, anon_sym_LPAREN, [65117] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4990), 1, anon_sym_LPAREN, [65124] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4992), 1, anon_sym_EQ_GT, [65131] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4994), 1, anon_sym_LPAREN, [65138] = 2, - ACTIONS(1712), 1, + ACTIONS(1558), 1, sym_comment, ACTIONS(4996), 1, anon_sym_LPAREN, @@ -131691,83 +131690,83 @@ static const TSParseActionEntry ts_parse_actions[] = { [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 103), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 103), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 103), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 103), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 25), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 25), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 26), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 26), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 26), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 26), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 45), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 45), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 143), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 143), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 62), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 62), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 62), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 62), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 61), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 61), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 142), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 142), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 143), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 143), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 9), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 9), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), - [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), - [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 103), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 103), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 103), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 103), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 25), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 25), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 26), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 26), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 26), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 26), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 45), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 45), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 143), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 143), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 62), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 62), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 62), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 62), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 61), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 61), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 142), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 142), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 143), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 143), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 9), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 9), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), + [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 23), [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 23),